What problem does it solve? Writing correct Cloudflare Durable Objects code requires up-to-date knowledge of storage APIs, concurrency rules, alarms, and wrangler configuration, and outdated assumptions lead to bottlenecks, lost state, and broken migrations. ## Core Features & Use Cases - Implementation Guidance: Provides patterns for Durable Object classes, RPC methods, SQLite storage, alarms, and stub creation with deterministic routing via getByName. - Best-Practice Enforcement: Lists critical rules and anti-patterns, such as avoiding a single global DO and persisting state before caching it in memory. - Testing & Configuration References: Routes to current Vitest integration docs and wrangler.jsonc configuration for bindings, migrations, and observability. - Use Case: When building a chat room with per-room state, use this Skill to scaffold the Durable Object class, configure SQLite migrations, and write tests that verify state persistence across calls. ## Quick Start Ask the assistant to create a Durable Object class with SQLite storage and wrangler bindings for a chat room application.