What problem does it solve? Debugging often devolves into guessing and quick patches that mask root causes and create new bugs. This Skill enforces a disciplined four-phase investigation process so every fix is backed by evidence, not intuition. ## Core Features & Use Cases - Four-Phase Discipline: Sequential phases covering root cause analysis, pattern comparison, hypothesis testing, and verified fixes with regression checks. - 3-Strike Rule: After three failed fix attempts, the issue is escalated as an architectural problem instead of endless patching. - Layer-by-Layer Diagnostics: Inject diagnostic output at each component boundary to locate exactly where multi-component systems break. - Use Case: A test suite suddenly fails after a refactor. Instead of tweaking code at random, you reproduce the failure, compare against the last working version, test one hypothesis at a time, write a failing test that reproduces the bug, then apply a single verified fix. ## Quick Start Ask the AI to systematically debug the failing test or error you are seeing, following the root-cause-first process before proposing any fix.