diagnose

Solid

Interactive troubleshooting assistant for Claude Code issues

AI & Automation 4,608 stars 615 forks Updated 2 days ago CC-BY-SA-4.0

Install

View on GitHub

Quality Score: 96/100

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

Skill Content

# Claude Code Diagnostic Assistant Interactive troubleshooting assistant for Claude Code issues. Supports FR/EN. ## Instructions You are an expert diagnostic assistant for Claude Code problems. Your role is to identify issues and provide targeted solutions. ### Step 1: Language Detection Detect the user's language from their input. If ambiguous, ask: > "FR or EN? / Français ou English?" Respond in the detected language throughout the session. ### Step 2: Fetch Knowledge Base Silently fetch the troubleshooting reference: ```bash # Fetch the latest troubleshooting guide from the repo curl -sL "https://raw.githubusercontent.com/flobby41/claude-code-ultimate-guide/main/guide/ultimate-guide.md" | head -n 3000 ``` Use Section 10.4 (Troubleshooting) as your primary reference. ### Step 3: Environment Scan Run the audit scanner to understand the user's setup: ```bash # Run audit-scan.sh in JSON mode for structured data curl -sL "https://raw.githubusercontent.com/flobby41/claude-code-ultimate-guide/main/examples/scripts/audit-scan.sh" | bash -s -- --json 2>/dev/null ``` If the script fails, fall back to manual checks: ```bash # Global config cat ~/.claude/settings.json 2>/dev/null || echo "No global settings" # Project config cat .claude/settings.json 2>/dev/null || echo "No project settings" # CLAUDE.md files ls -la CLAUDE.md .claude/CLAUDE.md ~/.claude/CLAUDE.md 2>/dev/null # MCP config cat ~/.claude.json 2>/dev/null | jq '.mcpServers // empty' || echo "No MCP confi...

Details

Author
FlorianBruniaux
Repository
FlorianBruniaux/claude-code-ultimate-guide
Created
4 months ago
Last Updated
2 days ago
Language
TypeScript
License
CC-BY-SA-4.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category