What problem does it solve? Cloudflare Workers APIs, types, and wrangler configuration evolve constantly, so code written from stale knowledge ships with anti-patterns like floating promises, global request state, hardcoded secrets, and misconfigured bindings that cause runtime failures and security issues. ## Core Features & Use Cases - Retrieval-first workflow: 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 code review: Checks configuration (compatibility_date, nodejs_compat, secrets, observability), request handling (streaming, waitUntil), architecture (bindings, Queues, Workflows, Hyperdrive), and security (Web Crypto, timing-safe comparisons) against documented rules with code examples. - Anti-pattern detection: Flags concrete issues such as await response.text() on unbounded data, destructured ctx, hand-written Env interfaces, implements on platform base classes, and non-serializable values crossing queue or storage boundaries. - Use Case: When reviewing a pull request that adds a new Worker with a Durable Object and KV binding, load this skill to validate binding access patterns, wrangler.jsonc fields, and type correctness with evidence-backed findings. ## Quick Start Ask the agent to review your Worker code and wrangler.jsonc against the latest Cloudflare Workers best practices and flag any anti-patterns.