debug

Installation
SKILL.md

Debug

When something breaks, stop building. Preserve evidence, diagnose the root cause, fix it, guard against recurrence. Guessing wastes time.

Workflow

1. Stop the line

Stop adding features or making changes. Errors compound — a bug in step 3 makes steps 4-10 wrong.

2. Reproduce

Make the failure happen reliably. Run the specific failing test in isolation. If you can't reproduce it, you can't fix it with confidence.

3. Localize

Narrow down where the failure occurs:

  • Which layer is failing?
  • Which change introduced it? (use git bisect for regressions)
Related skills
Installs
8
Repository
cniska/skills
GitHub Stars
3
First Seen
Apr 9, 2026