What problem does it solve? Debugging complex or intermittent bugs often leads to guesswork, shotgun fixes, and wasted time. This Skill enforces a disciplined, evidence-based debugging process that isolates root causes before any code is changed. ## Core Features & Use Cases - 4-Phase Methodology: Replication and isolation, hypothesis generation, evidence-based probing, and verified resolution with minimal changes. - Advanced Diagnostic Vectors: Identifies race conditions, state leakage, and silent failures caused by swallowed errors or missing awaits. - Git Bisection & Stack Trace Analysis: Uses git bisect for O(log N) commit isolation and teaches proper stack trace reading to find the true failure point. - Use Case: A production endpoint fails intermittently. Use this Skill to reproduce the failure deterministically, form a hypothesis from logs, probe with targeted logging, and apply a single verified fix. ## Quick Start Debug the intermittent login failure in my app using the systematic debugging methodology, starting with reproducing the bug and tracing the root cause.