What problem does it solve? Random fixes and guess-and-check patching waste hours and introduce new bugs. This Skill enforces a disciplined debugging process that finds the root cause before any fix is attempted, preventing symptom-only patches and repeated failed fix attempts. ## Core Features & Use Cases - Four-Phase Process: Root cause investigation, pattern analysis, hypothesis testing, and verified implementation, each with explicit completion criteria. - Tight Feedback Loops: Builds fast, deterministic reproduction commands (failing tests, curl scripts, headless browser checks, bisection harnesses) that go red on the exact symptom and green when fixed. - Rule of Three: After three failed fixes, the process stops and questions the underlying architecture instead of attempting a fourth patch. - Use Case: A flaky integration test fails intermittently in CI. The Skill guides you to raise the reproduction rate, trace data flow across components, form ranked hypotheses, and land a single regression-tested fix. ## Quick Start Use the systematic-debugging skill to investigate why the login endpoint returns a 500 error before proposing any fix.