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 feedback loop first, then reproduces, minimizes, hypothesizes, instruments, fixes, and cleans up. ## Core Features & Use Cases - Feedback Loop Construction: Builds a red-capable, deterministic, fast command (failing test, curl script, headless browser, replayed trace, fuzz loop, or bisection harness) that catches the exact reported symptom. - Structured Hypothesis Testing: Generates 3-5 ranked, falsifiable hypotheses and maps each instrumentation probe to a specific prediction, changing one variable at a time. - Regression Lockdown: Converts the minimized repro into a regression test at a correct seam, verifies the fix, and removes all tagged debug instrumentation. - Use Case: A user reports the export endpoint intermittently returns empty files. The Skill builds a curl-based loop that reproduces the failure at a high rate, minimizes the input, tests ranked hypotheses with tagged logs, and lands a fix with a regression test. ## Quick Start Diagnose this bug: the checkout page throws a 500 error when the cart contains more than three items.