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 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. - Structured hypothesis testing: Generates 3-5 ranked falsifiable hypotheses, then instruments with tagged debug logs or debugger probes, changing one variable at a time. - Regression locking and cleanup: Converts the minimized repro into a regression test at a correct seam, removes all tagged instrumentation, and documents the confirmed root cause. - Use Case: A user reports an export endpoint intermittently returning corrupt data. The Skill builds a curl-based loop that reproduces the failure, minimizes the input, tests ranked hypotheses, and lands a fix with a regression test. ## Quick Start Ask the assistant to diagnose the bug where the export endpoint intermittently returns corrupt data and have it build a reproduction loop first.