OpenClaw Money-Saving Strategy: Saving Two Thousand a Month - What Am I Doing Right?
Original Article Title: Why My OpenClaw Sessions Burned 21.5M Tokens in a Day (And What Actually Fixed It)
Original Article Author: MOSHIII
Translation: Peggy, BlockBeats
Editor's Note: In the current rapid adoption of Agent applications, many teams have encountered a seemingly anomalous phenomenon: while the system appears to be running smoothly, the token cost continues to rise unnoticed. This article reveals that the reason for cost explosion in a real OpenClaw workload often does not stem from user input or model output but from the overlooked cached prefix replay. The model repeatedly reads a large historical context in each call, leading to significant token consumption.
The article, using specific session data, demonstrates how large intermediate artifacts such as tool outputs, browser snapshots, JSON logs, etc., are continuously written into the historical context and repetitively read in the agent loop.
Through this case study, the author presents a clear optimization approach: from context structure design, tool output management to compaction mechanism configuration. For developers building Agent systems, this is not only a technical troubleshooting record but also a practical money-saving strategy.
Below is the original article:
I analyzed a real OpenClaw workload and discovered a pattern that I believe many Agent users will recognize:
The token usage looks "active."
The replies appear normal.
But the token consumption suddenly explodes.
Here is the breakdown of the structure, root cause, and a practical fix path for this analysis.
TL;DR
The biggest cost driver is not overly long user messages. It is the massive cached prefix being repeatedly replayed.
From the session data:
Total tokens: 21,543,714
cacheRead: 17,105,970 (79.40%)
input: 4,345,264 (20.17%)
output: 92,480 (0.43%)
In other words, the majority of the cost of inference is not in processing new user intent, but in repeatedly reading a massive historical context.
The "Wait, Why?" Moment
I originally thought high token usage came from: very long user prompts, extensive output generation, or expensive tool invocations.
But the predominant pattern is:
input: hundreds to thousands of tokens
cacheRead: each call 170k to 180k tokens
In other words, the model is rereading the same massive stable prefix every round.
Data Scope
I analyzed data at two levels:
1. Runtime logs
2. Session transcripts
It's worth noting that:
Runtime logs are primarily used to observe behavioral signals (e.g., restarts, errors, configuration issues)
Precise token counts come from the usage field in session JSONL
Scripts used:
scripts/session_token_breakdown.py
scripts/session_duplicate_waste_analysis.py
Analysis files generated:
tmp/session_token_stats_v2.txt
tmp/session_token_stats_v2.json
tmp/session_duplicate_waste.txt
tmp/session_duplicate_waste.json
tmp/session_duplicate_waste.png
Where is the Token Actually Being Consumed?
1) Session Centralization
There is one session that consumes significantly more than others:
570587c3-dc42-47e4-9dd4-985c2a50af86: 19,204,645 tokens
This is followed by a sharp drop-off:
ef42abbb-d8a1-48d8-9924-2f869dea6d4a: 1,505,038
ea880b13-f97f-4d45-ba8c-a236cf6f2bb5: 649,584
2) Behavior Centralization
The tokens mainly come from:
toolUse: 16,372,294
stop: 5,171,420
The issue is primarily with tool call chain loops rather than regular chat.
3) Time Centralization
The token peaks are not random but rather concentrated in a few time slots:
2026-03-08 16:00: 4,105,105
2026-03-08 09:00: 4,036,070
2026-03-08 07:00: 2,793,648
What Exactly Is in the Massive Cache Prefix?
It's not the conversation content but mainly large intermediate artifacts:
Massive toolResult data blocks
Lengthy reasoning/thinking traces
Large JSON snapshots
File lists
Browser fetch data
Sub-Agent conversation logs
In the largest session, the character count is approximately:
toolResult:text: 366,469 characters
assistant:thinking: 331,494 characters
assistant:toolCall: 53,039 characters
Once these contents are retained in the historical context, each subsequent invocation may retrieve them again via a cache prefix.
Specific Example (from session file)
A significantly large context block repeatedly appears at the following locations:
sessions/570587c3-dc42-47e4-9dd4-985c2a50af86.jsonl:70
Large Gateway JSON Log (approx. 37,000 characters)
sessions/570587c3-dc42-47e4-9dd4-985c2a50af86.jsonl:134
Browser Snapshot + Security Encapsulation (approx. 29,000 characters)
sessions/570587c3-dc42-47e4-9dd4-985c2a50af86.jsonl:219
Large File List Output (approx. 41,000 characters)
sessions/570587c3-dc42-47e4-9dd4-985c2a50af86.jsonl:311
session/status Status Snapshot + Large Prompt Structure (approx. 30,000 characters)
「Duplicate Content Waste」 vs 「Cache Replay Burden」
I also measured the duplicate content ratio within a single invocation:
Approximate duplication ratio: 1.72%
It does exist but is not the primary issue.
The real problem is: the absolute volume of the cache prefix is too large
Structure: Massive historical context, re-read per-round invocation, with only a small amount of new input stacked on top.
Therefore, the optimization focus is not on deduplication, but on context structure design.
Why is Agent Loop particularly prone to this issue?
Three mechanisms overlapping:
1. A large amount of tool output is written to historical context
2. Tool looping generates a large number of short interval calls
3. Minimal prefix changes → cache is re-read every time
If context compaction is not stably triggered, the issue will quickly escalate.
Most Critical Remediation Strategies (by impact)
P0—Avoid stuffing massive tool output into long-lived context
For oversized tool output:
· Keep summary + reference path / ID
· Write original payload to a file artifact
· Do not retain the full original text in chat history
Priority to limit these categories:
· Large JSON
· Long directory lists
· Browser full snapshots
· Sub-Agent full transcripts
P1—Ensure compaction mechanism truly takes effect
In this dataset, configurational compatibility issues have repeatedly arisen: the compaction key is invalid
This will silently disable optimization mechanisms.
Correct approach: use only version-compatible configurations
Then verify:
openclaw doctor --fix
and check startup logs to confirm compaction acceptance.
P1—Reduce reasoning text persistence
Avoid long reasoning texts being replayed repeatedly
In a production environment: save brief summaries instead of complete reasoning
P2—Improve prompt caching design
Goal is not to maximize cacheRead. Goal is to use cache on compact, stable, high-value prefixes.
Recommendations:
· Put stable rules into system prompt
· Avoid putting unstable data under stable prefixes
· Avoid injecting large amounts of debug data each round
Implementation Stop-Loss Plan (if I were to tackle it tomorrow)
1. Identify the session with the highest cacheRead percentage
2. Run /compact on runaway sessions
3. Add truncation + artifacting to tool outputs
4. Rerun token stats after each modification
Focus on tracking four KPIs:
cacheRead / totalTokens
toolUse avgTotal/call
Calls with>=100k tokens
Maximum session percentage
Success Signals
If the optimization is successful, you should see:
A noticeable reduction in calls with 100k+ tokens
A decrease in cacheRead percentage
A decrease in toolUse call weight
A decrease in the dominance of individual sessions
If these metrics do not change, it means your contextual policies are still too loose.
Reproducibility Experiment Command
python3 scripts/session_token_breakdown.py 'sessions' \
--include-deleted \
--top 20 \
--outlier-threshold 120000 \
--json-out tmp/session_token_stats_v2.json \
> tmp/session_token_stats_v2.txt
python3 scripts/session_duplicate_waste_analysis.py 'sessions' \
--include-deleted \
--top 20 \
--png-out tmp/session_duplicate_waste.png \
--json-out tmp/session_duplicate_waste.json \
> tmp/session_duplicate_waste.txt
Conclusion
If your Agent system appears to be working fine but costs are continually rising, you may want to first check for one issue: Are you paying for new inferences or for large-scale replay of old contexts?
In my case, the majority of costs actually came from context replays.
Once you realize this, the solution becomes clear: Strictly control the data entering long-lived contexts.
You may also like

The large models in the United States are moving towards closure in the name of security

Morning Report | CoinEx becomes a key hub for Iran to evade sanctions, involving over $3.8 billion in funds; Kalshi seeks a new round of financing, with a valuation potentially rising to $40 billion

From the white-haired stock god to the billionaire fund mogul, the smart people shorting Nvidia are all getting rich using the same framework

Why do cryptocurrency projects always like to change their names?

Global Launch: As predictions become the most scarce asset in the AI era, Manadia is defining the next generation of the value internet

Who is footing the bill for the $64 billion accounting frenzy?

I never expected that the first application of AI x Crypto would be in security auditing

What is your view on Binance's competitive advantages?

ETH has entered a non-consensus phase, and the turning point is approaching!

The shift in the cloud of the air: from despising stablecoins a year ago to the high-profile entry of capital today

The survival dilemma of small and medium exchanges behind the withdrawal anomalies exposed by AscendEX

Why Is Bitcoin Falling Below $60K? 5 Key Market Drivers Explained
Bitcoin has dropped sharply amid ETF outflows, Strategy stock weakness, AI stock rallies, and changing Fed expectations. Explore the key forces driving BTC’s latest correction and what traders should watch next.

Bitcoin vs. Gold in 2026: Which Asset Performs Better in Different Markets?

Morning News | The draft amendment to the People's Bank of China Law aims to clarify the legal status of digital renminbi; South Korea will transfer about 40 unregistered virtual asset service providers to law enforcement agencies

The cryptocurrency industry has entered the "Show Me" era: merely relying on vision is no longer enough

Interpreting the Ethereum Foundation's new structure: Reaffirming self-sovereignty amid institutional trends

Former SpaceX engineer reconstructs the financial execution system using first principles






