/cost-today
Quick total cost plus a per-model one-liner from the dashboard pricing engine.
$ npx -y skills add hoangsonww/Claude-Code-Agent-Monitor --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cost-today
Context preview
What this command does when you run it.
Quick total cost plus a per-model one-liner from the dashboard pricing engine.
Command definition
cost-today.mddescription: Quick total cost plus a per-model one-liner from the dashboard pricing engine. argument-hint: "[today|week]"
Print a quick cost snapshot from the Agent Monitor dashboard pricing engine.
The user's scope is **$ARGUMENTS** (default `today` if empty; accepts `today` or `week`).
Fetch the fleet-wide cost breakdown:
curl -s http://localhost:4820/api/pricing/cost
This returns `{ total_cost, breakdown: [{ model, input_tokens, output_tokens, cache_read_tokens, cache_write_tokens, cost, matched_rule }] }`.
Then print, concisely:
1. **Total cost** — `total_cost` as USD to 4 decimal places, labeled with the scope (`$ARGUMENTS`). 2. **Per-model one-liners** — one line per entry in `breakdown`, sorted by `cost` descending: `<model> — $<cost to 4dp> (in <input_tokens>, out <output_tokens>, cacheR <cache_read_tokens>, cacheW <cache_write_tokens>)`
Keep token counts with thousands separators. No tables, no preamble — just the total and the per-model lines.
Note: the endpoint returns lifetime totals; if the user asked for `today` or `week` and the data is not scoped, say so in one line rather than fabricating a windowed number. If the dashboard is unreachable, tell the user to start it with `npm start` from the repo root.
🚀 A real-time monitoring dashboard for Claude Code & Codex, built with SQLite3, Node.js, Express, React, Vite, TailwindCSS, & WebSockets. It tracks sessions, agent activity, tool usage, and subagent orchestration, providing live analytics, a Kanban status board, status notifications, a cute buddy, & an interactive web UI/MacOS/Windows native app.
Repo: hoangsonww/Claude-Code-Agent-Monitor
Other commands on claude-code-agent-monitor.
- /burn-rate
Compute the recent 7-day spend trend (burn rate) from daily sessions and per-session cost.
Open command - /top-spenders
List the top N most expensive Claude Code sessions by inline cost.
Open command - /audit-config
Quick Claude Code config audit — counts per surface (user vs project) and totals.
Open command - /inventory
One-screen inventory of skills, agents, commands, MCP servers, and hooks counts.
Open command - /memory
List the file-based memory store grouped by project (auto-memory) plus the CLAUDE.md files.
Open command - /budget
Show current Claude Code spend versus a budget number
Open command

