What problem does it solve? Writing correct Cloudflare Durable Objects code requires up-to-date knowledge of storage APIs, concurrency rules, alarms, and wrangler migrations, and outdated assumptions lead to bottlenecks, lost state, and broken deployments. ## Core Features & Use Cases - Implementation Guidance: Provides patterns for Durable Object classes, RPC methods, SQLite storage, alarms, and WebSocket handlers with current Cloudflare documentation retrieval. - Configuration & Testing: Covers wrangler.jsonc/toml bindings, SQLite class migrations, and Vitest-based testing of RPC, storage, and alarm behavior. - Code Review Rules: Enforces critical rules and anti-patterns, such as one DO per coordination entity, persist-before-cache, and avoiding blockConcurrencyWhile across external I/O. - Use Case: When building a real-time chat room with per-room state, use this Skill to scaffold the Durable Object class, configure migrations, and write tests verifying state isolation between rooms. ## Quick Start Use the durable-objects skill to create a Durable Object class with SQLite storage and wrangler configuration for a per-user session store.