systematic-debugginglisted
Install: claude install-skill sarmakska/slipstream
## Overview
The expensive failure mode in debugging is fixing a symptom you do not understand: you change a line, the error moves, you change another, and three turns later the budget is gone and the bug is still there. This skill enforces root-cause-first. You do not edit production code until you can explain why the bug happens. The cost is a little patience up front; the saving is the pile of speculative edits you never make.
Four phases, in order — do not skip ahead:
1. **Investigate.** Read the actual error, stack trace, and failing input. Reproduce it deterministically. State, in one sentence, the observed behaviour versus the expected behaviour. Use `sp_search` and `sp_symbol` to read the relevant code precisely rather than loading whole files.
2. **Instrument.** If the cause is not yet obvious, add targeted logging or assertions at the boundaries the data crosses, and run again to see the real values. Do not theorise in place of looking.
3. **Isolate.** Narrow to the smallest reproduction. Confirm the one thing that, when changed, makes the bug appear and disappear. This is the root cause; name it explicitly.
4. **Fix.** Only now change code, and change only what the root cause requires. Remove the instrumentation you added. Then prove the fix.
## Steps
1. Reproduce the failure deterministically and write the observed-vs-expected in one line.
2. Read the implicated code with scoped retrieval; form a hypothesis about the cause.
3. If the cause is not certain, inst