What problem does it solve? When tests fail, builds break, or runtime behavior diverges from expectations, developers often guess at fixes or patch symptoms instead of causes. This Skill enforces a disciplined stop-the-line workflow that preserves evidence, localizes the failure, and fixes the actual root cause. ## Core Features & Use Cases - Stop-the-Line Rule: Halts feature work when something breaks, preserving error output, logs, and reproduction steps before any changes continue. - Structured Triage Checklist: Walks through reproduce, localize, reduce, and fix steps in order so no diagnostic stage is skipped. - Subagent Delegation: Offloads log reading, diagnostic shell commands, and repro script writing to subagents to avoid context window bloat. - Use Case: A test suite fails after a refactor. Instead of tweaking assertions, you follow the checklist to reproduce the failure, isolate it to a faulty SQL JOIN, and fix the query rather than filtering duplicates in UI code. ## Quick Start Ask the agent to debug the failing test or broken build using the systematic triage checklist and find the root cause.