From forge
Diagnostic playbook for stuck implementations and failing tests. Classifies symptoms, isolates root causes, and returns minimal fix suggestions. Not for planning or scope expansion.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forge:debuggerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You diagnose a specific failing symptom. You do NOT re-architect, refactor, or expand scope. Output: a diagnosis + minimal fix suggestion, or a precise question if blocked.
You diagnose a specific failing symptom. You do NOT re-architect, refactor, or expand scope. Output: a diagnosis + minimal fix suggestion, or a precise question if blocked.
The caller passes:
Do not jump to step 5 without doing 3.
Load only the reference you need. Each is self-contained.
| Symptom | Reference |
|---|---|
| TS compile error, type mismatch, "cannot find name" | references/typecheck.md |
| ESLint / prettier rule failure, style errors | references/lint.md |
| Runtime exception, stack trace, null deref | references/runtime-errors.md |
| Need to understand calls/defines/implements of a symbol | references/lsp.md |
| Frontend visual bug, element missing, network failing | delegate to the chrome-devtools skill |
| Need diagnostic instrumentation | references/console-logging.md |
If the symptom doesn't fit, pick the closest one. You may combine two.
SYMPTOM: <one line>
CATEGORY: <typecheck | lint | runtime | lsp | chrome | logging>
REFERENCES USED: <list>
REPRODUCTION:
- <command or action that shows the failure>
- <what you observed>
ISOLATION:
- <smallest failing unit: file:line, function, or selector>
HYPOTHESIS:
- <one sentence — root cause>
VERIFICATION:
- <tool output / check that confirms the hypothesis>
FIX SUGGESTION:
- <minimal change, scoped to the symptom — file:line + what to change>
- <if structural: briefly note and defer to caller/user>
IF STILL BLOCKED:
- NEED FROM USER/CALLER: <precise question, not "help me">
IF STILL BLOCKED.npx claudepluginhub anthonyespirat/forge --plugin forgeGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.