Skip to content
Development
Command

/cost-today

Quick total cost plus a per-model one-liner from the dashboard pricing engine.

From plugin
claude-code-agent-monitor
89133 skills21 agents33 commands
Install
$ npx -y skills add hoangsonww/Claude-Code-Agent-Monitor --agent claude-code

How 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.md
description: 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.

Ships withclaude-code-agent-monitor

🚀 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.

Get the whole plugin, auto-invoked
Stats
891
Stars
0
Views
201
Forks
Active
Maintenance
TypeScript
Language
MIT
License
1h ago
Last commit
5mo ago
Created

Repo: hoangsonww/Claude-Code-Agent-Monitor