A glowing server rack with autonomous robotic arms deploying code, orange and grey colour scheme
News

AI Agents Can Now Deploy Code Without You Signing Up. Cloudflare Just Made It Default.

Cloudflare's --temporary flag means an AI agent can deploy a Worker, iterate on it, and hand you a claim link — no signup, no token, no human in the loop.

CloudflareAI AgentsInfrastructureDeveloper ToolsAgentic AI

AI agents can now deploy code to Cloudflare without a human ever creating an account, signing in, or pasting an API token. A new --temporary flag in Wrangler — Cloudflare’s CLI tool — lets an agent provision a throwaway account, ship a Worker, iterate on it for 60 minutes, and hand back a claim URL. It is the most frictionless agent-to-infrastructure path anyone has shipped.

🔍 THE BOTTOM LINE

The bottleneck for agentic coding has never been the code. It’s been the signup form. Every cloud provider requires a human to create an account, verify an email, enter a credit card, and paste an API token before an agent can do anything. Cloudflare just removed that barrier entirely. An agent discovers the flag on its own, deploys, tests, iterates, and only involves the human when it’s time to claim the result.

How It Works

According to Cloudflare’s announcement, the flow is simple. An agent running Wrangler hits the authentication step and gets a prompt telling it about the --temporary flag. The agent reads the prompt, retries with --temporary, and Cloudflare provisions a sandboxed account automatically — no signup, no email, no credit card.

The agent gets an API token, a preview URL, and a claim URL. It can deploy, curl the preview to verify the result, iterate on the code, and redeploy as many times as it wants within a 60-minute window. When the human is ready, they click the claim link, sign in or sign up, and the temporary account becomes permanent — Workers, databases, bindings and all.

If nobody claims it within 60 minutes, the account is automatically deleted.

Why This Matters

This isn’t a convenience feature. It’s a structural shift in how software gets built.

Today, if you tell an AI agent to “deploy a hello world app,” it hits a wall at the authentication step. The agent can write the code, but it can’t ship it without you stopping what you’re doing to create an account. That interruption breaks the agentic loop — the whole promise of “tell the agent what you want and it handles the rest.”

Cloudflare’s temporary accounts close that gap. The agent never needs to stop and ask you for credentials. It writes, deploys, verifies, iterates, and only surfaces when there’s something worth claiming.

As we noted in our coverage of AI agents getting their own payment rails, the infrastructure layer for autonomous agents is being built right now — account provisioning, payment processing, deployment pipelines. Cloudflare just added the last piece: no human required to get started.

The Broader Pattern

Cloudflare isn’t doing this in isolation. They recently partnered with Stripe on a protocol that lets agents provision accounts, start subscriptions, register domains, and get API tokens on behalf of users — no copy-pasting tokens, no credit card forms. They collaborated with WorkOS on auth.md, an open standard that lets agents provision accounts using existing OAuth flows.

The trajectory is clear: every major infrastructure provider is building agent-native onboarding. The ones that don’t will lose the agent workflow to the ones that do.

The NZ Angle

For New Zealand developers and startups running lean teams, this matters more than it might seem. The biggest cost in shipping software isn’t compute — it’s the human coordination overhead. Every signup form, every token rotation, every “can you create me an account on X” is friction that a small team can’t afford.

If an agent can deploy to Cloudflare’s edge network — which has a PoP in Auckland — without a human touching the console, a solo founder in Wellington can tell an agent to “build and deploy a contact form” and have it live in minutes. That’s not hypothetical. That’s what this enables today.

❓ FAQ

Can the agent access my existing Cloudflare account? No. Temporary accounts are sandboxed and isolated. The agent only gets access to the temporary account it created. Claiming it links it to your real account.

What happens after 60 minutes? The temporary account and everything in it is automatically deleted. You need to claim it before the window expires.

Is this safe? The agent operates within Cloudflare’s sandbox. It can deploy Workers and create bindings, but it can’t access your existing infrastructure, billing, or DNS. The Go-enforced harness blocks writes outside the sandbox.

Does the agent know to use —temporary automatically? Yes. Wrangler’s output now tells the agent about the flag when it hits the auth step. The agent reads the prompt and retries with --temporary on its own — no human instruction needed.

🔍 THE BOTTOM LINE

Cloudflare just made it possible for an AI agent to go from “write me an app” to “here’s your live URL” with zero human intervention in the middle. The 60-minute claim window is the only human touchpoint. Every cloud provider that requires a signup form before an agent can deploy is now playing catch-up.

📰 Sources

Sources: Cloudflare Blog, Hacker News