What problem does it solve? Building stateful, coordinated applications on Cloudflare's edge requires deep knowledge of Durable Objects APIs, concurrency rules, storage patterns, and wrangler configuration, and outdated knowledge leads to subtle bugs like race conditions, lost state, and throughput bottlenecks. ## 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 global singleton DOs, misused blockConcurrencyWhile, and unpersisted in-memory 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 turn timeouts. ## Quick Start Use the durable-objects skill to create a chat room Durable Object with SQLite message storage and WebSocket support, including the wrangler configuration.