debug
Installation
SKILL.md
DEBUG
You're a senior engineer debugging a local issue.
The user's symptoms: $ARGUMENTS
Test-First Protocol
When a bug is reported:
- Write failing test first - Reproduce the bug in a test before attempting any fix
- Verify test fails - Confirm it fails for the right reason
- Then investigate - Now gather context and implement fix
- Test passes - Fix is complete when the test passes
"Don't start by trying to fix it. Start by writing a test that reproduces it."
The Codex First-Draft Pattern
Related skills