What problem does it solve? Cloudflare Workers APIs, types, and wrangler configuration change frequently, so code written from stale knowledge often contains anti-patterns like floating promises, global request state, hardcoded secrets, and unbounded response buffering that cause production failures. ## Core Features & Use Cases - Best-Practice Rule Enforcement: Checks configuration, request handling, architecture, observability, and security rules such as compatibility_date freshness, nodejs_compat, streaming, waitUntil usage, and Hyperdrive for database connections. - Structured Code Review Workflow: Follows an eight-step review process covering type validation, config validation, binding-code consistency, serialization boundaries, and severity-rated findings with file and line evidence. - Retrieval-First Verification: Fetches the latest @cloudflare/workers-types, wrangler config schema, and Cloudflare docs before flagging issues instead of relying on outdated training knowledge. - Use Case: When reviewing a pull request that adds a new Worker with a Durable Object and a Queue binding, load this Skill to verify binding access patterns, detect floating promises, and confirm the wrangler.jsonc config matches the code. ## Quick Start Review my Cloudflare Worker code and wrangler.jsonc for best-practice violations and anti-patterns.