What problem does it solve? Building stateful, coordinated applications on Cloudflare's edge requires deep knowledge of Durable Objects APIs, concurrency rules, storage semantics, and wrangler configuration, and outdated knowledge leads to anti-patterns like global bottlenecks or lost in-memory state. ## Core Features & Use Cases - Durable Object Implementation: Create DO classes with RPC methods, SQLite storage, schema migrations, alarms, and WebSocket hibernation following current best practices. - Code Review & Anti-Pattern Detection: Review existing DO code for issues like single global DOs, misused blockConcurrencyWhile, broken write coalescing, and unpersisted critical state. - Testing & Workers Integration: Configure wrangler bindings and migrations, write Vitest tests with @cloudflare/vitest-pool-workers, and structure Worker handlers with typed Env interfaces. - Use Case: When building a multiplayer game or chat room, use this Skill to design one DO per room with deterministic getByName routing, SQLite-backed state, and alarm-based timeouts. ## Quick Start Ask the AI to create a Cloudflare Durable Object for a chat room with SQLite storage, RPC methods, and wrangler configuration.