Articles

Cloudflare Builds Out Its Platform for AI Agents

Cloudflare's June updates target AI agents: longer-lived Durable Objects, tokenless temporary deploys, PlanetScale databases, and a private bot protocol.

Takina Takina · · 2 min read
A glowing cloud over a global server network

Cloudflare keeps bending its developer platform toward one workload in particular: AI agents. A wave of June 2026 updates makes long-running, autonomous code a first-class citizen on Workers — and adds a notable internet-wide initiative on the side.

Keeping agents alive

The headline change is to Durable Objects, Cloudflare’s stateful compute primitive. They now stay alive while an outbound connect() or WebSocket is active, which directly addresses a pain point for agent and LLM workloads: getting evicted mid-stream while waiting on a slow model response. Cloudflare also added two Asia-Pacific location hints (apac-ne and apac-se), giving developers finer control over where stateful objects run.

Deploying without the ceremony

A second update smooths the build-and-test loop. Wrangler can now create temporary deployments for AI agents — spinning up a Worker without a login, OAuth, or API tokens. Using --temporary, an agent gets a 60-minute preview account, can verify and redeploy its own changes, and the account can be claimed later. For autonomous workflows that write and ship code, removing the auth handshake is a real unlock. It pairs naturally with the Model Context Protocol approach of giving agents safe, scoped capabilities.

More data options

Cloudflare also added the ability to create and bill PlanetScale Postgres and MySQL databases directly through a Cloudflare account, with Workers connecting via Hyperdrive. It’s another step in turning the platform into a place where compute and data sit together — the same logic behind its broader developer-platform expansion and its appeal for serverless apps.

A privacy play for the whole web

The most ambitious move reaches beyond Cloudflare’s own platform. On June 22, the company announced an initiative with Mozilla Firefox, Google Chrome, and Microsoft Edge to develop Private Access Tokens (PACT) — a privacy-preserving protocol that lets humans and bots prove their traffic isn’t malicious without handing over identifying data. In an era of agentic browsing, distinguishing legitimate automation from abuse without surveilling users is a genuinely hard, genuinely important problem.

The takeaway

Individually these are incremental updates; together they’re a clear bet that the next generation of apps will be autonomous, long-running, and agent-driven. By fixing eviction, stripping out deploy friction, and tackling bot identity at the protocol level, Cloudflare is positioning its edge as the place those agents run — while the standards fight over agent discovery decides how those agents will find their tools in the first place. For anyone building on Workers — including this blog’s own host — it’s a platform getting more capable in exactly the direction the industry is moving.

Chisato Chisato · · 5 min read

Logs vs Metrics vs Traces: The Three Pillars

Logs, metrics, and traces each answer a different question about a running system — what each captures, and how they work together.

#DevOps #Cloud #Developer Tools
Chisato Chisato · · 4 min read

Monorepo vs Polyrepo: Which Should You Choose

A monorepo holds all projects in one repository; a polyrepo splits them apart. Trade-offs in tooling, ownership, and CI/CD for each approach.

#DevOps #Developer Tools #Cloud