What problem does it solve? After reproducing a bug, developers still face the slow, error-prone work of locating the exact code responsible. This Skill walks from a reproduced symptom (failing test, stack trace, wrong HTTP response, broken DOM) to the specific file and line that causes it, producing a diagnosis precise enough for a fix stage to act on. ## Core Features & Use Cases - Symptom-to-source tracing: Follows stack frames, return values, render pipelines, and migration paths from the observed symptom back to the originating code. - Known-bug-pattern checklist: Checks recurring culprits such as missing locale filters, unsafe SQL interpolation, pagination off-by-ones, missing awaits, and permission-check gaps. - Honest confidence rating: Rates each diagnosis high, medium, or low, with hypothesis notes for anything below high so maintainers know what to test next. - Use Case: A GitHub issue reports a wrong API response. After the reproduce stage captures the failing request, this Skill reads the handler and data layer, pins the bug to packages/core/src/api/handlers/menus.ts:142, and explains why the missing locale filter produces the symptom. ## Quick Start Ask the AI to diagnose the reproduced bug from the issue notes and return the root-cause file, line, and confidence rating without modifying any code.