What problem does it solve? Deploying a Cloudflare Worker normally requires creating an account, logging in via OAuth, or managing API tokens, which blocks autonomous or background agent sessions. This Skill deploys a Worker to a live workers.dev URL with zero account setup using wrangler's hidden --temporary flag, giving a tight write, deploy, and verify loop. ## Core Features & Use Cases - Accountless Deployment: Uses wrangler deploy --temporary to provision a throwaway Cloudflare account and publish a Worker to a live URL in one command. - Structured Output Parsing: Ships a stdlib-only Python script that extracts the live URL, claim URL, account state, and expiry window from wrangler output as JSON. - Self-Verifying Deploy Loop: Guides curl-based verification of the live URL and safe redeploys within the 60-minute claim window. - Use Case: In an autonomous coding session, scaffold a minimal Worker, deploy it with npx wrangler@latest deploy --temporary, curl the live URL to confirm the response body, and hand the user the claim URL to keep the deployment. ## Quick Start Ask the agent to deploy your Worker project to a temporary Cloudflare URL and verify it is live, then share the claim link before it expires.