From workflow-skills
Systematic debugging loop for hard bugs, unexpected failures, and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression test. Use when the user says "debug this", "diagnose", reports a bug, describes something broken or throwing, or pastes a stack trace. Do NOT skip straight to a fix — always reproduce first.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow-skills:diagnoseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run each phase in order. Do not skip ahead.
Run each phase in order. Do not skip ahead.
/plan to break it into safe steps first.| Trap | Correct action |
|---|---|
| "I think I know what it is" | Still reproduce and hypothesise |
| Fix doesn't hold in CI | The reproduction was not complete — go back to Step 1 |
| Can't reproduce locally | Document the exact environment difference; don't fix blind |
| Multiple failures at once | Fix the deepest root cause first, then re-run |
/tdd — if the fix requires new behaviour, drive it with tests/verify — final check after fix is in placenpx claudepluginhub rene404/workflow-skills --plugin workflow-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.