スキル一覧に戻る
hgeldenhuys

debugging-claude-code

by hgeldenhuys

1🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: debugging-claude-code description: Troubleshooting guide for Claude Code issues. Use when Claude behaves unexpectedly, tools fail, sessions hang, or you need to diagnose problems. Covers diagnostics, common issues, and recovery procedures. allowed-tools: ["Read", "Bash"]

Debugging Claude Code

Systematic troubleshooting guide for diagnosing and resolving Claude Code issues.

Quick Diagnostics

Run these commands first when experiencing issues:

# Health check - comprehensive system status
claude doctor

# Or in-session
/doctor

# Check Claude Code version
claude --version

# Debug mode - verbose output for all operations
claude --debug

# Environment-level debug logging
ANTHROPIC_LOG=debug claude

# Check registered hooks
claude --print-hooks

# View MCP server status
claude mcp list

Common Issues Quick Reference

SymptomLikely CauseQuick Fix
Tool not workingPermission denied/permissions then allow tool
MCP tools missingServer disconnected/mcp to check status
Hook not firingJSON syntax errorjq . ~/.claude/settings.json
Skill not loadingInvalid frontmatterCheck YAML syntax
Context overflowToo much dataUse /compact or /clear
Rate limitedToo many requestsWait 60 seconds
API errorsAuth/network issuesCheck ~/.claude/.credentials.json
Session stuckProcess hangingCtrl+C, restart Claude
Slow responsesNetwork or model loadCheck connection, try again

Debug Flags and Environment Variables

Command-Line Flags

FlagPurpose
--debugEnable verbose debug output
--print-hooksDisplay all registered hooks
--verboseShow more detailed output
--no-cacheDisable response caching

Environment Variables

VariablePurposeExample
ANTHROPIC_LOGLog leveldebug, info, warn, error
CLAUDE_CODE_DEBUGAdditional debugging1 or true
MCP_TIMEOUTMCP connection timeout (ms)30000
MAX_MCP_OUTPUT_TOKENSMax MCP output size50000
HTTP_PROXYProxy for network requestshttp://proxy:8080
HTTPS_PROXYHTTPS proxyhttps://proxy:8080
NO_PROXYSkip proxy for hostslocalhost,127.0.0.1

Combined Debug Session

# Maximum verbosity
ANTHROPIC_LOG=debug claude --debug 2>&1 | tee ~/claude-debug.log

Log Locations

By Operating System

OSLocation
macOS~/Library/Logs/Claude Code/
Linux~/.local/share/claude-code/logs/
Windows%APPDATA%\Claude Code\logs\

Configuration Files

FilePurpose
~/.claude/settings.jsonUser settings and hooks
~/.claude/.credentials.jsonAPI credentials
~/.claude/projects.jsonProject-specific settings
.claude/settings.jsonProject settings (committed)
.claude/settings.local.jsonLocal project settings
.mcp.jsonMCP server configuration

Session Data

LocationContents
~/.claude/sessions/Session transcripts
~/.claude/todos/Task lists
~/.claude/memory/Persistent memory

Diagnostic Commands

System Health

# Full health check
claude doctor

# Check component status
claude doctor --component api
claude doctor --component mcp
claude doctor --component hooks

/doctor reports (2.1.6+):

  • Updates section - Shows auto-update channel and available npm versions (stable/latest)
  • Permission warnings - Detects unreachable permission rules with fix guidance
  • API connectivity - Verifies connection to Anthropic API
  • MCP servers - Lists connected servers and their status
  • Hooks - Validates hook configurations

Permission Diagnostics

# View current permissions
/permissions

# Check what tools are allowed
/permissions --tools

# Check file access patterns
/permissions --files

Hook Diagnostics

# List all registered hooks
claude --print-hooks

# View hooks in interactive mode
/hooks

# Validate hook JSON
jq . ~/.claude/settings.json
jq . .claude/settings.json

MCP Diagnostics

# List configured servers
claude mcp list

# Get server details
claude mcp get <server-name>

# Check connection in session
/mcp

Diagnostic Decision Tree

Is Claude starting?

Claude won't start
    |
    +-- Check: claude --version
    |   |
    |   +-- Works --> Config issue, check ~/.claude/
    |   +-- Fails --> Installation issue, reinstall
    |
    +-- Check: ANTHROPIC_LOG=debug claude
        |
        +-- Auth error --> Check credentials
        +-- Network error --> Check connectivity
        +-- Other --> See COMMON-ISSUES.md

Are tools working?

Tool not working
    |
    +-- Check: /permissions
    |   |
    |   +-- Denied --> Allow tool
    |   +-- Allowed --> Continue
    |
    +-- Check: --debug output
    |   |
    |   +-- Tool called --> Check tool-specific logs
    |   +-- Not called --> Check permissions/syntax
    |
    +-- MCP tool?
        |
        +-- Yes --> /mcp, check server status
        +-- No --> See COMMON-ISSUES.md

Are hooks working?

Hook not firing
    |
    +-- Check: /hooks
    |   |
    |   +-- Listed --> Matcher issue or script issue
    |   +-- Not listed --> JSON syntax error
    |
    +-- Validate JSON: jq . settings.json
    |   |
    |   +-- Valid --> Check matcher pattern
    |   +-- Invalid --> Fix JSON syntax
    |
    +-- Test script: echo '{}' | ./hook.sh
        |
        +-- Works --> Matcher doesn't match
        +-- Fails --> Script error

Built-in Diagnostic Commands

CommandPurpose
/hooksView registered hooks
/mcpMCP server status
/permissionsPermission settings
/memoryMemory bank status
/statusSession status
/bugReport a bug
/doctorRun health checks

Verbose Mode

Toggle verbose mode during a session:

  • Keyboard shortcut: Ctrl+O (in terminal)
  • Shows: Hook execution, tool calls, API responses

Quick Fixes

Permission Issues

# Allow all file operations in project
/permissions --allow "Write,Edit,Read" --scope project

# Allow specific MCP server
/permissions --allow "mcp__servername__*"

Clear Issues

# Clear conversation context
/clear

# Compact context (keep important parts)
/compact

# Reset session
/reset

Configuration Reset

# Back up and reset settings
cp ~/.claude/settings.json ~/.claude/settings.json.bak
rm ~/.claude/settings.json

# Reset just hooks
jq 'del(.hooks)' ~/.claude/settings.json > tmp && mv tmp ~/.claude/settings.json

Reference Files

FileContents
DIAGNOSTICS.mdDetailed diagnostic techniques
COMMON-ISSUES.mdCommon problems and solutions
RECOVERY.mdRecovery procedures

When to Escalate

Use /bug to report issues when:

  • claude doctor shows failures
  • Reproducible crashes
  • API errors persist after credential refresh
  • Behavior contradicts documentation

Include in bug reports:

  • Claude Code version (claude --version)
  • OS and version
  • Debug output (claude --debug)
  • Steps to reproduce

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です