What problem does it solve? Building stateful, coordinated applications on Cloudflare's edge requires correct Durable Object patterns for sharding, storage, concurrency, and alarms, and outdated knowledge of the API leads to subtle bugs and anti-patterns. ## 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 like global singletons, misused blockConcurrencyWhile, and broken write coalescing. - Configuration & Testing: Set up wrangler bindings and migrations, plus unit and integration tests with @cloudflare/vitest-pool-workers. - Use Case: Build a multiplayer chat application where each room is a Durable Object with SQLite-backed message history, WebSocket connections, and an alarm that archives inactive rooms. ## Quick Start Use the durable-objects skill to create a chat room Durable Object with SQLite storage and WebSocket support, including wrangler config and Vitest tests.