What problem does it solve? Cloudflare Workers APIs, types, and wrangler configuration change frequently, so pre-trained knowledge produces outdated code, broken configs, and subtle anti-patterns like floating promises, global request state, and hardcoded secrets. ## Core Features & Use Cases - Best-Practice Rule Enforcement: Applies canonical rules for compatibility dates, nodejs_compat, streaming, waitUntil, bindings, observability, and Web Crypto security. - Structured Code Review: Runs an eight-step review workflow covering types, config validity, binding-code consistency, serialization boundaries, and severity-ranked findings. - Retrieval-First Grounding: Fetches the latest Cloudflare docs, @cloudflare/workers-types, and the wrangler config schema before writing or reviewing code. - Use Case: When reviewing a pull request that adds a new Worker with KV and Queue bindings, load this Skill to flag a stale compatibility_date, a hand-written Env interface, and an un-awaited fetch call, each with a suggested fix. ## Quick Start Review my Cloudflare Worker code and wrangler.jsonc against the latest Workers best practices and flag any anti-patterns.