What problem does it solve? Random fixes and guess-and-check patching waste time, 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 checklists. - Tight Feedback Loops: Build 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, stop and question the architecture instead of attempting a fourth patch. - Use Case: A production API returns intermittent 500 errors. Instead of guessing, you build a high-repetition repro loop, trace data flow across the service and database layers, form ranked hypotheses, and land a single verified fix with a regression test. ## Quick Start Debug this failing test using the systematic-debugging process: find the root cause before proposing any fix.