Token Cascade — The Flow of Tokens Through AI Coding Sessions
Every AI coding session moves tokens through a cascade. Architecture — not volume — determines whether tokens compound or burn.
What a token cascade is
A token cascade is the flow of tokens through an AI coding session. Every turn moves tokens through four stages: you send fresh input to the model, the model generates output back, cache-read tokens are reused from prior context via prompt caching, and cache-write tokens are written to cache for future reuse. The cascade is the full picture of how tokens enter, circulate, and leave the session.
The metaphor is deliberate: tokens cascade like water through a series of pools. Some pools compound — cached context flows back into the next turn, amplifying a small fresh input into large output. Other pools drain — fresh input pours in, nothing is reused, and thin output trickles out. The cascade is the architecture that determines which one you have.
The four pillars of the cascade
Every token in an AI coding session falls into exactly one of four buckets. Together they describe the full flow of the cascade.
Input
SpendFresh tokens you send to the model. Every input token is a cost — the raw spend side of the cascade.
Output
ReturnTokens the model generates back. The return side — what you actually keep from the exchange.
Cache-read
CompoundingCached tokens reused from prior context via prompt caching. Signal you already paid for, served again for free. The compounding layer of the cascade.
Cache-write
InvestmentNew tokens written to cache for future reuse. An investment in the next turn — you pay now to compound later.
Token cascade vs raw token consumption
Token consumption is a single number: total tokens used. It tells you how much you spent. Token cascade is the architecture: how those tokens flowed through the four pillars. It tells you whether the spend compounded or burned.
Two operators can consume the same 500K tokens and get wildly different results. One reuses cached context efficiently — high cache-read, low input, high output — and her yield is high. The other sends fresh prompts without reusing context — high input, low cache-read, low output — and his yield is low. Same volume, different cascade, different skill. The yield metric Υ = cache_read × output / input² captures this in one number.
This is why cascade architecture — not raw volume — is the measure of AI coding efficiency. Counting tokens tells you what you spent. Reading the cascade tells you how efficiently you spent it.
Why the cascade matters
The cascade matters because it is the unit of skill in AI coding. Your token cascade is your skill signature — the architecture of how you drive your AI tools. A compounding cascade (high cache reuse, high output per input) is the signature of an operator who structures turns to recall cached context and sends minimal fresh input. A burning cascade (high input, low cache, low output) is the signature of an operator who pays full price every turn.
The cascade is also privacy-preserving by construction. Four integers — input, output, cache_read, cache_write — fully describe the architecture without revealing a single word of what you typed or what the model returned. This is what makes a global, continuous operator ranking possible without reading anyone's prompts.
Explore the cascade
Token Telemetry
How the four token pillars are captured on-device from real coding sessions — the privacy-preserving data layer that makes the cascade visible.
Cascade Analysis
The diagnostic patterns: how to read your cascade, spot compounding vs burning, and turn the four pillars into action.
Yield (Υ) Cascade
The headline metric that summarizes cascade architecture in one number: cache_read × output / input².
Cache Hit Rate
How well you reuse cached context — the difference between a compounding cascade and a hoarding one.
Leverage
How much cached context amplifies your fresh input — the compounding multiplier of the cascade.
Compression Ratio
Output over input — whether the model is doing more with your tokens than echoing them back.
How to Read Your Cascade
A step-by-step guide to interpreting your four token pillars and spotting diagnostic patterns.
How to Track Your Token Cascade
A step-by-step guide to capturing the four pillars from your AI coding sessions.
Cascade Comparator
Compare two operators' token cascades side by side — see where the yield gap comes from.
Token Yield vs Token Count
Why cascade architecture — not raw token volume — measures AI operator skill.
FAQ
- What is a token cascade?
- The flow of tokens through an AI coding session across four stages: input, output, cache-read, and cache-write. The cascade is the full picture of how tokens enter, circulate, and leave a session.
- What are the four pillars?
- Input (fresh tokens sent), output (tokens generated back), cache-read (cached tokens reused), and cache-write (new tokens written to cache for future reuse).
- Cascade vs consumption?
- Consumption is a single number — total tokens used. Cascade is the architecture — how those tokens flowed. Two operators with the same consumption can have very different cascades and very different yield.
- How do I measure my cascade?
- Install the SigRank CLI (
npm install -g sigrank), runsigrank enroll, and submit a snapshot. The on-device scanner reads token counts locally and publishes a signed snapshot. No message content leaves your machine.
Measure your token cascade
Paste your four token counts and see where your cascade ranks — compounding or burning. No install needed.
Measure & rank your cascade →