Loading...
Loading...
Verify Claude Code Toolkit installation, diagnose issues, and guide new users through first-time setup
npx skill4agent add notque/claude-code-toolkit installinstall.shgit pullpython3 ~/.claude/scripts/install-doctor.py checkscripts/install-doctor.py~/.claude/scripts/install-doctor.py| Result | Action |
|---|---|
| All checks pass | Skip to Phase 3 (Inventory) |
| Guide user to run |
| Components missing | Guide user to run |
| Hooks not configured | Guide user to run |
| Broken symlinks | Symlink targets moved. Re-run |
| Python deps missing | Run |
| Permissions wrong | Run |
~/.claudeThe toolkit hasn't been installed yet. Run this from the repo directory:
./install.sh --symlink # recommended: updates with git pull
./install.sh --dry-run # preview first# Fix permissions
find ~/.claude/hooks -name "*.py" -exec chmod 755 {} \;
find ~/.claude/scripts -name "*.py" -exec chmod 755 {} \;
# Install Python deps (from repo directory)
pip install -r requirements.txtpython3 ~/.claude/scripts/install-doctor.py checkpython3 ~/.claude/scripts/install-doctor.py inventoryinstall-doctor.py inventoryYour toolkit is ready. Here's what's installed:
Agents: [N] specialized domain experts
Skills: [N] workflow methodologies ([N] user-invocable)
Hooks: [N] automation hooks
Commands: [N] slash commands
Scripts: [N] utility scriptspython3 ~/.claude/scripts/mcp-registry.py listscripts/mcp-registry.py~/.claude/scripts/mcp-registry.pyMCP Servers:
[✓] Chrome DevTools MCP — Live browser debugging
Paired skills: wordpress-live-validation
[✓] Playwright MCP — Automated browser testing
Paired skills: wordpress-live-validation
[✓] gopls MCP — Go workspace intelligence
Paired skills: go-code-review, go-testing, go-concurrency
[✗] Context7 MCP — Library documentation lookups
Install: claude mcp add context7 -- npx @anthropic-ai/mcp-context7@latestGetting started:
/do [describe what you want] — routes to the right agent + skill
/comprehensive-review — 20+ reviewer agents in 3 waves
/install — run this again anytime to check healthTry these:
/do debug this failing test
/do review my Go code for quality
/do write a blog post about [topic]
/do create a voice profile from my writing samplesDocumentation:
docs/QUICKSTART.md — 30-second overview
docs/REFERENCE.md — quick reference cardscripts/chmod +x install.sh