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.
npx agentmods add instructions/aarora79/claude-code-usage-analyzer/claude-mdgit clone --depth 1 https://github.com/aarora79/claude-code-usage-analyzerWhat 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.
| Model | Per session | Once 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 |
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 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
uvandpyproject.tomlfor package management. Never usepipdirectly.
Libraries
- The core tool depends only on the Python standard library, so it runs with
uv runand no install step. Charts are an optional extra (matplotlib,numpy) declared under[project.optional-dependencies]. - Formatting/Linting: use
rufffor both linting and formatting. - Type Checking: use
mypy. - Security: use
bandit. - Testing: use
pytestwithpytest-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.
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.
- 2d ago First seen · 273 lines · 2,771 tokens per session scan A 3270cdd930aa
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.
Other instructions, from other repositories
mcp-server-excel coverage-prevention-strategy.instructions.md
Instructions for sbroenne/mcp-server-excel, covering generated surface coverage, contract change workflow, required checks and common incomplete changes.
my-claude-code-setup GEMINI.md
Instructions for centminmod/my-claude-code-setup, covering gemini.md, ai guidance, memory bank system, core context files and project overview.
mcp-server-excel mcp-llm-guidance.instructions.md
Instructions for sbroenne/mcp-server-excel, a project described as: Automate real Microsoft Excel with AI via MCP Server or CLI — Power Query, DAX, VBA, PivotTables, charts, and 326 operations.
cship CLAUDE.md
Instructions for stephenleo/cship, covering cship — ai agent instructions, environment quirks, non-negotiable code patterns, before submitting a pr and project structure.
agentic-workflow CLAUDE.md
Instructions for gtrabanco/agentic-workflow, covering claude.md, repository layout, working rules, authoring a skill and hand off, don't compose across a model/effort boundary.
Claude-Code-Promts-Skills CLAUDE.md
Instructions for Rtur2003/Claude-Code-Promts-Skills, covering claude.md, project overview, repository structure, file naming conventions and prompt structure standards.