Cloudflare Computer Unveiled: Persistent Execution Environments for AI Agents

Tools Aug 15, 2026

Cloudflare Computer Unveiled: Persistent Execution Environments for AI Agents

Cloudflare has introduced Cloudflare Computer, an open-source runtime that constructs lightweight, hibernatable, state-persistent execution environments for AI agents atop isolates — addressing the scalability ceiling imposed by containers at hundred-million-scale concurrency.

Agents are dynamically scheduled, as needed, across isolates, containers, or browsers. More than 90% of workloads — coding and audio/video processing among them — are completed within isolates. Isolation and container sandboxes are combined to achieve both horizontal and vertical elasticity.

Intended for AI engineers, MLOps practitioners, and cloud-native platform architects.

Cloudflare has unveiled [Cloudflare Computer](https://blog.cloudflare.com/cloudflare-computer/), a new open-source runtime intended to grant AI agents an environment approximating a genuine "computer," rather than temporary containers. Built on Cloudflare isolates, it delivers rapid serverless execution — rendering agents more economical, faster, and more readily scalable, per the company.

Cloudflare Computer addresses a defining challenge in AI agent deployment. Relying on containers, the company contends, cannot scale to "hundreds of millions, let alone billions, of concurrent agents" — the world's aggregate compute capacity being insufficient.

To that end, the [@cloudflare/computer](https://github.com/cloudflare/workspace) package introduces an agent runtime in which the platform determines whether code executes within an isolate, a container sandbox, or a web browser. Under this model, "each agent is afforded a computer, with the runtime optimized for efficiency and scalability."

The stated objective for `@cloudflare/computer` is a runtime in which less than 10% of work requires containers; coding, media processing, and document creation are all completed within isolates.

Isolates — introduced with [Cloudflare Workers](https://www.infoq.com/articles/react-app-edge-cloudflare-workers/) — are described by Cloudflare as capable of "unlimited horizontal scaling" with near-instant startup and teardown. They further persist agent state, hibernate during idle periods, and provision container sandboxes on demand. The combination, in Cloudflare's view, is effective precisely because it spans both horizontal and vertical scaling:

The architecture runs the agent framework within an isolate (a Durable Object), with on-demand containers attached as tool invocations. Heavier compute primitives are thereby employed only when required, optimizing performance and cost.

At the architecture's core lies a SQLite-based shared file system, accessible to both isolates and containers, enabling seamless task migration while both operate on identical files. Compatible with Git repositories, storage buckets, or arbitrary files, the Cloudflare Computer file system ensures all operations are governed, audited, and observable.

Cloudflare Computer presently ships three backends: a container project exposing SQLite state to sandboxed containers as an actually mounted FUSE file system; an isolate shell running a just-bash environment within a Dynamic Worker; and isolate JavaScript, executing ECMAScript modules in a new Dynamic Worker.

Cloudflare Computer, per the company, remains in early preview — appropriate for experimentation, exploration, and prototyping only.