debugging-patterns
Installation
SKILL.md
Debugging Patterns Skill
Systematic problem-solving and error analysis.
The Debugging Mindset
- Reproduce — Can you make it happen consistently?
- Isolate — What's the smallest case that fails?
- Hypothesize — What could cause this?
- Test — Prove or disprove your hypothesis
- Fix — Change ONE thing
- Verify — Did it actually fix it?
Binary Search Debugging
When you don't know where the problem is: