Debugger

SkillAI & models

Systematic 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.

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

LanguageTool
JavaScriptnode --inspect
Python-m pdb
Godlv
Rustrust-gdb

2. Common Commands

CommandWhat
breakSet breakpoint
continueRun to next
stepStep into
nextStep over
printPrint variable
backtraceShow 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