What problem does it solve? Building stateful, coordinated applications on Cloudflare's edge requires deep knowledge of Durable Objects APIs, concurrency rules, SQLite storage, 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: Audit existing DO code for anti-patterns such as single global DOs, misused blockConcurrencyWhile, and unpersisted critical state. - Testing & Configuration: Set up Vitest tests with @cloudflare/vitest-pool-workers and configure wrangler bindings, migrations, and Workers handlers. - Use Case: When building a multiplayer game backend, use this Skill to design one DO per match with deterministic getByName routing, SQLite-backed state, and alarm-based game timeouts. ## Quick Start Ask the assistant to create a Durable Object class for a chat room with SQLite storage, RPC methods, and wrangler configuration.