claude-code-debug

Solid

Troubleshoot Claude Code extensions and behavior. Triggers on: debug, troubleshoot, not working, skill not loading, hook not running, agent not found.

AI & Automation 322 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 86/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
0
Description 5%
100

Skill Content

# Claude Code Debug Troubleshoot extensions, hooks, and unexpected behavior. ## Quick Diagnostics ```bash # Enable debug mode claude --debug # Check loaded extensions /hooks # View registered hooks /agents # View available agents /memory # View loaded memory files /config # View current configuration ``` ## Common Issues | Symptom | Quick Check | |---------|-------------| | Skill not activating | Verify description has trigger keywords | | Hook not running | Check `chmod +x`, run `/hooks` | | Agent not delegating | Add "Use proactively" to description | | MCP connection fails | Test server manually with `npx` | | Permission denied | Check settings.json allow rules | ## Debug Mode Output ```bash claude --debug # Shows: # - Hook execution and errors # - Skill loading status # - Subagent invocations # - Tool permission decisions # - MCP server connections ``` ## Quick Fixes ### Skill Not Loading ```bash # Check structure ls -la .claude/skills/my-skill/ # Must have: SKILL.md # Verify YAML frontmatter head -10 .claude/skills/my-skill/SKILL.md # Must start/end with --- # Check name matches directory grep "^name:" .claude/skills/my-skill/SKILL.md ``` ### Hook Not Executing ```bash # Make executable chmod +x .claude/hooks/my-hook.sh # Test manually echo '{"tool_name":"Bash"}' | .claude/hooks/my-hook.sh echo $? # Check exit code # Verify JSON syntax jq '.' ~/.claude/settings.json ``` ### Agent Not Being Used ```bash # Check file location ls...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

writing-hooks

How to write Claude Code hooks -- event selection, hook types, matcher patterns, blocking vs advisory, portable paths. Use when creating hooks for quality gates, automation, or policy enforcement.

52 Updated today
xiaolai
AI & Automation Solid

collaborating-with-claude-code

Delegate code implementation/review/debugging/alternatives to Claude Code via a JSON bridge script. Multi-turn via SESSION_ID.

37 Updated 3 months ago
ZhenHuangLab
AI & Automation Listed

claude-code-dispatch

Dispatch development tasks to Claude Code with automatic callback on completion. Supports Agent Teams (multi-agent parallel dev with dedicated Testing Agent), cost controls (--max-budget-usd), model fallback, git worktree isolation, custom subagents via --agents JSON, and MCP server integration. Use when: (1) dispatching a coding task to Claude Code and wanting automatic Telegram notification on completion, (2) running Agent Teams for parallel dev+test workflows, (3) needing zero-polling task execution with Stop Hook callback, (4) the user says 'use Claude Code to build/develop/create X', (5) the user asks to dispatch or run a Claude Code task. THIS IS THE DEFAULT for any 'build/develop/create a project' request — prefer this over claude-code-clawdbot for anything that takes >2 min or needs background execution.

44 Updated 2 months ago
win4r
AI & Automation Solid

agent-factory

Claude Code agent generation system that creates custom agents and sub-agents with enhanced YAML frontmatter, tool access patterns, and MCP integration support following proven production patterns

682 Updated 6 months ago
alirezarezvani