What problem does it solve? Deploying a Cloudflare Worker normally requires creating an account, logging in via OAuth, or managing API tokens, which blocks agents and autonomous sessions that just need a quick live URL. This Skill deploys a Worker to a live workers.dev URL with zero account setup using wrangler's --temporary flag. ## Core Features & Use Cases - Account-free deployment: Run npx wrangler@latest deploy --temporary to get a live workers.dev URL and a claim URL valid for 60 minutes. - Structured output parsing: Pipe deploy output through scripts/parse_deploy_output.py to extract the live URL, claim URL, account state, and expiry as JSON. - Self-verifying deploy loop: Deploy, curl the live URL to confirm the response matches the code, then redeploy and iterate within the reused temporary account. - Use Case: In a background coding session, scaffold a minimal Worker, deploy it with --temporary, verify it with curl, and hand the user a claim URL so they can keep the deployment before it auto-deletes. ## Quick Start Ask the agent to deploy the current Worker project to a temporary Cloudflare URL and verify it is live with curl.