What problem does it solve? Cloudflare Workers APIs, types, and configuration options change frequently, so code written from stale knowledge often contains anti-patterns like buffered response bodies, hardcoded secrets, floating promises, or outdated handler signatures. This Skill grounds Workers code writing and review in the project's installed Wrangler schema, generated types, and current Cloudflare documentation. ## Core Features & Use Cases - Configuration and observability checks: Verify compatibility dates, nodejs_compat flags, generated Env types via wrangler types, secret management, and Workers Logs/Traces setup. - Runtime pattern enforcement: Flag unbounded body buffering, module-level mutable state, floating promises, missing ctx.waitUntil, insecure Math.random() tokens, and passThroughOnException misuse. - Platform API validation: Check handler signatures, binding access patterns (env.X vs this.env.X), platform base class usage, and serialization boundaries for Queues, Workflows, Durable Objects, and WebSockets. - Use Case: While reviewing a pull request that adds a new Worker endpoint, use this Skill to catch a hardcoded API key in wrangler vars, an unawaited webhook fetch, and a hand-written Env interface that has drifted from the actual bindings. ## Quick Start Review my Cloudflare Worker code and wrangler.jsonc for best-practice violations and outdated API usage.