What problem does it solve? Random fixes and guess-and-check patches waste time, mask underlying issues, and introduce new bugs. This Skill enforces a disciplined process that finds the root cause before any fix is attempted. ## Core Features & Use Cases - Four-Phase Process: Root cause investigation, pattern analysis, hypothesis testing, and implementation, each with explicit completion criteria. - Evidence Gathering: Read error messages, reproduce failures, check recent git changes, and trace data flow across component boundaries. - Rule of Three: After three failed fixes, stop and question the architecture instead of attempting a fourth patch. - Use Case: A failing pytest suite in production gets reproduced locally, traced through the call stack to the source of a bad value, fixed with a single regression-tested change, and verified against the full test suite. ## Quick Start Use the systematic-debugging skill to investigate why my test suite fails and find the root cause before proposing any fix.