From claude-code-boss
**WORKFLOW SKILL** — Local plugin configuration dashboard. USE FOR: opening the config UI, viewing/changing model-router, brain-config, pipelines, hooks, billing logs, searching the knowledge base. DO NOT USE FOR: editing config files directly via Write tool when user asks for dashboard (use the dashboard instead), non-plugin configuration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-boss:config-dashboardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user asks to open the config, dashboard, or settings UI, launch the dashboard server and tell them the URL.
When the user asks to open the config, dashboard, or settings UI, launch the dashboard server and tell them the URL.
node scripts/dashboard.js
$env:DASHBOARD_PORT=4500; node scripts/dashboard.jsAfter launching, read the output for the URL (pattern: http://localhost:<port>) and tell the user:
Dashboard aberto em: http://localhost:XXXX
Abas disponíveis: Home, Models, Pipelines, Brain KB, Billing, Hooks
node scripts/dashboard.js, show the URLnode scripts/dashboard.js processes$env:DASHBOARD_PORT=4500 before launching so the URL is predictable| Tab | Purpose |
|---|---|
| Home | System overview: models, pipelines, KB stats, billing, hooks status |
| Models | View/edit model-router.json tiers and per-agent config |
| Pipelines | View pipeline definitions with expandable step details |
| Brain KB | Select project, search KB, view/delete entries, backend status |
| Billing | Cost tracker logs with agent filter |
| Hooks | View all registered hooks, toggle active/inactive |
listen(0)) — read URL from stdoutDASHBOARD_PORT env var before launchinglisten() and Node.js will crash with EADDRINUSE — use a different portCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub allansantos-dv/claude-code-plugins --plugin claude-code-boss