Scaling Managed Agents: Decoupling the brain from the hands
Separating the brain (Claude + harness), hands (stateless containers), and session (durable append-only event log) into independent components with thin interfaces reduced p50 latency by ~60% and p95 by over 90% by letting containers be provisioned on demand and failed harnesses recover without losing session state.
Architecture and design guidance: one of the clearest accounts of how agentic system design is evolving in production. The stateless container-as-tool abstraction, the event log as single source of truth, and the concrete latency numbers make this immediately applicable. The principle that 'harnesses encode assumptions about the model that go stale as models improve' is a useful warning for anyone building and maintaining agent infrastructure — abstract the interface, not the implementation.