--temporary flagAny agent with Wrangler 4.102.0 or later installed can deploy by running:
wrangler deploy --temporaryThe agent does not need to have run wrangler login--temporary flag .
When the flag is used, Cloudflare automatically creates (or reuses) a temporary preview account on the backend. The Worker is deployed to a workers.dev URL, and Wrangler prints a unique claim URL .
The temporary deployment stays live for 60 minutes . During this window, anyone with the claim URL can preview the Worker. If no one claims it within the hour, the deployment and its associated resources expire automatically
.
To make the deployment permanent, a human opens the claim URL and signs in to (or creates) a Cloudflare account. Once claimed, the Worker and its resources are transferred to that account . Cloudflare's documentation specifies that the deployment is intended as a preview flow, not a permanent account setup
.
If the deployment is not claimed, Cloudflare handles cleanup automatically — no dangling infrastructure or orphaned resources .
The feature currently supports deploying Cloudflare Workers to a workers.dev URL via Wrangler . The claim-deployments flow is specifically designed for Workers deployments
. Cloudflare's changelog positions the feature as a first step for AI agent deployments, hinting at potential future expansion
.
Cloudflare actually has two different mechanisms for agent-driven account creation, and they serve different purposes:
The key distinction: Temporary Accounts are for fast, frictionless previews — ideal for an agent prototyping a website or API. The Stripe-powered protocol is for production-grade, billed infrastructure where the agent registers domains and starts paid subscriptions.
Cloudflare's CEO described Temporary Accounts as a way to let agents "get a live Worker in seconds" without any account friction , while the Stripe integration was framed as making agents "Cloudflare customers" who can buy services autonomously
.
Cloudflare launched Temporary Accounts against a backdrop of a historic shift in internet traffic. On June 3, 2026, Cloudflare CEO Matthew Prince announced that automated agent traffic had surpassed human web traffic for the first time .
According to Cloudflare Radar data:
Prince noted that the data is "a bit messy" but that AI agents are "now indisputably the web's biggest traffic drivers" . The figure covers HTML requests specifically, not video, email, or gaming traffic
. Cloudflare's Radar API provides endpoints for retrieving traffic distribution by AI user agent, which underpins this dataset
.
Temporary Accounts fit directly into this trend: if the majority of internet traffic is already driven by machines, the infrastructure they deploy to should be equally accessible to machines. As Cloudflare noted, the old account-creation flows were "built for humans" and created a hard stop for background agents . Temporary Accounts remove that stop, enabling a fully machine-driven deployment loop — at least for previews.
For developers building AI coding agents, Temporary Accounts offer a practical shortcut. Rather than embedding OAuth flows or API key provisioning into the agent's deployment logic, you can now rely on a single flag. The workflow becomes:
wrangler deploy --temporaryThis is particularly useful for agent frameworks like Claude Managed Agents (with which Cloudflare integrated ) or any coding agent that needs to share a working preview with a human operator before committing to a full production deployment.
However, the feature is explicitly not for production. Cloudflare's documentation directs users to permanent Cloudflare accounts (via wrangler login. Temporary Accounts fill a specific gap: the preview-and-handoff stage between agent development and human sign-off.
Cloudflare's Temporary Accounts are a pragmatic response to a fundamental mismatch: the web was designed for humans, but a growing share of its traffic — and its code deployments — is now generated by machines. By letting agents deploy Workers with a single flag, Cloudflare removes a human gate without removing human oversight (via the claim flow). Whether this leads to faster agent iteration or just more ephemeral web infrastructure depends on how developers choose to use it. But the direction is clear: the platform tools of the future will need to talk to agents, not just people.
Comments
0 comments