What problem does it solve? Hard bugs and 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, headless browsers, 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 and cleanup: Converts the minimized repro into a regression test at a correct seam, removes all tagged instrumentation, and records the confirmed root cause. - Use Case: A user reports an intermittent export failure. The Skill builds a loop that reproduces it at a high rate, minimizes the scenario, tests ranked hypotheses, applies the fix, and locks it down with a regression test. ## Quick Start Diagnose this bug: the export button throws an error intermittently, so build a reproduction loop and find the root cause.