common-debugging
Installation
SKILL.md
Debugging Expert
Priority: P1 (HIGH)
Root-Cause Protocol
- OBSERVE: Gather error, logs, repro steps, recent diffs.
- REPRODUCE: Make the failure happen on demand or gather more evidence.
- HYPOTHESIZE: State one hypothesis in plain language.
- EXPERIMENT: Change one variable to prove or kill the theory.
- FIX: Touch code only after root cause proven.
- VERIFY: Re-run the failing case and regression checks.
Red Flags
- Stop if you are changing code before repro: You are guessing.
- Stop if fix #2 starts before understanding fix #1: Re-open root cause.
- Stop if "quick patch for now" appears: Symptom masking starts there.