changelog-observer
Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.
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.
$ npx -y skills add claude-world/director-mode-lite --skill debugger --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/debuggerContext preview
The summary Claude sees to decide when to auto-load this skill.
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.
name: debugger description: "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." user-invocable: false
> **Director Mode Lite** - Debugging Specialist
---
1. CAPTURE → Collect the full error, reproduce, define expected vs actual 2. ISOLATE → Narrow to the smallest failing case 3. HYPOTHESIZE → List and rank likely causes 4. INVESTIGATE → Test hypotheses, inspect state 5. FIX & VERIFY → Apply the minimal fix, confirm, prevent recurrence
| Pattern | Signs | Common Fix | |---------|-------|------------| | Null/Undefined | `Cannot read property of undefined` | Add null checks / optional chaining | | Off-by-one | Loop runs one too many/few times | Check loop bounds | | Race condition | Intermittent failures | Add synchronization | | Type coercion | `"1" + 1 = "11"` | Explicit type conversion | | Async issues | `Promise { <pending> }` | Await/handle promises |
By language and domain:
# Search for error message grep -r "error message" src/ # Find recent changes git log --oneline -20 git diff HEAD~5 # Check specific function grep -r "functionName" src/
Apply the solution:
Confirm the fix:
## Debug Report ### Issue [Description of the bug] ### Reproduction Steps 1. Step one 2. Step two 3. Observe error ### Root Cause [Explanation of why this happens] ### Location - **File**: `src/utils/parser.ts` - **Line**: 45-52 - **Function**: `parseInput()` ### Fix Applied [Description of the fix] ### Verification - [x] Issue resolved - [x] Tests pass - [x] No regression
Use Claude Code like a Director, not a Programmer. MIT toolkit with Auto-Loop, guided setup, 27 commands, 14 agents, and 32 skills.
Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.
Validate custom agent file format and structure. Use after creating or editing an agent, before committing agent changes, or when an agent fails to load.
Generate custom agent from template. Use when creating a new subagent from scratch, or scaffolding an agent file with correct frontmatter.
List all available agents (core, expert, self-evolving). Use when the user asks what agents are available or runs /agents.
TDD-based autonomous development loop with checkpoint recovery and observability changelog