npx claudepluginhub jwadhwa2259/codescope --plugin codescopeThis skill is limited to using the following tools:
Launch the interactive CodeScope visualization dashboard. The dashboard provides five panels: dependency graph (sigma.js), convention heatmap, readiness trends, blast radius explorer, and command center. All data is read from the local `.claude/codescope/` analysis artifacts.
Launches interactive web dashboard via Vite to visualize codebase knowledge graph from .understand-anything/knowledge-graph.json. Requires prior /understand analysis; auto-opens browser.
Builds interactive knowledge graph of any codebase via multi-agent pipeline analyzing files, functions, classes, and dependencies; opens React dashboard for visual exploration, search, and natural language queries.
Provides guided interactive exploration of codebases with mermaid diagrams, prose walkthroughs, and project scans for name, languages, LOC, purpose, and components. No setup required.
Share bugs, ideas, or general feedback.
Launch the interactive CodeScope visualization dashboard. The dashboard provides five panels: dependency graph (sigma.js), convention heatmap, readiness trends, blast radius explorer, and command center. All data is read from the local .claude/codescope/ analysis artifacts.
Arguments: $ARGUMENTS
curl -s http://localhost:7463/api/status
If the response is valid JSON (server already running), skip to Step 4.
ls dist/dashboard/server.mjs 2>/dev/null
If the file does not exist, build first:
npm run build
Start the server in the background:
node dist/dashboard/server.mjs &
Wait for the server to be ready (poll up to 10 seconds):
for i in $(seq 1 10); do
if curl -s http://localhost:7463/api/status > /dev/null 2>&1; then
break
fi
sleep 1
done
On macOS:
open http://localhost:7463
On Linux:
xdg-open http://localhost:7463
Tell the user:
If $ARGUMENTS contains --screenshot:
codescope-dashboard.png).npx tsx src/dashboard/screenshot.ts {output_path}