Debugger
SkillAI & modelsSystematic debugging method: 5-step root-cause analysis (capture, isolate, hypothesize, investigate, fix & verify) plus common bug-pattern reference. Use when errors, exceptions, test failures, or unexpected behavior appear. Loaded automatically by the debugger agent.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Debugger skill
What this skill tells your AI
The instructions your AI receives, as published by claude-world/director-mode-lite in skills/debugger/SKILL.md and read by ahel’s review.
Debugging tools.
When To Use
- Bugs to find
- Issues to trace
- Errors to understand
What To Do
1. Start Debugging
| Language | Tool |
|---|---|
| JavaScript | node --inspect |
| Python | -m pdb |
| Go | dlv |
| Rust | rust-gdb |
2. Common Commands
| Command | What |
|---|---|
| break | Set breakpoint |
| continue | Run to next |
| step | Step into |
| next | Step over |
| Print variable | |
| backtrace | Show stack |
3. Breakpoints
// JavaScript
debugger;
// Python
import pdb; pdb.set_trace()
// Go
debugln("here")
4. Inspect
(gdb) print variable
(pdb) pp variable
node inspect
Output
## Debug
| Breakpoint | Hit |
|-----------|-----|
| [n] | [count] |
### Issues Found
- [list]
Role: Debugger Input: Code + error Output: Root cause
Find the bug.
Signals
- GitHub stars
- 82
- Forks
- 11
- Last commit
- Aug 2026
- Hacker News mentions
- 20
Advanced
- Catalog kind
- skill
- Gateway key
debugger- Source
- github.com/claude-world/director-mode-lite