惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
人人都是产品经理
人人都是产品经理
罗磊的独立博客
博客园 - 聂微东
雷峰网
雷峰网
量子位
美团技术团队
V
V2EX
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
The Cloudflare Blog
爱范儿
爱范儿
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Jina AI
Jina AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Claude Code and Codex are logging your token usage locall...
Rob · 2026-06-18 · via DEV Community

Rob

Your AI coding agent's token data is already on your machine. You just haven't looked at it yet.

Claude Code and Codex both write local logs after every session. Those logs include detailed token breakdowns: uncached input, cache hits, cache writes, output. No API call needed, no provider dashboard, no guessing. The number that matters most, your prompt cache hit rate, has been sitting on your disk every time you wondered why you were burning through your weekly limit so fast.

The logs you already have

Claude Code writes a JSONL transcript for every session under ~/.claude/projects/. Each assistant message carries a usage block:

{
  "type": "assistant",
  "uuid": "f0c8...",
  "message": {
    "model": "claude-opus-4-...",
    "usage": {
      "input_tokens": 137,
      "cache_read_input_tokens": 815193,
      "cache_creation_input_tokens": 5521,
      "output_tokens": 4260
    }
  }
}

That split is the whole game. input_tokens is uncached input. cache_read_input_tokens is context served from the prompt cache. cache_creation_input_tokens is context written to cache. output_tokens is the response. On a long agent session, cache_read should dwarf input_tokens. If it does not, you are re-paying for the same context on every single turn.

Codex writes rollouts under ~/.codex/sessions/. It emits token_count events with a cumulative running total per session:

{ "type": "token_count", "info": { "total_token_usage": {
  "input_tokens": 0, "cached_input_tokens": 0,
  "output_tokens": 0, "reasoning_output_tokens": 0
}}}

Because Codex counts are cumulative, you take the delta between events rather than summing them.

Reading the logs without reading your prompts

A few lines of Node walk the JSONL, sum usage per model per day, and dedupe by message uuid for Claude and by session delta for Codex, so you never double-count:

import { readFileSync } from 'node:fs'

for (const line of readFileSync(file, 'utf8').split('\n')) {
  if (!line.trim()) continue
  const o = JSON.parse(line)
  const u = o.message?.usage
  if (!u || seen.has(o.uuid)) continue
  seen.add(o.uuid)
  // accumulate u.input_tokens, u.cache_read_input_tokens,
  // u.cache_creation_input_tokens, u.output_tokens by o.message.model
}

Notice what you do not need: the prompt text, the response text, or any API key. Model names and token counts are enough to compute everything useful. A usage tool should never have to read what you typed, and this one does not.

The number that actually matters

Once you aggregate, one metric matters more than the rest: your prompt cache hit rate.

hit_rate = cache_read / (cache_read + cache_creation + uncached_input)

On a flat plan, this is your real efficiency lever. A high hit rate means you are reusing context instead of resending it. A low one means you are burning tokens, and your usage limit, on the same context over and over. The fix is usually structural: stabilize the front of your prompt so the cache prefix stays intact, keep tool definitions lean, and stop reshuffling system context between turns.

One honest caveat: on a subscription you do not pay per token, so any dollar figure is an API list-price equivalent, not your actual cost. It is a useful sense of scale, nothing more. The signals that genuinely matter are token volume and cache hit rate. Any tool that flashes a "you spent $X this month" number at a flat-plan user is being a little loose with what that number means.

Turning it into a live dashboard

I wrapped all of this into ModelMeter. A one-line collector reads those local logs and sends the token counts, and only the token counts, to a dashboard that shows your cache hit rate, ranks where your tokens are going, and labels every figure by how it was derived: computed from real tokens, a gated estimate, or "coming" when it needs request-level data the logs do not contain.

npx modelmeter-collect init <your-token>
npx modelmeter-collect

Add a Claude Code Stop hook or a 60-second cron job and it stays live, updating after each prompt. It works for Claude Code, Codex, or both. It also accepts usage from a metered API key via a copy-paste snippet, or from a CSV export if you would rather not run the collector at all.

Free to try at modelmeter.dev.

The point

Whether or not you use ModelMeter: you are not flying blind. Your subscription coding tool has been writing detailed usage data to your local disk after every session. Go read it. You will almost certainly find that your biggest efficiency lever is a single number you have never once looked at.