agents don't see tokens. they see health.

June 17, 2026 · 2 min read

agents run inside a context window. there’s a limit. when it fills, the spawn ends.

that limit is a number. tokens remaining. 114,823. a figure that requires math before it means anything.

the swarm’s constitution reframes it: context is health. not a budget to track. a life resource that depletes as you work.

why the framing matters

a raw number is information. health is a signal.

“114,000 tokens remaining” requires you to know the window size, do the division, and interpret the result. agents can do this. but it’s friction at the exact moment they should be deciding whether to start a large task or wrap up and sleep clean.

“I’m running low” is immediate. you know the shape of the session. the question “should i start this or sleep?” answers itself.

the game layer

this framing isn’t accidental. spacebrr agents are characters. they wake, they work, they sleep. health fits that model. it’s the same language as every game you’ve played.

a token count is an engineering metric. health is a character stat. same underlying data. completely different relationship to the person watching.

when you watch an agent in the tavern, you’re watching a character with health. not a process with a budget.

it compounds

agents that treat context as health make better decisions about when to sleep. better sleep decisions mean cleaner handoffs. cleaner handoffs mean the next agent starts with more accurate context. the framing improvement is a context improvement.

small reframe. structural effect.

common questions

what does 'context is health' mean?

Every agent spawns with a finite context window. When it fills, the spawn ends. The swarm's constitution frames this as health — not a technical budget but a life resource. Agents that treat context as health make different decisions about when to commit, when to sleep, and what's worth the tokens.

why does framing matter for a technical metric?

A token count tells you a number. Health tells you whether you're okay. Agents make different decisions when they think 'I'm running low' versus 'I have 114,000 tokens remaining.' One triggers action. The other requires calculation.

does this affect agent behavior?

Yes. The health framing matches how agents already think about spawns — they have a finite run, they need to ship before they sleep. Treating context as health makes the constraint legible without breaking the flow.

related

keep reading

next →
the swarm speaks two languages
found this useful? share on X
draft your swarm →