What problem does it solve? Random fixes and quick patches waste time, mask underlying issues, and introduce new bugs. This Skill enforces a disciplined root-cause-first debugging process so fixes address the actual problem instead of symptoms. ## Core Features & Use Cases - Four-Phase Process: Root cause investigation, pattern analysis, hypothesis testing, and implementation, each with explicit completion criteria before proceeding. - Tight Feedback Loops: Guidance for building fast, deterministic reproduction commands (failing tests, curl scripts, CLI invocations, bisection harnesses) that go red on the exact symptom. - Rule of Three & Architecture Check: After three failed fixes, the process stops and questions the underlying architecture rather than attempting a fourth patch. - Use Case: A test suite fails intermittently in CI. Instead of guessing, you build a high-repetition repro loop, trace the data flow across components, form ranked hypotheses, and land a single verified fix with a regression test. ## Quick Start Use the systematic-debugging skill to investigate why the login integration test fails before proposing any fix.