What problem does it solve? Building stateful, coordinated applications on Cloudflare's edge requires deep knowledge of Durable Objects APIs, concurrency rules, and wrangler configuration, and outdated knowledge leads to anti-patterns like global bottleneck DOs or broken atomicity. ## Core Features & Use Cases - Durable Object Creation: Implement 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 non-atomic storage writes. - Testing & Configuration: Set up wrangler bindings and migrations plus Vitest tests using @cloudflare/vitest-pool-workers, including alarm triggering and direct storage inspection. - 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 scheduled timeout alarms. ## Quick Start Ask the agent to create a Cloudflare Durable Object for a chat room with SQLite storage, RPC methods, and wrangler configuration.