From multillm
Open the MultiLLM dashboard showing sessions, token usage, costs, and backend status. Use when the user asks about LLM usage, costs, dashboard, or wants to see model statistics.
How this skill is triggered — by the user, by Claude, or both
Slash command
/multillm:llm-dashboardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Open the MultiLLM dashboard and provide a usage summary.
Open the MultiLLM dashboard and provide a usage summary.
If the user asks for an hourly check, use hours=1 unless they specify another short window.
curl -s 'http://localhost:8080/api/dashboard?hours=HOURS' | python3 -c "
import sys, json
d = json.load(sys.stdin)
t = d.get('totals', {})
total = (t.get('total_input',0) or 0) + (t.get('total_output',0) or 0)
reqs = t.get('total_requests',0) or 0
sessions = d.get('session_count',0) or 0
cost = t.get('total_cost',0) or 0
derived = d.get('derived', {})
print(f'Window: {d.get(\"hours\", \"HOURS\")}h')
print(f'Requests: {reqs:,} | Tokens: {total:,} ({t.get(\"total_input\",0):,} in / {t.get(\"total_output\",0):,} out) | Cost: \${cost:.4f}')
print(f'Rates: {derived.get(\"avg_requests_per_session\",0):.2f} req/session | {derived.get(\"avg_tokens_per_request\",0):.1f} tok/req | \${derived.get(\"avg_cost_per_request\",0):.6f}/req')
for m in d.get('by_model', [])[:10]:
tok = (m.get('input_tokens',0) or 0) + (m.get('output_tokens',0) or 0)
reqs = m.get('requests',0) or 0
print(f' {m[\"model_alias\"]:25s} {reqs:4d} reqs {tok:>10,} tok {(tok / reqs) if reqs else 0:>8.1f} tok/req \${m.get(\"cost_usd\",0):.4f}')
"
curl -s 'http://localhost:8080/api/sessions?hours=HOURS&limit=10' | python3 -c "
import sys, json
from datetime import datetime
for s in json.load(sys.stdin):
started = datetime.fromtimestamp(s['started_at']).strftime('%b %d %H:%M')
models = ', '.join(s.get('models_used', []))
tok = (s.get('total_input_tokens',0) or 0) + (s.get('total_output_tokens',0) or 0)
reqs = s.get('total_requests',0) or 0
print(f' {started} [{s[\"project\"]}] {reqs} reqs, {tok:,} tok, {(tok / reqs) if reqs else 0:.1f} tok/req, \${s.get(\"total_cost_usd\",0):.4f} -- {models}')
"
1h, 3h, 6h, or 12hpython -m multillm.gatewayCreates, 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 adibirzu/multillm