Terms  /  Measurement  /  Context Efficiency
09 · Measurement

Context Efficiency

Useful retained state per token consumed.

Context Efficiency is the foundational metric of the measurement category. It asks: for every token you spend, how much useful knowledge is the system retaining? A system that consumes 10,000 tokens per session but retains nothing for the next session has zero Context Efficiency. A system that consumes 10,000 tokens and retains 80% of the useful information for future sessions has high Context Efficiency. This metric directly captures the value of persistent memory: every token spent on re-onboarding in a stateless system is a token with zero Context Efficiency.

Example
Two teams use the same model for the same project. Team A uses a stateless system: 10,000 tokens per session, zero retained. Over 20 sessions: 200,000 tokens consumed, context starts from scratch each time. Team B uses a stateful system: 10,000 tokens in session 1, but subsequent sessions need only 3,000 tokens because 70% of the context is retained. Over 20 sessions: 67,000 tokens consumed, context builds over time. Team B's Context Efficiency is 3x higher — they're getting more useful state per token spent.

More in Measurement