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/ihatenodejs/agent-exporter/agents-mdgit clone --depth 1 https://github.com/ihatenodejs/agent-exporterWrote 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.
[](https://agentmods.dev/instructions/ihatenodejs/agent-exporter/agents-md)<a href="https://agentmods.dev/instructions/ihatenodejs/agent-exporter/agents-md"><img src="https://agentmods.dev/badge/instructions/ihatenodejs/agent-exporter/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01750 | $0.01750 |
| Opus 5 | $0.00875 | $0.00875 |
| Sonnet 5 | $0.00350 | $0.00350 |
| Haiku 4.5 | $0.00175 | $0.00175 |
Grade A, and why
agent-exporter AGENTS.md 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 201 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Exporter is a CLI tool for tracking and analyzing LLM usage costs across multiple AI agent providers (Oh My Pi, OpenCode, Claude Code/CCUsage, Codex, Antigravity, Qwen). It uses SQLite for storage, calculates costs using @pydantic/genai-prices with a fallback pricing database, and exports data in various formats.
Development Commands
Run in development:
bun run dev <command> [args]
# Example: bun run dev sync --provider opencode
Build executable:
bun run build
# Creates compiled binary at dist/agent-exporter
Type checking:
bun run typecheck
Link for local testing:
bun link
# Then use: agent-exporter <command>
Architecture
Core Data Flow
- Providers (src/providers/) fetch raw usage data from each platform
- DatabaseManager (src/database/) stores unified messages in SQLite
- Pricing (src/core/pricing.ts) resolves Oh My Pi stored/catalog costs, then genai-prices → fallback database → $0
- Exporters (src/exporters/) transform data into output formats
- CLI (src/cli.ts) orchestrates everything via Commander.js
Key Patterns
Provider Adapters: Each provider implements one member of the ProviderAdapter union:
MessagesProviderAdapter:name,dataType: 'messages', andfetchMessages(): Promise<UnifiedMessage[]>UsageProviderAdapter:name,dataType: 'usage entries', andfetchUsageEntries(): Promise<UsageEntry[]>
Normalized Data: Message providers return UnifiedMessage[] with standardized token counts (input, output, reasoning, cache creation/read), cost, and metadata. Usage providers return UsageEntry[].
Pricing Resolution:
- Oh My Pi: preserve non-zero recorded totals; otherwise use the bundled
@oh-my-pi/pi-catalogrates - Primary:
@pydantic/genai-pricesviacalcPrice(); Oh My Pi wrapper records search without the wrapper provider ID - Fallback:
src/core/database/prices.tsfor exact and regex-matched custom prices - Default: $0 for unknown models
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.
- 4d ago First seen · 201 lines · 1,750 tokens per session scan A e60f20c18bdb
agent-exporter AGENTS.md is an instructions file published in the GitHub repository ihatenodejs/agent-exporter (2 stars, last pushed 10d ago), licensed Unlicense. It adds 1,750 tokens to every session, about $0.0088 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
hapi AGENTS.md
AGENTS.md instructions for tiann/hapi, covering agents.md, what is hapi?, repo layout, architecture overview and reference docs.
open-vibe-island AGENTS.md
AGENTS.md instructions for Octane0411/open-vibe-island, covering agents, goal, required workflow, commit policy and safety rules.
open-vibe-island CLAUDE.md
Claude Code instructions for Octane0411/open-vibe-island, covering claude.md, project, architecture, build & run and dev app (open island dev.app).
sessionview AGENTS.md
AGENTS.md instructions for tyql688/sessionview, covering sessionview, commands, app / frontend, gates must pass under both feature sets: default (gui) and and --no-default-features --features headless.
kmux AGENTS.md
AGENTS.md instructions for kkd927/kmux, covering agents.md, kmux focus and test discipline.
wingman AGENTS.md
Instructions for eat-pray-ai/wingman, covering agents.md — wingman (@eat-pray-ai/wingman), quick reference and documentation index.