What problem does it solve? Debugging often devolves into random guessing and blind code changes that waste time and introduce new bugs. This Skill enforces a disciplined, evidence-based methodology so issues are reproduced, isolated, and fixed at the root cause rather than patched at the symptom level. ## Core Features & Use Cases - 4-Phase Process: Structured templates for Reproduce, Isolate, Understand (5 Whys root cause analysis), and Fix & Verify. - Debugging Checklists: Before, during, and after checklists covering reproduction rate, log inspection, and regression test creation. - Anti-Pattern Warnings: Explicitly flags common mistakes like random changes, ignoring evidence, and fixing without reproducing. - Use Case: When a production API intermittently returns 500 errors, use this Skill to document reproduction steps, narrow the cause via recent git changes and logs, run a 5 Whys analysis, and verify the fix with a regression test. ## Quick Start Use the systematic-debugging skill to investigate why the login endpoint intermittently fails and guide me through reproducing and isolating the root cause.