What problem does it solve? Building stateful, coordinated applications on Cloudflare Workers requires correct Durable Object patterns for sharding, SQLite storage, concurrency, alarms, and WebSockets, and mistakes like global singletons or broken write coalescing cause bottlenecks and data loss. ## 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 in-memory state. - Configuration & Testing: Set up wrangler bindings and migrations, plus Vitest tests with @cloudflare/vitest-pool-workers including alarm triggering and direct storage inspection. - Use Case: When building a multiplayer game or chat room on Cloudflare, use this Skill to scaffold a per-room Durable Object with SQLite persistence, typed RPC methods, and integration tests. ## Quick Start Create a Cloudflare Durable Object for a chat room with SQLite storage, RPC methods, and wrangler configuration.