agentsclimarketplace

Cf temp deploy

Skill jtepe/slopclub/skills/cf-temp-deploy

Deploy a Worker (plus bindings like KV, D1, Durable Objects) to Cloudflare without any account or login, using a temporary account via `wrangler deploy --temporary`. Use when the user wants something deployed/live/shared quickly and no Cloudflare credentials are configured.From its SKILL.md

Install
npx -y skills add jtepe/slopclub --skill cf-temp-deploy

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.9 KB, 626 tokens by cl100k_base, as published. Nobody here has run it

Deploy To Cloudflare Via A Temporary Account

Cloudflare's temporary accounts for AI agents let you deploy a Worker to a live workers.dev URL with no account, no login, and no human in the loop. Wrangler provisions a throwaway account, deploys, and prints a claim URL the user can open to keep the deployment by attaching it to a real Cloudflare account.

When to use

  • The user wants a Worker/site/API deployed or shared now and no Cloudflare credentials are available in the environment.
  • You are running unattended (background session, CI-like context) and cannot complete an OAuth browser flow.

Do not use --temporary when credentials already exist: the flag errors out if Wrangler can authenticate via OAuth, CLOUDFLARE_API_TOKEN, or a global API key. In that case, run a normal wrangler deploy.

How to deploy

  1. Make sure the project has a valid wrangler.jsonc/wrangler.toml and builds locally.

  2. Check the Wrangler version — the flag requires Wrangler 4.102.0 or later (npx wrangler --version; use npx wrangler@latest if older).

  3. Deploy:

    npx wrangler deploy --temporary
    

    Wrangler creates (or reuses) a temporary preview account, deploys the Worker to a workers.dev URL, and prints the claim URL.

  4. Immediately relay both URLs to the user: the live workers.dev URL and the claim URL. The claim URL is the only way for them to keep the deployment — never omit or bury it.

The claim window — critical

  • The temporary account is deleted after 60 minutes if unclaimed, along with the Worker and every resource created for it.
  • Claiming: the user opens the claim URL, signs up for or into Cloudflare, and the whole temporary account — Worker, databases, and other bindings — transfers to their real account.
  • Tell the user about the 60-minute deadline explicitly.

Redeploying and iterating

Wrangler caches the temporary account locally and reuses it while the account and claim URL are still valid, so you can iterate:

# fix code, then redeploy to the same temporary account
npx wrangler deploy --temporary

The command output states whether the account was created or reused.

Supported products

Temporary preview accounts support a limited product set:

  • Workers (and Workers Static Assets)
  • Workers KV
  • D1
  • Durable Objects
  • Hyperdrive
  • Queues
  • SSL/TLS certificates

If the project needs anything outside this list (e.g. R2, custom domains, Pages), a temporary deploy will not cover it — say so and fall back to a normal authenticated deploy.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,851. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.