What problem does it solve? Hard bugs and performance regressions stall when developers stare at code without a reliable reproduction signal. This Skill enforces a disciplined six-phase loop — build a feedback loop, reproduce, hypothesise, instrument, fix, and clean up — so root causes are found systematically instead of by guesswork. ## Core Features & Use Cases - Feedback-loop construction: Ten ranked strategies for building a deterministic pass/fail signal, from failing tests and curl scripts to replayed traces, fuzz loops, and git bisect harnesses. - Ranked hypothesis testing: Generates 3-5 falsifiable hypotheses with explicit predictions before any probing, and tags all debug logs with unique prefixes for one-grep cleanup. - Regression testing and post-mortem: Writes the regression test before the fix at a correct seam, verifies the original repro no longer fails, and documents the confirmed root cause. - Use Case: A user reports intermittent 500 errors after a deploy. The Skill guides building a replay harness from a captured request, reproducing the failure at a high rate, bisecting hypotheses, and landing a fix with a regression test. ## Quick Start Ask the agent to diagnose the bug you are seeing and describe the exact symptom, error message, or performance regression you observed.