What problem does it solve? Cloudflare's platform changes weekly and its limits, version gates, and consistency models are easy to get wrong from memory. This Skill grounds Workers development in verified quotas, current Wrangler behavior, and documented failure modes so agents stop shipping stale limits, cross-request leaks, and destructive Durable Object migrations. ## Core Features & Use Cases - Production code review: Catches module-scope state leaks, destructured ctx, floating promises, secrets in vars, and buffering against the 128 MB isolate limit, with findings ordered by blast radius. - Storage selection: Chooses between KV, R2, D1, Durable Objects, Queues, and Hyperdrive based on documented consistency guarantees, per-key write rates, and size ceilings. - Durable Object lifecycle: Guides safe class creation, three-deploy renames, transfers, and the declarative exports map (Wrangler 4.107+) that replaces legacy migrations. - Use Case: Migrating a Pages project to Workers static assets — the Skill walks through assets.directory, run_worker_first, not_found_handling, _headers/_redirects re-application, and per-environment binding redeclaration so auth checks and security headers survive the move. ## Quick Start Ask the agent to review your worker.ts and wrangler.toml for production-readiness before your next Cloudflare deploy.