What problem does it solve? Cloudflare Workers APIs, types, and configuration options change frequently, so code written from stale knowledge breaks at runtime, leaks secrets, or fails under load. This Skill grounds Workers writing and review in the project's installed types, Wrangler schema, and retrieved Cloudflare documentation instead of outdated assumptions. ## Core Features & Use Cases - Anti-pattern detection: Flags buffering unbounded bodies, hardcoded secrets, floating promises, module-level request state, insecure randomness, and incorrect binding access (env.X vs this.env.X). - Configuration validation: Checks compatibility dates, nodejs_compat, generated Env types via wrangler types, secret handling, and observability settings for logs and traces. - Platform API and serialization checks: Verifies handler signatures, platform base classes, and serialization boundaries for Queues, Workflows, Durable Object storage, and WebSockets. - Use Case: When reviewing a pull request that adds a Queue producer to a Worker, the Skill verifies the message content type, confirms bindings match the Wrangler config, and flags any unawaited sends. ## Quick Start Ask the assistant to review your Worker code and Wrangler configuration for Cloudflare best practices and anti-patterns.