What problem does it solve? Debugging by guessing creates whack-a-mole fixes that never address the real problem. This Skill enforces a disciplined root cause investigation workflow so every fix is verified against evidence, not intuition. ## Core Features & Use Cases - Four-phase debugging workflow: Investigate symptoms, analyze patterns, test hypotheses, then implement a minimal verified fix. - Scope locking: Restricts edits to the affected directory during a debug session to prevent unrelated changes and scope creep. - Regression testing: Requires a test that fails without the fix and passes with it, plus a full test suite run before completion. - Use Case: A user reports "checkout fails intermittently in production." The Skill traces the code path, checks recent git history, matches the symptom against known patterns like race conditions, confirms the hypothesis with a temporary log, then ships a minimal fix with a regression test and a structured debug report. ## Quick Start Ask the AI to investigate why your application throws an error and find the root cause before fixing it.