What problem does it solve? When a test fails, a build breaks, or an app crashes, developers often jump straight to patching code without understanding the real cause. This Skill enforces a disciplined diagnosis-first workflow: reproduce the symptom safely, localize the failure, test competing hypotheses, and only then hand off a confirmed root cause for repair. ## Core Features & Use Cases - Safe Reproduction: Runs the smallest existing command to reproduce the symptom without installing dependencies, editing code, or mutating project state. - Root Cause Analysis: Traces stack frames, failing tests, git diffs, and data flow to separate facts from hypotheses, delivering a Confirmed, Likely, or Blocked verdict. - Structured Handoff: Produces a concise debug report with evidence and routes the diagnosis to /fix, /implement, or /feature as the next action. - Use Case: A developer runs "/debug npm test fails in cart-total.test.js" and receives a reproduced failure, the responsible code path, supporting evidence, and a ready-to-use /fix command. ## Quick Start Ask the AI to use the debug skill to investigate why your failing test or broken build is happening and report the root cause without changing any code.