Sign InOpen Brain
CursorEngineering PostOfficial Source

Improved token efficiency for longer agent runs

Cursor cut agent token cost by shrinking static instructions, loading tools on demand, improving cache boundaries, and using subagents more selectively.

Cursor · Sep 23, 2026
Open Source Open MarkdownOpen JSON
Source Summary

Cursor reports **7% lower user token costs** without reduced agent quality after trimming its system prompt by about **66%**, cutting built-in tool descriptions in static context by **60%**, and reducing cold cache misses by **20%**.

Practical Implication

Harness builders should keep only frequently needed tools in static context, place variable setup after stable cache boundaries, reduce incidental file-read overhead, and delegate when context isolation outweighs coordination cost.

Agent-Ready Context
Cursor reports **7% lower user token costs** without reduced agent quality after trimming its system prompt by about **66%**, cutting built-in tool descriptions in static context by **60%**, and reducing cold cache misses by **20%**.

Harness builders should keep only frequently needed tools in static context, place variable setup after stable cache boundaries, reduce incidental file-read overhead, and delegate when context isolation outweighs coordination cost.

These results come from Cursor production traffic and A/B tests, so they may not transfer directly to another request mix. The post also warns that subagents can duplicate work when isolated contexts lack coordination.
Connected Context · Feed7 Judgment

This adds production A/B evidence that substantial harness savings can come from shrinking static instructions, tool schemas, and cache misses without changing models. It reinforces deliberate compaction and selective context loading, while narrowing the case for subagents: isolation can save context, but poor coordination may duplicate work and erase those gains.

Anthropic's CCA Exam as a Field-Guide for Agentic Engineering — Frank Coyle, UC BerkeleyCursor’s measured reductions provide empirical support for deliberate compaction and narrow subagent scope, while replacing the candidate’s example token trigger with workload-specific optimization evidence.Agent swarms and the new model economicsBoth indicate that context topology can matter more than model choice, but the new warning about duplicated work qualifies the swarm result by making coordination quality part of the efficiency calculation.WorldFlowAI/everything-claude-codeThe repository’s warning against loading an entire harness catalog is reinforced by Cursor’s finding that trimming static prompts and built-in tool descriptions reduced user token costs.It’s Tokens All The Way Down: How RLMs are Different — Kevin Madura, AlixPartnersRLM-style programmatic selection is a complementary response to context cost: Cursor minimizes always-present harness context, while RLMs keep large task inputs outside direct attention and inspect selected portions.
Context Map
agentcoding#harness-engineering#context-caching#subagents
Uncertainty
These results come from Cursor production traffic and A/B tests, so they may not transfer directly to another request mix. The post also warns that subagents can duplicate work when isolated contexts lack coordination.