
TL;DR
Cloudflare's Agents Week opens with @cloudflare/computer, an open-source agent runtime where an SQLite-backed workspace gives every agent a shared filesystem and lets the model pick between fast isolates and full Linux containers per task. The bet: containers for under 10% of agent work.
Cloudflare opened its Agents Week on August 3 with a different bet than its peers: instead of giving every agent a container, it gave every agent a filesystem and a choice of execution engines. The early preview of @cloudflare/computer, an open-source agent runtime, is built around one argument: the world does not have enough container compute for billions of concurrent agents, so the container should be the occasional tool, not the permanent home.
The package is installed with npm install @cloudflare/computer and runs on any Durable Object. Its centerpiece is a Workspace: a virtual filesystem backed by SQLite that can be populated from git repos, storage buckets, or plain files. All read, write, edit, and shell operations on that filesystem are gated, audited, and observed, so the agent leaves a paper trail of what it changed.
The key architectural move is separating the agent loop from its execution environment. The harness runs in an isolate (the "brain"), and two execution backends provide the "hands":
Both backends implement the same exec(string, options) interface, and both work against the same files. The agent is handed an AI SDK-compatible toolset (read, write, edit, ls, exec), where exec takes a backend argument. The tool description tells the model when to reach for the container: file manipulation, data processing, and git operations run in the cheap isolate; anything that needs a real Linux userland falls back to the container. Cloudflare says frontier models are "very good" at making that call correctly.
The positioning is explicit about the cost logic. Spinning up a container per user per agent "will not scale to hundreds of millions, then billions, of concurrent agents" - which is why the industry is scrambling for CPU compute, not just GPUs. Cloudflare's answer is the bet it has been making since Workers: isolates that spin up fast, hibernate when idle, store state, and scale horizontally. Last year it gave isolates the ability to attach container sandboxes on demand; @cloudflare/computer is the packaging of that pattern into a reusable runtime. Their stated target: a container is needed for less than 10% of an agent's work, with coding tasks, document creation, and media manipulation handled by isolates.
From the archive
Aug 3, 2026 • 7 min read
Aug 3, 2026 • 8 min read
Aug 3, 2026 • 8 min read
Aug 3, 2026 • 10 min read
This is the second major "sandbox as a product" play in a week, and the philosophies are nearly opposite. Vercel's sandbox multi-agent isolation starts from containers and isolates agents inside them; @cloudflare/computer starts from isolates and treats the container as a fallback runtime. Both are answering the same question: what does an agent actually need to act on the world? Cloudflare's answer is a filesystem contract plus pluggable execution, which is a deliberately thin abstraction - the workspace API is a node:fs-compatible wrapper, so third-party JavaScript libraries can use it without adapters.
Two details are worth watching. First, the workspace is durable by default because it lives in Durable Object storage, which removes the cold-start state problem that plagues ephemeral sandboxes. Second, the whole thing is open source from day one, positioned explicitly as "an experiment to learn with our customers," which suggests Cloudflare is gathering usage data on what percentage of agent work actually needs containers before committing to primitives.
If you build agents on Workers, this replaces a chunk of custom plumbing: instead of writing your own sandbox orchestration, you get the workspace, the toolset, and the backend selection in one package, with examples for wiring it into @cloudflare/think agents and raw model loops. If you build agents elsewhere, the idea is the portable one: a shared, audited filesystem with a graded set of execution runtimes is a cheaper default than a container per agent. Given container boot times, per-second billing, and the horizontal-scaling ceiling, the "container only when needed" pattern is likely to show up in more harnesses over the next few quarters - the compute constraint is real for anyone running agents at scale, not just Cloudflare.
Read next
GitHub's latest agent workspace trend points at a boring but important primitive: agents need explicit filesystem contracts before they get more tools.
8 min readA builder's guide to picking a code-execution sandbox for AI agents - E2B, Daytona, Modal, Cloudflare Sandbox, and Vercel Sandbox compared on isolation, latency, state, and pricing model.
7 min readAI agents are getting their own computers. Here is how to choose a sandbox architecture: filesystem isolation, network policy, secrets boundaries, snapshots, and when shell access is overkill.
8 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Open-source terminal agent runtime with approval modes, rollback snapshots, MCP servers, LSP diagnostics, and a headless...
View ToolFrontend stack for agent-native apps. React hooks, prebuilt copilot UI, AG-UI runtime, frontend tools, shared state, and...
View ToolSelf-healing browser automation harness that lets LLMs complete any browser task. 5,000+ stars in under a week.
View ToolOpen-source cloud sandboxes for AI agents. Isolated environments that start in under 200ms, run code in Python, JavaScri...
View ToolGive your agents a filesystem that branches like git. Crash-safe by default.
View AppSpec out AI agents, run them overnight, wake up to a verified GitHub repo.
View AppDescribe your company and agent teams handle operations.
View AppSpawn isolated workers with independent context windows.
Claude CodeConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsWhat MCP servers are, how they work, and how to build your own in 5 minutes.
AI Agents
Check out Trae here! https://tinyurl.com/2f8rw4vm In this video, we dive into @Trae_ai a newly launched AI IDE packed with innovative features. I provide a comprehensive demonstration...

Buzz by Block: Open-Source Slack-Style Collaboration for Humans + AI Agents (Demo & Setup) Check out Arcade: https://arcade.dev.plug.dev/xiDRwlA Repo: https://github.com/block/buzz The video introd...

Build Anything with Vercel, the Agentic Infrastructure Stack Check out Vercel: https://vercel.plug.dev/cwBLgfW The video shows a behind-the-scenes walkthrough of how the creator rapidly builds and d...

GitHub's latest agent workspace trend points at a boring but important primitive: agents need explicit filesystem contra...

A builder's guide to picking a code-execution sandbox for AI agents - E2B, Daytona, Modal, Cloudflare Sandbox, and Verce...

AI agents are getting their own computers. Here is how to choose a sandbox architecture: filesystem isolation, network p...

Cloudflare's Agent Memory primitive. What it stores, latency profile, how it compares to mem0, and how to wire it into y...

Durable execution lands on Vercel. What it means for agents, long-running flows, and indie dev stacks - with code, gotch...

Cloudflare moved cdnjs, the open-source CDN behind ~12% of the web, entirely onto Workers, Workflows, R2, and Queues. Th...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.