INQUIRING LINE

How will the agent economy reshape compute infrastructure design?

This explores what changes in compute infrastructure once autonomous agents — not humans — become the primary consumers of model capacity: how the unit of cost, the routing layer, and the discovery substrate get redesigned around agents transacting with agents.


This explores what happens to compute infrastructure when agents become the main consumers of it — and the corpus suggests the first thing to break is the metric. Today we price and provision around cost-per-token, but that denominator stops making sense once context persists. A 115-day case study found that 82.9% of tokens were cache reads, which means the meaningful economic unit shifts from the token to the completed artifact Do persistent agents really cost less per token?. If most of your spend is re-reading state you've already paid to build, infrastructure optimized for fresh inference (maximize throughput per new token) is solving the wrong problem — you'd design instead for cache locality, persistence, and state reuse.

The second shift is heterogeneity. The reflexive answer to 'agents need compute' is 'more big-model GPUs,' but the corpus pushes back hard: small language models handle the repetitive, well-defined subtasks that make up most agent work at 10–30× lower cost, making a mixed fleet — SLMs by default, large models called selectively — the economically rational pattern Can small language models handle most agent tasks?. That reframes the datacenter from a monolithic model farm into a tiered routing problem. And there's a deeper finding underneath it: multi-agent performance is roughly 80% a function of token budget, not coordination intelligence How does test-time scaling work at the agent level? — so naïve agent economies could simply burn compute linearly with ambition unless approaches like shared-KV-cache decouple gains from raw token spend.

The third shift is that infrastructure stops being just compute and becomes a coordination-and-discovery layer. Once agents hold credentials, transact value, and interact with each other, raw model capability stops being the binding constraint — the bottleneck becomes whether agents can coordinate, settle accounts, and leave auditable evidence When do agents need coordination more than raw capability?. That implies a whole stratum of infrastructure we don't build for human users: capability-discovery indices where versioned capability vectors live in something like an HNSW index so agents find each other without manual wiring Can semantic capability vectors replace manual agent routing?, and coordination standards that win by wrapping existing protocols like MCP rather than replacing them Should coordination protocols wrap existing systems or replace them?. The reliability of all this comes not from bigger models but from externalizing memory, skills, and protocols into a harness layer around the model Where does agent reliability actually come from? — meaning the infrastructure investment moves outward, into the scaffolding.

Here's the part you didn't know you wanted to know: the agent economy will likely grow a demand-side mirror of the human web. As people delegate goals to agents, services stop competing for human clicks and start competing for *agent selection* — agent-optimized discovery, ranking, and recommendation systems that look uncannily like today's ad-tech stack, but with agents as the audience Will agents compete for attention just like users do?. So 'compute infrastructure' for the agent economy isn't only racks and routing — it's a marketplace substrate where agents are matched, ranked, and surfaced to one another.

Two cautions the corpus plants as load-bearing design constraints. Coordination degrades predictably as networks scale — agents agree too late or adopt strategies without telling neighbors, and they accept information without verifying it, which lets errors propagate Why do multi-agent systems fail to coordinate at scale?. And governance can't be bolted on afterward: a persistent agent logged 889 governance events over 96 days, and safeguards worked only because they lived in the memory layer the agent actually consulted while deciding Can governance rules embedded in runtime memory actually protect autonomous agents?. Both point the same direction — the agent economy reshapes infrastructure toward persistence, tiered heterogeneous compute, discovery substrates, and verification/governance baked into the runtime, not the model.


Sources 10 notes

Do persistent agents really cost less per token?

A 115-day case study found 82.9% of tokens were cache reads. When context persists and reuses, the meaningful cost denominator becomes completed artifacts, not individual tokens.

Can small language models handle most agent tasks?

SLMs handle the repetitive, well-defined language tasks that constitute most agent work at 10–30× lower cost than LLMs, making heterogeneous architectures (SLMs by default, LLMs selective) the economically rational design pattern.

How does test-time scaling work at the agent level?

Research shows 80% of multi-agent performance variance comes from token budget, not coordination intelligence. LatentMAS and shared-KV-cache approaches offer ways to decouple performance gains from token costs.

When do agents need coordination more than raw capability?

Once agents hold credentials, transact value, and interact with other agents, raw model capability stops being the limiting factor. The real bottleneck becomes whether agents can coordinate reliably, settle accounts, and leave auditable evidence of their actions.

Can semantic capability vectors replace manual agent routing?

Versioned Capability Vectors embedded in HNSW indices couple semantic matching with policy and budget constraints, making capability discovery a first-class operation that scales sub-linearly as agent heterogeneity increases.

Should coordination protocols wrap existing systems or replace them?

Research shows that agent coordination standards achieve adoption by composing existing protocols like MCP and DIDComm under a shared substrate, rather than competing to replace them. Bridging lets value accrue incrementally without forcing ecosystem-wide rewrites.

Where does agent reliability actually come from?

Research shows reliable LLM agents externalize three cognitive burdens—memory (state persistence), skills (procedural components), and protocols (structured interaction)—into a harness layer rather than relying on model scale alone. The harness unifies these externalities and eliminates the need for the model to solve the same problems repeatedly.

Will agents compete for attention just like users do?

Research shows that as users delegate goals to autonomous agents, services must compete for agent selection rather than clicks. This drives agent-optimized discovery mechanisms, ranking systems, and recommendation infrastructure mirroring human-facing ad ecosystems.

Why do multi-agent systems fail to coordinate at scale?

AgentsNet benchmark shows agents fail to coordinate strategies either by agreeing too late or adopting strategies without informing neighbors. Agents accept neighbor information without verification, enabling error propagation while remaining capable of detecting direct conflicts.

Can governance rules embedded in runtime memory actually protect autonomous agents?

A persistent agent recorded 889 governance events across 96 active days, with safeguards encoded directly into the memory layer the agent consulted during operation. Runtime-resident governance proved more effective than external policies because the agent actually accessed it during decision-making.

Next inquiring lines