What problem does it solve? Building stateful, coordinated applications on Cloudflare's edge requires correct Durable Object patterns for sharding, storage, concurrency, and testing, and outdated API 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, 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 broken write coalescing. - Testing with Vitest: Set up @cloudflare/vitest-pool-workers for unit tests, integration tests via SELF, and immediate alarm execution with runDurableObjectAlarm. - Use Case: When building a multiplayer game backend, use this Skill to model one DO per game session, configure wrangler migrations with new_sqlite_classes, and write isolated tests that verify SQLite state directly. ## Quick Start Use the durable-objects skill to create a chat room Durable Object with SQLite storage, RPC methods, and wrangler configuration.