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 subtle bugs like broken atomicity or throughput-killing patterns. ## Core Features & Use Cases - Durable Object Implementation: Guides creation of DO classes with RPC methods, SQLite storage, schema migrations, alarms, and WebSocket hibernation. - Code Review & Anti-Pattern Detection: Flags critical mistakes such as single global DOs, misused blockConcurrencyWhile, and in-memory-only state. - Testing with Vitest: Covers unit tests, integration tests via SELF, alarm triggering, and direct storage inspection using @cloudflare/vitest-pool-workers. - Use Case: When building a multiplayer game backend, use this Skill to design one DO per game session, configure wrangler migrations with new_sqlite_classes, and write isolated Vitest tests for alarm-based turn timeouts. ## Quick Start Ask the agent to create a Cloudflare Durable Object for a chat room with SQLite storage, RPC methods, and wrangler configuration.