What problem does it solve? Cloudflare Workers APIs, types, and wrangler configuration evolve quickly, so code written from stale knowledge often contains anti-patterns like floating promises, global request state, hardcoded secrets, or outdated binding access that cause runtime failures and security issues. ## Core Features & Use Cases - Retrieval-first review: Fetches the latest Workers best practices page, @cloudflare/workers-types, and the wrangler config schema before writing or reviewing code, instead of relying on pre-trained knowledge. - Rule-based checks: Covers configuration (compatibility_date, nodejs_compat, secrets), streaming, waitUntil, bindings over REST APIs, observability, Web Crypto security, and serialization boundaries. - Structured review output: Flags anti-patterns with severity levels (CRITICAL/HIGH/MEDIUM/LOW), file and line evidence, and suggested fixes. - Use Case: When reviewing a pull request that adds a new Worker with KV and Queue bindings, load this skill to verify binding-code consistency, catch a missing nodejs_compat flag, and flag an unawaited fetch call before merge. ## Quick Start Ask the assistant to review your Worker code and wrangler.jsonc against the latest Cloudflare Workers best practices.