code:debug
Installation
SKILL.md
Code Debug
Systematic debugging workflow to find and fix bugs efficiently. Never guess — always narrow down the problem through systematic elimination.
The Debugging Mindset
| Bad | Good |
|---|---|
| "I think it's..." | "Let me verify..." |
| Changing random things | Binary search narrowing |
| Hoping it'll work | Verifying each hypothesis |
| Moving on after it works | Adding regression test |
The Five-Step Workflow
Step 1: Reproduce
Create the smallest possible reproduction case.