Fix Bug
Quick bug fix workflow. Delegates to Coder agent for implementation.
Workflow
- Identify: Locate the bug (error message, stack trace, reproduction steps)
- Analyze: Read relevant files, understand root cause
- Fix: Apply minimal, targeted fix
- Verify: Run tests to confirm fix doesn't break anything
Usage
/fix <description of bug or error>
/fix TypeError in login handler
/fix issue #42
Agent Routing
- Primary: Coder (implementation)
- Support: Tester Expert (verification)
- Fallback: Analyzer (if root cause unclear)
Rules
- Minimal change principle: fix ONLY the bug, don't refactor surrounding code
- Always verify with tests after fix
- If fix requires > 3 files changed, escalate to /plan first