- What is Cloudflare OS, in one sentence?
- It is an open-source workspace that gives each person in a company an AI agent grounded in that company's context, plus the ability to build small applications, with a security layer that lets the agent reach internal systems without ever holding a credential. Cloudflare open-sourced it on 5 August 2026 under Apache-2.0 after running it internally since May 2026.
- Is it an operating system?
- Not in the kernel-and-drivers sense, and Cloudflare is fairly upfront about the analogy. The claim is that it schedules and isolates AI workloads and mediates their access to resources, which is the job a traditional OS does for processes. Treat the name as positioning. The useful question is whether the isolation and mediation are real, and on that the architecture is more serious than the name suggests.
- What does it actually cost to run?
- The software is free and Apache-2.0. The infrastructure is not: Gadgets run on Dynamic Workers, which require a Cloudflare Workers Paid plan, so the free tier cannot run this. On top of that you pay for inference, which flows through AI Gateway where an administrator sets budgets and can attribute spend per person, team, or workspace. The honest budget line is Workers Paid, plus Durable Objects storage, plus whatever your model calls cost.
- How is this different from giving everyone ChatGPT or Claude?
- A general assistant knows the world and nothing about your company. Cloudflare OS is built around the opposite bet: the agent is grounded in your terminology, your procedures, and your systems, and it can act on them through mediated access. The trade is that somebody has to build and maintain that grounding, the gatekeepers, and the skills library. This is a platform, not a subscription.
- Is the security model actually sound?
- The design is stronger than most: default deny, capability bindings instead of shared keys, per-resource scoping with human approval, and taint tracking that re-checks a recipient's access when work is shared. Two honest caveats. Cloudflare describes the taint-tracking and approval systems as still evolving, and the sandbox is a V8 isolate rather than a container, which is a different threat model from a VM. It removes the worst practice in the field, which is handing an agent a long-lived API key.
- Can non-developers really build apps with it?
- That is the design goal, and Cloudflare reports thousands of internal users across non-engineering functions. The realistic reading is that non-developers can produce genuinely useful small tools: a tracker, a dashboard, a form that writes to a real system. What they cannot do is own the gatekeepers, the access policy, or the deployment, which is exactly the work that decides whether the whole thing is safe.
- Should we deploy it now or wait?
- It depends on why you want it. If the goal is to learn what agent-plus-internal-systems does to your workflows, deploy the starter into a non-production account this quarter, wire two gatekeepers, and find out. If the goal is a company-wide rollout on regulated data, wait for the managed dashboard offering and treat the current release as a design study. Cloudflare's own README calls v2 early access with many rough edges, and we take that at face value.