cost-report

cost-report is a command for Claude Code from Fmarzochi/EGC. It costs 15 tokens per session (782 once invoked), scanned A, a copy of cost-report, Apache-2.0.

A report generated from a local SQLite database that records Gemini CLI usage costs. It summarizes spending by day, project, tool, and session, and can export recent records as CSV.

In plain words
What is it for?
Use it to review development-tool spending, compare costs across projects or sessions, or export usage data for further analysis.
Why use it?
It makes local usage spending visible instead of requiring developers to inspect raw database rows. It also clearly reports when the required cost tracker or database is not set up.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions Gemini CLI.

Good fit Use it to review development-tool spending, compare costs across projects or sessions, or export usage data for further analysis.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/fmarzochi/egc/cost-report
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Fmarzochi/EGC

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cost-report

README.md
[![agentmods](https://agentmods.dev/badge/commands/fmarzochi/egc/cost-report.svg)](https://agentmods.dev/commands/fmarzochi/egc/cost-report)
Your own site
<a href="https://agentmods.dev/commands/fmarzochi/egc/cost-report"><img src="https://agentmods.dev/badge/commands/fmarzochi/egc/cost-report.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 782 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 89% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.00782
Opus 5 $0.00008 $0.00391
Sonnet 5 $0.00003 $0.00156
Haiku 4.5 $0.00002 $0.00078

Measured 3d ago against content hash 48f48ebb5f3e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

cost-report scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

89% identical to cost-report — 20 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

commands/cost-report.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cost Report

Query the local cost-tracking database and present a spending report by day, project, tool, and session. This command assumes a cost-tracking hook or plugin is already writing usage rows to ~/.Gemini-cost-tracker/usage.db.

What This Command Does

  1. Check that sqlite3 is available.
  2. Check that ~/.Gemini-cost-tracker/usage.db exists.
  3. Run aggregate queries against the usage table.
  4. Present a compact report, or export recent rows as CSV when the argument is csv.

Prerequisites

The database must be populated by a local cost tracker. If the file is missing, tell the user the tracker is not set up and suggest installing or enabling a trusted Gemini CLI cost-tracking hook/plugin first.

test -f ~/.Gemini-cost-tracker/usage.db && echo "Database found" || echo "Database not found"

Summary Query

sqlite3 -header -column ~/.Gemini-cost-tracker/usage.db "
  SELECT
    ROUND(COALESCE(SUM(CASE WHEN date(timestamp) = date('now') THEN cost_usd END), 0), 4) AS today_cost,
    ROUND(COALESCE(SUM(CASE WHEN date(timestamp) = date('now', '-1 day') THEN cost_usd END), 0), 4) AS yesterday_cost,
    ROUND(COALESCE(SUM(cost_usd), 0), 4) AS total_cost,
    COUNT(*) AS total_calls,
    COUNT(DISTINCT session_id) AS sessions
  FROM usage;
"

Project Breakdown

sqlite3 -header -column ~/.Gemini-cost-tracker/usage.db "
  SELECT project, ROUND(SUM(cost_usd), 4) AS cost, COUNT(*) AS calls
  FROM usage
  GROUP BY project
  ORDER BY cost DESC;
"

Tool Breakdown

sqlite3 -header -column ~/.Gemini-cost-tracker/usage.db "
  SELECT tool_name, ROUND(SUM(cost_usd), 4) AS cost, COUNT(*) AS calls
  FROM usage
  GROUP BY tool_name
  ORDER BY cost DESC;
"

Last Seven Days

sqlite3 -header -column ~/.Gemini-cost-tracker/usage.db "
  SELECT date(timestamp) AS date, ROUND(SUM(cost_usd), 4) AS cost, COUNT(*) AS calls
  FROM usage
  GROUP BY date(timestamp)
  ORDER BY date DESC
  LIMIT 7;
"

CSV Export

Read the full file on GitHub · 108 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 108 lines · 15 tokens per session scan A 48f48ebb5f3e

Subscribe to this mod's changes

cost-report is a command published in the GitHub repository Fmarzochi/EGC (48 stars, last pushed yesterday), licensed Apache-2.0. It adds 15 tokens to every session and 782 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to cost-report, differing in 20 lines, and is treated as a copy.