What problem does it solve? Cloudflare Workers APIs, types, and configuration options change frequently, so code written from stale knowledge often contains anti-patterns like buffered response bodies, hardcoded secrets, floating promises, or missing observability settings that cause production failures. ## Core Features & Use Cases - Anti-Pattern Detection: Flags common Workers mistakes such as unbounded body buffering, Math.random() for security tokens, module-level mutable state, and misused ctx.passThroughOnException(). - Configuration Review: Validates wrangler.jsonc settings including compatibility dates, nodejs_compat flags, generated Env types, secrets management, and observability (logs and traces) enablement. - Platform API Verification: Checks handler signatures, binding access patterns (env.X vs this.env.X), serialization boundaries for Queues, Durable Objects, and WebSockets, and stale class patterns. - Use Case: Before deploying a new Worker to production, run a review to confirm streaming is used for large payloads, ctx.waitUntil() handles background work, and Workers Logs and Traces are enabled with structured JSON logging. ## Quick Start Review my Cloudflare Worker code and wrangler configuration for production best practices and flag any anti-patterns.