What problem does it solve? Cloudflare Workers APIs, types, and configuration options change frequently, so code written from stale knowledge can contain anti-patterns, misconfigured bindings, or missing observability. This Skill grounds Workers code review and authoring in the project's installed versions, generated types, and current Cloudflare documentation. ## Core Features & Use Cases - Anti-Pattern Detection: Flags common Workers mistakes such as buffering unbounded response bodies, hardcoded secrets, floating promises, module-level request state, and misuse of ctx.passThroughOnException(). - Configuration Review: Verifies compatibility_date, nodejs_compat, generated Env types via wrangler types, secret management, and observability settings for logs and traces. - Platform API Validation: Checks handler signatures, binding access patterns (env.X vs this.env.X), base class usage, and serialization boundaries for Queues, Workflows, Durable Objects, and WebSockets. - Use Case: When reviewing a pull request that adds a new Worker with a Queue binding, use this Skill to verify the binding types, message serialization format, error handling, and observability configuration before merging. ## Quick Start Review my Cloudflare Worker code and wrangler.jsonc for best-practice violations and outdated API usage.