惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Spread Privacy
Spread Privacy
K
Kaspersky official blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Forbes - Security
Forbes - Security
Hacker News - Newest:
Hacker News - Newest: "LLM"
The Last Watchdog
The Last Watchdog
SecWiki News
SecWiki News
Attack and Defense Labs
Attack and Defense Labs
Google DeepMind News
Google DeepMind News
Security Archives - TechRepublic
Security Archives - TechRepublic
S
Secure Thoughts
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
Security Latest
Security Latest
TaoSecurity Blog
TaoSecurity Blog
Cyberwarzone
Cyberwarzone
S
SegmentFault 最新的问题
Cloudbric
Cloudbric
aimingoo的专栏
aimingoo的专栏
S
Schneier on Security
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
H
Hacker News: Front Page
C
Cybersecurity and Infrastructure Security Agency CISA
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
AWS News Blog
AWS News Blog
AI
AI
G
GRAHAM CLULEY
IT之家
IT之家
P
Privacy & Cybersecurity Law Blog
L
Lohrmann on Cybersecurity
Last Week in AI
Last Week in AI
D
Docker
Recent Announcements
Recent Announcements
O
OpenAI News
T
Threat Research - Cisco Blogs
GbyAI
GbyAI
S
Security @ Cisco Blogs
T
Troy Hunt's Blog
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic

Flavio Copes

Workers Cache: a cache in front of your Cloudflare Worker Cloudflare Drop: drag a folder, get a live site Moondream 3.1 on Workers AI: fast vision at the edge inferencecost.dev: what will AI inference cost you at 10k users? Sitebase: all the features your website needs, in one place StackPlan: figure out where to deploy your app, and what it How the Cloudflare Pages build cache works The Summer of Code How I generate an Open Graph image for every post New: 90 free tools for developers How I added search to my static site with Pagefind How to rebuild a Cloudflare site on a schedule Cloudflare Email Workers: run code when an email arrives Cloudflare Turnstile: stop bots without annoying CAPTCHAs Cloudflare Workers: secrets and environments Cloudflare Workers observability: logs and traces Cloudflare Analytics Engine: store and query metrics The AI Workshop (July 2026 cohort) Cloudflare Cron Triggers: run a Worker on a schedule Cloudflare Durable Objects: state that lives in one place Cloudflare Queues: run work in the background Cloudflare R2: object storage without egress fees Cloudflare KV: a key-value store for your Workers Cloudflare D1: a SQL database for your Workers Serving a website with Cloudflare Workers static assets Wrangler: the Cloudflare Workers command line tool Executor: one gateway to connect your AI agent to every tool Cloudflare Workers: your first serverless function Vercel eve: an open framework for building AI agents Flue: the open framework for building AI agents Val Town: write and deploy code in seconds A hands-on guide to The Agency, a collection of AI agents The AI Workshop (June 2026 cohort) The AI Workshop (May 2026 cohort) The AI Workshop (Apr 2026 cohort)
Temporary Cloudflare accounts: agents can now deploy without signing up
Flavio Copes · 2026-07-09 · via Flavio Copes

By Flavio Copes

wrangler deploy --temporary deploys a Worker with no Cloudflare account. Live for 60 minutes, claimable with a link. How it works and its limits.

~~~

AI agents are great at writing code. Then they try to deploy it, and they hit a wall built for humans: sign up in a browser, click through a dashboard, copy an API token, pass MFA.

For an agent you work with interactively, that’s annoying. For a background agent, it’s a hard stop.

Cloudflare’s answer is temporary accounts. An agent (or you) can now run:

npx wrangler deploy --temporary

and get a live Worker on a workers.dev URL — no account, no login, no token.

How it works

Cloudflare provisions a temporary account on the fly, gives wrangler a short-lived token, deploys the Worker, and prints two things:

  • the live URL (https://your-worker.some-name.workers.dev)
  • a claim URL

The deployment stays live for 60 minutes. Open the claim URL within that window, sign in or sign up, and the temporary account — the Worker plus any resources it created — becomes permanently yours.

Don’t claim it, and it expires and gets deleted on its own. No orphaned accounts, no cleanup.

You can keep redeploying while the window is open. Wrangler caches the temporary account and reuses it, so an agent can iterate: deploy, curl the URL, fix, redeploy.

The clever part: discovery

How does an agent even know the flag exists? Nobody prompts their agent with “use —temporary”.

Cloudflare solved it in the CLI output. When wrangler has no credentials and you run a plain wrangler deploy, it prints:

To continue without logging in, rerun this command with `--temporary`.
Wrangler will use a temporary account and print a claim URL.

The agent reads the error, discovers the flag, and reruns the command. No human in the loop. It’s a small thing, but it’s exactly how you design for agents: put the instructions where they’ll be read — in the tool output.

Try it yourself

You need Wrangler 4.102.0 or later, and you must not be logged in — the flag errors out if wrangler already has credentials (OAuth, CLOUDFLARE_API_TOKEN, or a global key). It’s strictly for the unauthenticated case.

The prompt Cloudflare suggests for a coding agent:

Make a very simple Hello World Cloudflare Worker in TypeScript
and deploy it using the Wrangler CLI. Do not ask me questions.

The agent writes the Worker, tries to deploy, discovers the flag, deploys, and verifies its own work by fetching the URL. The full write → deploy → verify loop, with no account.

What a temporary account can hold

It’s not just the Worker. Temporary accounts currently support:

  • Workers on workers.dev
  • static assets (up to 1,000 files, 5 MiB each)
  • KV, Durable Objects
  • one D1 database (100 MB)
  • up to 10 Queues, two Hyperdrive configs

So an agent can scaffold a small full-stack app — Worker, database, storage — and hand you one claim link for the whole thing.

Be careful with the claim URL

The claim URL grants ownership of the account. Whoever opens it first gets the deployment and everything in it.

Treat it like a credential: don’t paste it in public channels, don’t log it somewhere permanent. Cloudflare also rate-limits temporary account creation and runs a proof-of-work check before provisioning one, so this doesn’t become a free-compute abuse vector.

When not to use it

This is a prototyping and agent tool, not a deployment strategy.

For production and CI/CD, use a permanent account with wrangler login or an API token, like always. And if you just want to drop a static site on a URL without touching a terminal, the browser version of this same idea is Cloudflare Drop — drag a folder, get a site.

What I take away from this: platforms are starting to treat agents as first-class users. Signup flows, dashboards, and copy-pasted tokens all assume a human with a browser. The ones who remove that assumption first will be where agents deploy by default.

~~~

Related posts about cloudflare: