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 criteria. - Tight Feedback Loops: Build fast, deterministic, red-capable reproduction commands (failing tests, curl scripts, headless browser checks, bisection harnesses) before forming theories. - 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 tweaking code blindly, you build a reproducible failing test, trace data flow across the service and database layers, form ranked hypotheses, and fix the actual root cause with a regression test. ## Quick Start Ask the AI to debug a failing test or bug using the systematic-debugging process, providing the full error message and the command that reproduces it.