Visualize Setup
Generate an interactive HTML dashboard of all installed Claude Code skills, plugins, and MCP servers.
Procedure
Step 1 — Build and open the dashboard
Run the build script:
bash "${CLAUDE_PLUGIN_ROOT}/skills/visualize-setup/scripts/build-dashboard.sh"
This script:
- Discovers global, project, and plugin-installed skills
- Discovers global and project MCP servers
- Reads game-mode usage data (if enabled)
- Injects all data into the HTML template
- Writes
/tmp/claude-skills-dashboard.html - Opens it in the default browser
Step 2 — Handle errors
If the script fails:
- Read the error output and diagnose
- Common issues:
jqnot installed, missing permissions - Read the failing script to understand the issue
- Fix and re-run
Important notes
- Re-scans fresh each invocation (no caching)
- The HTML template is at
assets/template.htmlrelative to this skill — do not regenerate it - Discovery script is at
scripts/discover.sh