Cloudflare announced a way to create temporary Cloudflare Workers projects without creating a Cloudflare account. The announcement states the feature is intended "for AI agents," but in practice it can be useful to any developer.
The short usage is simple: run the Wrangler CLI with a single flag:
npx wrangler deploy --temporary
Cloudflare will deploy the application as a new ephemeral project that remains live for 60 minutes. The deployment command prints the URL of a page where you can claim the newly created project if you want it to persist beyond the initial 60 minutes.
According to the report, the author tested the feature by having GPT‑5.5 xhigh in Codex Desktop build a small test application that follows HTTP redirects and returns the final destination. The temporary deployment worked as advertised.
The announcement was shared on Hacker News and tagged under "cloudflare."
Why this matters: the feature enables fast prototyping and short‑lived services without forcing a registration step, which can be convenient for automated agent workflows or any scenario that needs ephemeral endpoints.
Key facts
- Command: npx wrangler deploy --temporary
- Lifetime: 60 minutes
- Deployment returns a claim URL to make the project persistent
- Stated audience: "AI agents" (but generally usable)
- Test reported: GPT‑5.5 xhigh via Codex Desktop produced a working test app



