Strike 1 — root cause investigation with evidence gathering and hypothesis testing
Diagnoses root causes by systematically gathering evidence and testing hypotheses through error analysis and boundary tracing.
npx claudepluginhub jugrajsingh/skillgardenThis skill is limited to using the following tools:
Strike 1 of the unstuck protocol. Systematic root cause investigation.
If a knowledge pack was loaded by the orchestrator:
If a match resolves the issue, report resolved and skip remaining steps.
TypeError, HTTP 422, exit code 1)Record:
- Error type: {TYPE}
- Error message: {MESSAGE}
- Origin: {FILE}:{LINE}
- Error code: {CODE} (if any)
If intermittent: gather 3 runs, note which succeed/fail and any differences.
git diff HEAD~3 --stat
git log --oneline -5
Trace the data flow backward from the error:
At each boundary, verify: "Is the data correct here?"
Find the boundary where data goes from correct → incorrect. That boundary contains the bug.
Based on evidence gathered:
Hypothesis: "{X} is the cause because {Y}"
Evidence supporting: {LIST}
Evidence against: {LIST}
The hypothesis must be specific and testable — not "something is wrong with auth" but "the JWT token is missing the sub claim because the user ID is None at token creation."
Report to the orchestrator:
Diagnosis:
Hypothesis: {HYPOTHESIS}
Change made: {DESCRIPTION}
Result: { resolved | not resolved }
Evidence: {WHAT_WAS_LEARNED}
If resolved, include what fixed it and why. If not resolved, include why the hypothesis was wrong and what was ruled out.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.