What problem does it solve? Bug fixes often patch symptoms instead of root causes and lack regression coverage, leading to recurring issues. This Skill enforces a disciplined workflow: reproduce the bug with a failing test first, trace the root cause through callers, then apply the smallest possible fix. ## Core Features & Use Cases - Reproduction-First Workflow: Writes a failing reproduction test before any code change, confirming the bug exists and verifying the fix afterward. - Root-Cause Analysis: Requires evidence of the symptom location, owning function, and caller list before deciding where to patch, preventing symptom-only fixes. - Scoped Fixing: Supports narrowing the fix scope to a specific file with the --file flag and skipping confirmation steps with --auto. - Use Case: A regression appears in your authentication module. Run the fix command with a bug description, and the Skill writes a failing test, traces the root cause through callers, applies a minimal patch, and runs the full test suite to confirm. ## Quick Start Ask the agent to run /auto fix with a description of the bug, optionally adding --file to scope the fix or --auto to skip confirmations.