What problem does it solve? Random fixes and guess-and-check patching waste hours, mask underlying issues, and introduce new bugs. This Skill enforces a disciplined four-phase debugging 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: Concrete commands for reading errors, reproducing failures, checking git history, and tracing data flow across components. - Rule of Three: After three failed fixes, the process stops and questions the architecture instead of attempting a fourth patch. - Use Case: A production API test fails intermittently. Follow Phase 1 to reproduce it and trace the bad value upstream, form a single hypothesis, write a regression test, then fix the root cause and verify the full suite passes. ## Quick Start Debug this failing test using the systematic-debugging process: investigate the root cause first, then propose a fix with a regression test.