From sw
Implements 4-phase systematic debugging protocol: root cause investigation via git/bash, pattern analysis, hypothesis testing before fixes. For failing tests, bugs, errors.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sw:debug <bug-description><bug-description>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Skill Memories**: If `.specweave/skill-memories/debug.md` exists, read and apply its learnings.
Skill Memories: If .specweave/skill-memories/debug.md exists, read and apply its learnings.
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST.
Random fixes waste time and mask underlying issues. If you haven't traced the bug to its origin, you don't understand it well enough to fix it.
Goal: Understand what's actually happening before proposing any fix.
Read error messages completely — including stack traces, line numbers, and surrounding context. Don't skim. The answer is often in the error message itself.
Reproduce consistently — if you can't reproduce it, you can't verify a fix. Document the exact reproduction steps.
Check recent changes — what changed since it last worked?
git log --oneline -15
git diff HEAD~5..HEAD -- <affected-files>
Trace the data flow — start from the error and work backward. At each component boundary, log what enters and what exits:
Identify affected code paths — map which files, functions, and modules are involved. Read them fully — don't skim.
Phase 1 output: A clear statement of what is happening vs. what should happen, with evidence.
Goal: Find working analogues to understand how the system is supposed to behave.
Find similar working code — search for functions, patterns, or flows that do something analogous and work correctly.
Compare implementations completely — don't just spot-check. Enumerate ALL differences between working and broken:
Check for recurring patterns — has this type of bug happened before? Search git history:
git log --all --oneline --grep="<error-keyword>"
Understand dependencies — map what the broken code depends on. Has any dependency changed version, API, or behavior?
Phase 2 output: Ranked list of hypotheses, most likely first, with evidence for each.
Goal: Systematically verify or eliminate each hypothesis. Scientific method — one variable at a time.
State your hypothesis explicitly: "I think X is happening because Y."
Design a minimal test for each hypothesis — change exactly ONE thing and observe the result.
Execute and record:
Never make compound changes — if you change two things and it works, you don't know which one fixed it. If you change two things and it doesn't work, you don't know if one of them was right.
Maximum 3 hypotheses before escalation — if your third hypothesis fails, STOP. You are likely missing something fundamental. Proceed to the Escalation Protocol.
Phase 3 output: Confirmed root cause with evidence, or escalation trigger.
Goal: Fix the confirmed root cause with a regression test.
Write a failing test first that reproduces the exact bug. The test must:
Implement a single, targeted fix — address only the confirmed root cause. Do not "fix other things while you're in there."
Verify the fix:
# Run the regression test
npx vitest run <test-file> -- --reporter=verbose
# Run the full suite to check for side effects
npx vitest run
Verify no other tests broke — a fix that breaks something else isn't a fix.
Phase 4 output: Passing regression test + clean full suite.
Trigger: 3 consecutive failed fix attempts OR 3 eliminated hypotheses without a confirmed root cause.
When triggered:
STOP immediately. Do not try a 4th fix.
Present findings to the user:
ESCALATION: Root cause not confirmed after 3 attempts.
What I investigated:
- Hypothesis 1: [X] — Result: [eliminated because Y]
- Hypothesis 2: [X] — Result: [eliminated because Y]
- Hypothesis 3: [X] — Result: [eliminated because Y]
What I know:
- [fact 1]
- [fact 2]
What I suspect but cannot confirm:
- [suspicion]
Recommended next step:
- [suggestion — e.g., "review the architecture of module X",
"add instrumentation at boundary Y", "pair on this"]
Question architectural assumptions — if each fix reveals new problems in different places, the issue may be architectural, not a fixable bug. Say so explicitly.
These phrases in your own thinking should trigger an immediate pause and return to Phase 1:
| Red Flag | What It Means |
|---|---|
| "Quick fix for now" | You don't understand the root cause |
| "Skip the test" | You're not confident the fix works |
| "One more attempt" | You're past the escalation threshold |
| "It works on my machine" | You haven't reproduced it properly |
| "Probably not related" | You're dismissing evidence |
| "Let's ignore that for now" | You're avoiding complexity |
| "I'll investigate later" | You're deferring instead of understanding |
| "This shouldn't be possible" | Your mental model is wrong |
| Excuse | Rebuttal | Why It Matters |
|---|---|---|
| "The fix is obvious, skip investigation" | Obvious fixes have a 40% first-time success rate. Investigation has 95%. | Skipping Phase 1 means you're guessing, not debugging |
| "I don't have time to investigate properly" | Systematic debugging takes 15-30 min. Guess-and-check takes 2-3 hours. | Investigation is faster than thrashing |
| "It's just a typo/config issue" | Then investigation will confirm that in 2 minutes. Skip nothing. | Simple bugs deserve the same rigor |
| "I'll add more logging and try again" | Logging without a hypothesis is fishing. Form a hypothesis first. | Undirected logging creates noise, not signal |
| "Let me just try reverting this commit" | Revert is a valid hypothesis test — but state it as one and record the result. | Blind reverts teach nothing if they don't work |
| "The test is wrong, not the code" | Prove it. Read the spec. Check the AC. If the test matches the spec, the code is wrong. | Blaming tests is the #1 escape hatch for broken code |
| "This code is too complex to trace" | Break it into components. Trace one boundary at a time. | Complexity is not an excuse — it's a reason to be MORE systematic |
| "Multiple things changed, hard to isolate" | Use git bisect. Or revert to last known good and apply changes one at a time. | Compound changes are the enemy of diagnosis |
| "I've seen this before, I know what to do" | Then Phase 1 will take 30 seconds. Don't skip it. | Past experience biases toward familiar fixes, not correct ones |
Phase 1: Root Cause Investigation
→ What is actually happening? (evidence, not assumptions)
Phase 2: Pattern Analysis
→ What should be happening? (working analogues, comparisons)
Phase 3: Hypothesis Testing
→ Why is it happening? (one variable at a time, max 3 attempts)
Phase 4: Implementation
→ Fix it with proof. (regression test + targeted fix)
Escalation: 3 strikes → STOP → present findings → question architecture
Debug target: $ARGUMENTS
npx claudepluginhub anton-abyzov/specweave --plugin swEnforces systematic root cause investigation for bugs, test failures, and unexpected behavior through four phases: investigation, pattern analysis, hypothesis testing, and implementation.
Enforces hypothesis-driven root cause analysis before any fix. Activates on errors, test failures, and unexpected behavior to ensure no fix without evidence.
Enforces root-cause investigation before any fix using a four-phase methodology: investigate, analyze patterns, hypothesize, implement. Use for bugs, test failures, unexpected behavior, or performance regressions.