claude-code-usage-analyzer CLAUDE.md

A set of coding rules for a Python command-line tool that analyzes Claude Code usage and costs. The tool reads aggregated data, applies model pricing, and produces JSON, Markdown, HTML, and optional chart files.

In plain words
What is it for?
Use it when developing, testing, packaging, or extending the usage analysis tool and its reports or dashboard.
Why use it?
It keeps contributions simple and consistent while documenting the project’s data sources, pricing approach, and package-management rules.

Instructions file

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.

agentmods
npx agentmods add instructions/aarora79/claude-code-usage-analyzer/claude-md
Clone the repo
git clone --depth 1 https://github.com/aarora79/claude-code-usage-analyzer
Per session 2,771 This file is loaded in full into every session.
When invoked 2,771 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found 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 $0.02771 $0.02771
Opus 5 $0.01385 $0.01385
Sonnet 5 $0.00554 $0.00554
Haiku 4.5 $0.00277 $0.00277

Measured 2d ago against content hash 3270cdd930aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

claude-code-usage-analyzer CLAUDE.md scanned grade A with 1 finding 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 2d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

result = subprocess.run( # noqa: S603 # nosec B603 - hardcoded command, list args, no shell
CLAUDE.md · 273 lines

How it starts

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

Claude Coding Rules

Overview

Coding standards and best practices for all code in this repository. These rules prioritize maintainability, simplicity, and modern Python development.

Core Principles

  • Write code with minimal complexity for maximum maintainability and clarity.
  • Choose simple, readable solutions over clever or complex implementations.
  • Prioritize code that any team member can confidently understand, modify, and debug.

What this repository is

A command-line usage-and-cost analysis tool for Claude Code. It shells out to the ccusage npm CLI to gather aggregated usage data, downloads a pricing table from LiteLLM over HTTPS, computes statistics, and writes a JSON analysis, a Markdown report, and a self-contained HTML dashboard, plus optional PNG charts. There is no web server or database. Pricing is resolved dynamically from LiteLLM against whatever models appear in the data, so new models work with no code change.

Technology Stack

Package Management

  • Always use uv and pyproject.toml for package management. Never use pip directly.

Libraries

  • The core tool depends only on the Python standard library, so it runs with uv run and no install step. Charts are an optional extra (matplotlib, numpy) declared under [project.optional-dependencies].
  • Formatting/Linting: use ruff for both linting and formatting.
  • Type Checking: use mypy.
  • Security: use bandit.
  • Testing: use pytest with pytest-cov.
  • Do not add a runtime dependency where the standard library will do.

Code Style

Function Structure

  • Internal/private functions start with an underscore (_) and are placed at the top of the file, followed by public functions.
  • Keep functions modular -- no more than 30-50 lines.
  • Two blank lines between function definitions; one parameter per line for readability.

Type Annotations (Python 3.10+)

Use modern PEP 604/585 syntax -- built-in generics and | unions -- instead of importing from typing.

Read the full file on GitHub · 273 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. 2d ago First seen · 273 lines · 2,771 tokens per session scan A 3270cdd930aa

Subscribe to this mod's changes

claude-code-usage-analyzer CLAUDE.md is an instructions file published in the GitHub repository aarora79/claude-code-usage-analyzer (5 stars, last pushed 1mo ago), licensed MIT. It adds 2,771 tokens to every session, about $0.0139 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories