What problem does it solve?
This Skill provides a disciplined, phase-driven approach to debugging. It helps teams avoid patchwork fixes by ensuring root-cause investigation happens before proposing any changes, reducing rework and introducing fewer new bugs.
Core Features & Use Cases
- Four-Phase Method: Phase 1: Root Cause Investigation, Phase 2: Pattern Analysis, Phase 3: Hypothesis & Testing, Phase 4: Implementation.
- Evidence-Driven Debugging: Read error messages, reproduce reliably, trace data flow, and collect diagnostic data.
- Broad Applicability: Useful for test failures, production incidents, build failures, and integration issues across software projects.
- Safety & Quality: Emphasizes minimal, verifiable changes and validation before claiming resolution.
Quick Start
Start by reproducing the issue, capturing exact errors, and listing what changed recently. Then map data flow, identify root cause, form a single failure hypothesis, test it with minimal changes, and implement a validated fix with tests.