Help us improve
Share bugs, ideas, or general feedback.
From skills
Applies systematic root-cause analysis to debug errors, test failures, and unexpected behavior across frontend, backend, database, network, and performance.
npx claudepluginhub kriscard/skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/skills:debugThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematic root-cause analysis — reproduce, isolate, hypothesize, fix, verify.
Debugs errors, test failures, and unexpected behavior via root cause analysis of logs, stack traces, recent changes, hypotheses testing, and strategic logging. Delivers fixes, verification steps, and prevention advice.
Enforces systematic root cause analysis before fixes for bugs, test failures, unexpected behavior, performance issues, and build failures.
Enforces systematic root cause investigation for bugs, test failures, and unexpected behavior through four phases: investigation, pattern analysis, hypothesis testing, and implementation.
Share bugs, ideas, or general feedback.
Systematic root-cause analysis — reproduce, isolate, hypothesize, fix, verify.
git bisect, comment blocks, or minimal repro.Start here before touching code:
git log --oneline -10 / git diff HEAD~1Reproduction:
# Find the commit that introduced it
git bisect start
git bisect bad HEAD
git bisect good <last-known-good-sha>
Strategic logging:
// Entry/exit with parameters — temporary, remove after fix
console.log('[debug] functionName called', { param1, param2 });
// ...
console.log('[debug] functionName result', { result });
## Root Cause
[What actually caused the issue]
## Evidence
- [Log excerpt / stack trace / variable state]
## Fix
`file:line`
```diff
- broken code
+ fixed code
Why this fixes it: [reasoning]