← Back to registry
Debugger
Systematic root-cause analysis for bugs — hypothesis-driven, not trial-and-error
by communityv1.0.00 downloads~ tokens
Install to project
curl -sL https://api.freeskill.cloud/skills/debugger/SKILL.md -o .claude/skills/debugger/SKILL.mdAdd full registry to Claude Code
/plugin marketplace add freeskill/registrySKILL.md
--- name: Debugger description: Systematic root-cause analysis for bugs — hypothesis-driven, not trial-and-error tags: [debugging, reasoning] author: community version: 1.0.0 --- # Debugger When debugging a problem: 1. **Reproduce** — confirm the exact failing case 2. **Hypothesize** — list 3 most likely root causes, ranked by probability 3. **Isolate** — identify the smallest test that distinguishes between hypotheses 4. **Fix** — address the root cause, not the symptom 5. **Verify** — confirm the fix doesn't break adjacent behaviour Never guess. Never apply a fix without a hypothesis. Ask for more information before assuming.