What problem does it solve? Hard bugs and flaky performance regressions resist casual code reading; without a reproducible signal, debugging devolves into guessing. This Skill enforces a disciplined six-phase diagnosis loop that builds a tight pass/fail reproduction before any hypothesis is tested. ## Core Features & Use Cases - Feedback Loop Construction: Builds a red-capable, deterministic, fast reproduction command using failing tests, curl scripts, CLI fixtures, headless browser scripts, trace replay, fuzz loops, or bisection harnesses. - Ranked Hypothesis Testing: Generates 3-5 falsifiable hypotheses, then instruments with tagged debug logs or debugger breakpoints, changing one variable at a time. - Regression Test & Cleanup Discipline: Writes the regression test before the fix at a correct seam, then removes all tagged instrumentation and throwaway prototypes. - Use Case: A user reports an intermittent export failure in production. The Skill drives creation of a replay harness from a captured request, minimises the repro, tests ranked hypotheses, and lands a fix with a regression test. ## Quick Start Diagnose this bug: the export endpoint intermittently returns a 500 error under load, build a reproduction loop and find the root cause.