What problem does it solve? Debugging often devolves into guesswork and symptom-patching that masks underlying problems and creates new bugs. This Skill enforces a disciplined four-phase methodology that requires identifying the root cause before any fix is applied. ## Core Features & Use Cases - Four-Phase Framework: Root cause investigation, pattern analysis, hypothesis testing, and verified implementation. - Root Cause Tracing: Trace bad values backward through the call chain to find the original trigger instead of patching where errors appear. - Failure Guardrails: Red-flag detection for process violations and a hard stop after three consecutive failed fixes to surface architectural problems. - Use Case: When a test suite fails after a refactor, follow the methodology to read the full stack trace, reproduce the failure, form one hypothesis, create a failing test that captures the bug, and verify the fix against the full suite. ## Quick Start Use the systematic-debugging skill to investigate why my login test fails intermittently and find the root cause before fixing it.