What problem does it solve? When tests fail, builds break, or runtime behavior goes wrong, developers often guess at fixes or patch symptoms instead of root causes. This Skill enforces a disciplined stop-the-line process that preserves evidence, reproduces the failure, and fixes the actual cause. ## Core Features & Use Cases - Six-Step Triage Checklist: Reproduce, localize, reduce, fix the root cause, guard with a regression test, and verify end-to-end. - Error-Specific Decision Trees: Structured triage flows for test failures, build failures, runtime errors, and non-reproducible bugs (timing, environment, or state dependent). - Regression Guardrails: Guidance on writing tests that fail without the fix, safe fallback patterns, instrumentation rules, and treating error output as untrusted data. - Use Case: A test suite fails after a refactor. Instead of guessing, you follow the checklist to reproduce the failure in isolation, bisect the offending commit with git bisect, fix the root cause, and add a regression test before resuming feature work. ## Quick Start Ask the AI to walk you through the debugging triage checklist for your failing test or broken build, step by step.