From unstuck
Use when entering Strike 2 of the unstuck protocol — initial diagnosis failed and you need a fundamentally different approach
npx claudepluginhub jugrajsingh/skillgarden --plugin unstuckThis skill is limited to using the following tools:
Strike 2 of the unstuck protocol. The diagnosis fix didn't work — try a fundamentally different approach.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Strike 2 of the unstuck protocol. The diagnosis fix didn't work — try a fundamentally different approach.
NEVER repeat what Strike 1 already tried. The diagnosis failed — doing it again won't help.
If a knowledge pack was loaded:
Search the codebase for similar code that works:
# Find similar patterns in the codebase
grep -rn "{RELEVANT_PATTERN}" --include="*.{EXT}" | head -20
List every difference between the working code and the broken code:
| Aspect | Working | Broken |
|--------|---------|--------|
| ... | ... | ... |
Focus on: imports, configuration, argument order, types, async/sync mismatch, middleware/decorator order.
Question what Strike 1 took for granted:
Pick ONE alternative approach:
| If Strike 1 tried... | Pivot to... |
|---|---|
| Fixing the current code | Using a different library/API |
| Debugging data flow | Rewriting the function from scratch |
| Config changes | Hardcoding values to isolate the issue |
| Async approach | Sync equivalent (or vice versa) |
| Complex solution | Simplest possible implementation |
Implement the alternative. Test with the same verification as Strike 1.
Report to the orchestrator:
Pivot:
Approach: {WHAT_WAS_TRIED}
Differs from Strike 1: {HOW}
Result: { resolved | not resolved }
Evidence: {WHAT_WAS_LEARNED}
If resolved, include the alternative that worked and why. If not resolved, include what was ruled out — this narrows the search for Strike 3.