A quiet but significant announcement came out of Cloudflare this week. The company introduced @cloudflare/computer, an open-source package that gives AI agents their own virtual computer to work with, complete with a filesystem, shell access, and the ability to run code across multiple execution environments simultaneously.
The tagline from Cloudflare’s blog puts it simply: “Your agent needs a computer, not a container.”
It sounds like developer tooling jargon. But the idea behind it touches on one of the most pressing infrastructure problems in AI right now, and for founders building AI products in the Middle East and beyond, understanding it matters more than it might initially appear.
The Problem That Nobody Is Talking About Loudly Enough
To understand what Cloudflare built, you first need to understand why the current approach to running AI agents at scale is running into a wall.
Most capable AI agents today work by being given access to a computer: a filesystem, a shell, the ability to install packages and run code. Coding agents like Claude Code, Cursor, and similar tools work this way. You give the model an environment to operate in, and it inspects that environment, makes changes, tests its work, and keeps going until the task is done.
The standard way to provide that environment has been containers, isolated Linux environments that give each agent its own slice of compute. This works fine for small deployments. But Cloudflare’s engineers have identified a fundamental scaling problem: there is not enough compute on the planet to give every user’s agent its own containerized environment if AI agents go mainstream.
Think about what that means in practice. If every enterprise deploys AI agents for every employee, and every consumer app gives users personal agents to handle tasks, the number of concurrent agent environments needed reaches hundreds of millions, then billions. Running a full container for each one is computationally prohibitive. It’s not just expensive. It’s physically impossible given current infrastructure.
McKinsey reports that about 62% of organizations are already experimenting with or piloting AI agents, with 23% scaling them in at least one business function. AI workloads are projected to make up 71% of data center demand by 2030. The gap between current container-based approaches and the compute those projections imply is enormous.
This is why Cloudflare framed the problem explicitly: “Across all the clouds, all the hyperscalers, there’s nowhere near enough compute in the world for every company to give each of their users’ agents their own containerized compute environment.”
Cloudflare’s Bet: Isolates, Not Containers
Cloudflare’s answer draws on a bet the company made almost ten years ago when it launched Cloudflare Workers.
Workers use a different model than containers. Instead of spinning up a full operating system environment for each workload, they use “isolates”: lightweight JavaScript execution environments that start in milliseconds, use a fraction of the memory a container requires, and can scale horizontally to millions of concurrent instances.
The trade-off has always been capability. Isolates are fast and cheap but can’t run arbitrary Linux programs or install native binaries. Containers are more capable but heavy, slow to start, and resource-intensive.
@cloudflare/computer’s insight is that most of what an AI agent actually does doesn’t require a full container. Reading files, writing code, processing data, managing git repositories, manipulating text, these tasks can run in lightweight isolates. Only specific operations, installing npm packages, running native binaries, executing Linux commands, require a full container environment.
So @cloudflare/computer gives an agent both. A shared filesystem sits at the center, backed by SQLite and accessible from both execution environments. The agent can run fast, cheap isolate operations for the majority of its work and spin up a container only when it genuinely needs one. Cloudflare’s own benchmarks aim for containers being required for less than 10% of an agent’s tasks.
The result is an architecture where the agent harness (the reasoning loop) runs in a Durable Object, infinitely scalable horizontally, while the container provides vertical compute on demand only when necessary. Horizontal scale for the intelligence. Vertical scale only when the task demands it.
What Developers Actually Get
For developers building AI-powered products, @cloudflare/computer provides a few concrete things.
A virtual filesystem that works like a real one: readable, writable, and editable by the agent with built-in git support so you can clone repositories directly into the workspace. All operations are gated, audited, and observable, giving developers a clear record of every action the agent took.
An AI toolkit with standard tools: read, write, edit, list directory, and execute shell commands. The execute tool is the clever part. It accepts a “backend” argument and lets the AI model decide whether to run a task in the fast isolate environment or the fully featured container. Cloudflare reports that frontier AI models are already very good at making this decision correctly.
Installation is a single npm command, and the package works on any Cloudflare Durable Object. The code examples in the blog post show a bug triage agent that clones a repository, reads a bug report, reproduces the issue, and fixes the code, all orchestrated through the @cloudflare/computer workspace.
This is not a theoretical demo. Cloudflare says its own teams are already using agents exclusively powered by isolates to build, test, and deploy JavaScript applications, generate customer documentation, and use web browsers to perform complex tasks.
Why This Matters Beyond the Technical Details
The deeper significance of @cloudflare/computer isn’t the specific technology. It’s what it represents in the competition for where AI agent infrastructure is built and deployed.
The AI agent execution layer is rapidly becoming its own infrastructure category. Startups like Browserbase, E2B, and Modal have raised hundreds of millions of dollars building specialized agent runtime infrastructure. Amazon, Google, and Microsoft are all competing to be the cloud provider where enterprise AI agents run. The agent runtime market is moving faster than almost any infrastructure category in history.
Cloudflare’s move positions its network, spanning 330 cities in over 100 countries, as the natural substrate for deploying AI agents that need to run close to users. An agent managing tasks for a user in Dubai doesn’t need to route its compute through a data center in Virginia. With Cloudflare’s globally distributed infrastructure, that agent can run in a data center nearby, reducing latency and improving performance.
For the Middle East specifically, Cloudflare has data centers in the UAE, Saudi Arabia, Kuwait, Qatar, Bahrain, Jordan, Egypt, and Pakistan. This matters increasingly as GCC governments push for data sovereignty and companies face pressure to keep AI processing within regional boundaries. Infrastructure that puts agent compute at the edge, close to users, aligns with both the technical requirements of responsive AI products and the regulatory preferences of regional authorities.
The Startup Opportunity
For founders building AI products in MENA and GCC, the infrastructure decisions being made right now about where and how AI agents run will shape the competitive dynamics of the next five years.
A few things are worth paying attention to.
The agent runtime layer is commoditizing faster than most people expect. When Cloudflare ships an open-source package that provides the core primitives of an agent runtime, the cost of building agent-powered products drops significantly. The differentiation shifts up the stack: to the specific workflows, data, and domain expertise your product applies AI to, rather than the infrastructure underneath it.
The compute efficiency problem is real and creates startup opportunities. The gap between the compute AI agents theoretically need and the compute that actually exists is enormous. Companies that figure out how to run agents more efficiently, whether through better orchestration, smarter task routing, or novel execution models, will be able to offer lower costs and better performance than incumbents relying on brute-force containerization.
Edge deployment is increasingly important for enterprise AI. As companies become more comfortable deploying AI agents to handle sensitive tasks, the ability to run those agents inside regional infrastructure with guaranteed data residency will become a competitive requirement rather than a nice-to-have. Regional cloud and infrastructure providers that can offer this capability are positioned well.
The CPU story is as important as the GPU story. Most of the attention in AI infrastructure has focused on GPU compute for training and inference. But agentic workloads place heavy demands on CPU for orchestration: spinning up sub-agents, managing state, routing between different execution environments, handling tool calls. The Cloudflare approach, which optimizes CPU-intensive orchestration through isolates, addresses a bottleneck that GPU-focused infrastructure conversations often ignore.
The Competitive Context
@cloudflare/computer enters a market with established players. E2B offers sandboxed code execution for AI agents and raised $22 million in seed funding in 2024. Modal provides serverless infrastructure specifically designed for AI workloads. Browserbase focuses on giving agents access to web browsers at scale.
What Cloudflare brings that these specialists don’t have is distribution. Cloudflare already has relationships with millions of developers who use its network for DNS, security, and performance. The Workers and Durable Objects platform already has a large developer base. @cloudflare/computer extends an existing ecosystem rather than asking developers to adopt entirely new infrastructure.
The open-source release is also deliberate. By releasing the package publicly and inviting developers to experiment and contribute, Cloudflare is following the playbook that made Kubernetes and other infrastructure projects successful: build a community around the technology before monetizing it, and let adoption pull the commercial products along.
What’s Next
Cloudflare describes @cloudflare/computer as an “early preview” and has signaled several directions for future development. The goal of having containers required for less than 10% of agent work is clearly stated but not yet achieved. Getting there will require expanding what isolates can do, improving the just-bash JavaScript translation layer, and developing richer tooling for common agent use cases like document processing, audio and video manipulation, and complex data transformation.
The browser integration is also explicitly mentioned as a current capability that will expand. Agents that can browse the web, interact with web applications, and extract information from pages add a new dimension to what automated workflows can accomplish.
For the broader ecosystem, @cloudflare/computer represents infrastructure for a generation of AI products that haven’t been built yet. The agents that will become everyday tools for knowledge workers, the workflows that will handle complex business processes, the applications that will make AI capabilities accessible to users without technical backgrounds: all of these will run on infrastructure that is being figured out right now.
Cloudflare’s bet is that the right substrate for that future is not a container for every agent, but a computer for every agent, running efficiently at the edge, close to users, in a form that can actually scale to billions of concurrent instances when the demand arrives.
Given how the AI adoption curve has moved in the past two years, that demand may arrive sooner than most infrastructure teams are prepared for.
@cloudflare/computer is available as an open-source early preview on GitHub at github.com/cloudflare/computer. It was announced as part of Cloudflare’s Agents Week on August 3, 2026.
You may also like
-
AI Shopping Startup Phia, Co-Founded by Phoebe Gates, Faces Scrutiny Over Affiliate Tracking Practices
-
Wikipedia’s AI Writing Guide Is the Best Prompt Engineering Resource Nobody’s Talking About
-
Netflix Paid $587 Million for Ben Affleck’s AI Startup. Here’s Why It Actually Makes Sense.
-
Anthropic’s New AI Jobs Report: Why the Middle East Should Pay Attention
-
Pakistani AI Startup Virtuans Gets Acquired by US Firm AutoAcquire in Seven-Figure Deal
