Terse logo

Terse

Archives
Log in
Subscribe
July 24, 2026

Keep your main thread cheap with subagents

T
TERSEISSUE 009 · AUGUST 2026

THE TERSE LETTER · 4 MIN READ

Keep the main thread
cheap with subagents

Offload the messy searching. Bring back only the answer. Your context stays lean.

The most expensive thing in a long coding session is the main context window — because everything in it is re-billed every single turn.

Subagents are the fix: they do the noisy work in their own throwaway context and hand back only the conclusion. Here's the pattern.

01The problem with searching inline

A grep can dump 10K tokens you keep forever.

Search the codebase in your main thread and every match, every file excerpt, every false hit lands in your window — and stays. You wanted one answer; you're now carrying the entire search.

Codebase-wide search · context impact

Inline search11K tokens kept
 
Subagent400 tokens kept
  
→ Across a heavy session, roughly $150/year.
02The pattern

Fan out the mess. Keep only the answer.

Hand broad searches and multi-file sweeps to a subagent. It reads dozens of files in its own context, then returns a one-paragraph conclusion. Your main thread never sees the raw dump — and never pays to re-read it.

✗ MAIN-THREAD COST

All grep matches
Every file excerpt
False positives
Re-billed each turn

✓ SUBAGENT COST

Just the conclusion
One short summary
Noise discarded
Paid once
Terse floating optimizer bar

Terse shows per-source token use so you can see your main thread staying lean.

03Action items

Three things to do right now.

1

Delegate broad searches

"Find where X is configured" across many files? Send it to a subagent, not your main thread.

2

Ask for conclusions, not dumps

Tell the subagent to return the answer and the file:line — not the raw matches.

3

Track it in Terse

Watch the agent source in Statistics to confirm your main context stays small.

Download Terse — free to start →

macOS · Free forever tier · 1,500 optimizations/week

NEXT WEEK

Real numbers from real users. Next issue I'm sharing anonymized savings from Terse users — including one team that cut their monthly AI bill by four figures.

Until then — stay terse.

— James
Builder of Terse · terseai.org

You're getting this because you subscribed at terseai.org. One email per week. No spam, ever.

Don't miss what's next. Subscribe to Terse:
← Newer One team cut their AI bill by $1,400/mo Older → Why “the” is 1 token and “ChatGPT” is 2
Twitter
terseai.org
Powered by Buttondown, the easiest way to start and grow your newsletter.