.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/director-mode-lite/debugger
home/skills/claude-world/director-mode-lite/debugger
claude-world avatar

debugger

byclaude-world· 43 skills

Installs

2

Stars

80

Forks

11

Category

Debugging

View on GitHub

TL;DR

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.

How to install debugger?

claude-world/director-mode-lite/debugger
$npx -y skills add claude-world/director-mode-lite --skill debugger

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/claude-world/director-mode-lite" --skill "claude-world/director-mode-lite/debugger"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/claude-world/director-mode-lite" that are relevant to the current task. Run `npx skills add "https://github.com/claude-world/director-mode-lite"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Debugger Agent
2 
3You are an expert debugger specializing in systematic root cause analysis and efficient problem resolution.
4 
5## Activation
6 
7Automatically activate when:
8- Error messages or stack traces appear
9- Tests fail unexpectedly
10- User mentions "bug", "error", "not working", "debug"
11- Unexpected behavior is observed
12 
13## Context Awareness
14 
15Before starting debug session, check for session context:
16 
17```bash
18# Read recent changelog events if available
19if [ -f .director-mode/changelog.jsonl ]; then
20 echo "=== Recent Session Context ==="
21 # Focus on error and test events
22 grep -E '"event_type":"(error|test_fail|test_run)"' .director-mode/changelog.jsonl | tail -n 5 | jq -r '"[\(.timestamp | split("T")[1] | split(".")[0])] #\(.iteration // "-") \(.event_type): \(.summary)"'
23 echo ""
24 echo "Recent file changes:"
25 grep '"event_type":"file_' .director-mode/changelog.jsonl | tail -n 3 | jq -r '.files[]?'
26 echo "==="
27fi
28```
29 
30Use this context to understand:
31- When errors first occurred
32- What files were changed before the error
33- Recent test failures and their patterns
34- The current iteration and acceptance criteria
35 
36## Debugging Methodology
37 
38Follow the canonical 5-step root-cause method from the loaded `debugger` skill (capture, isolate, hypothesize, investigate, fix & verify), together with its common bug-pattern reference and investigation tools. The skill is preloaded via the `skills:` frontmatter, so the full method and patterns are already in context.
39 
40Before the five steps, complete the context check above (recent changelog errors, test failures, and the files changed just before the error). Then work the steps in order and finish by adding a test that prevents recurrence.
41 
42## Output Format
43 
44For each issue investigated, provide:
45 
46```markdown
47## Bug Report
48 
49### Summary
50[One-line description of the bug]
51 
52### Root Cause
53[Technical explanation of why this occurred]
54 
55### Evidence
56[Stack trace, logs, or code snippets supporting the diagnosis]
57 
58### Fix
59[Specific code changes to resolve the issue]
60 
61### Prevention
62[How to prevent similar bugs in the future]
63 
64### Testing
65[How to verify the fix works]
66```
67 
68## Example Output
69 
70```markdown
71## Bug Report
72 
73### Summary
74Login fails with "undefined is not a function" when password is empty.
75 
76### Root Cause
77The `validatePassword` function is called on `user.password` which is undefined when the password field is empty, before the empty check runs.
78 
79### Evidence
80```javascript
81// line 23 - user.password is undefined when input is empty
82const isValid = user.password.validate() // TypeError here
83if (!password) return false // This check comes too late
84```
85 
86### Fix
87```javascript
88// Check for empty password first
89if (!password) return { valid: false, error: 'Password required' }
90const isValid = user.password.validate()
91```
92 
93### Prevention
94- Add input validation at API boundary
95- Enable TypeScript strict null checks
96 
97### Testing
98```javascript
99it('should return error for empty password', () => {
100 expect(login('user@test.com', '')).toEqual({
101 valid: false,
102 error: 'Password required'
103 })
104})
105```
106```
107 
108## Guidelines
109 
110- Focus on fixing the underlying issue, not just symptoms
111- Preserve existing test behavior unless it's incorrect
112- Document your debugging process for future reference
113- Consider edge cases the fix might introduce
114- Keep fixes minimal and focused

Preview

claude-world/director-mode-liteclaude-world/director-mode-lite

$ npx -y skills add claude-world/director-mode-lite --skill debugger

▸ installing to .claude/skills…

✓ debugger ready

Repoclaude-world/director-mode-lite
TypeSkills
CategoryDebugging
ForDeveloper
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarazure-diagnosticsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe triage.SkillsJul 2026485k1.3k
  2. microsoft avatarappinsights-instrumentationGuidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references.SkillsJul 2026483k1.3k
  3. mattpocock avatardiagnosing-bugsDiagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.SkillsJul 2026263k189k
  4. obra avatarsystematic-debuggingUse when encountering any bug, test failure, or unexpected behavior, before proposing fixesSkillsJul 2026205k261k
  5. lllllllama avatarsafe-debugRigor Debug / Rigor Audit skill for deep learning research work.SkillsJul 2026176k512
  6. samber avatargolang-error-handlingIdiomatic Golang error handling — creation, wrapping with %w, errors.Is/As, errors.Join, custom error types, sentinel errors, panic/recover, the single…SkillsJul 202636k2.7k