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 misconfigured bindings that cause runtime failures or security issues. ## Core Features & Use Cases - Best-Practice Code Review: Checks Workers code against canonical rules covering streaming, waitUntil usage, bindings, observability, security, and type safety, with severity-rated findings. - Retrieval-First Workflow: Fetches the latest Cloudflare docs, @cloudflare/workers-types, and the wrangler config schema before reviewing, avoiding outdated API assumptions. - Config Validation: Verifies wrangler.jsonc fields such as compatibility_date, nodejs_compat, observability, secrets handling, and binding-code consistency. - Use Case: Before deploying a new Worker, ask for a review and receive flagged anti-patterns like Math.random() for tokens, missing ctx.waitUntil(), or a hand-written Env interface, each with a suggested fix. ## Quick Start Review my Cloudflare Worker code and wrangler.jsonc for best-practice violations and anti-patterns.