What problem does it solve? Writing correct Cloudflare Durable Objects code requires up-to-date knowledge of storage APIs, migrations, alarms, and concurrency rules, and outdated patterns lead to bottlenecks, lost state, and broken tests. ## Core Features & Use Cases - Implementation Guidance: Provides current patterns for Durable Object classes, RPC methods, SQLite storage, alarms, and WebSocket handlers with wrangler configuration. - Code Review & Anti-Patterns: Flags critical mistakes such as single global DOs, misused blockConcurrencyWhile, and in-memory-only state. - Testing Support: Routes to Cloudflare's Vitest integration for testing RPC, storage persistence, and alarm behavior. - Use Case: When building a chat room with per-room state, use this Skill to scaffold the Durable Object class, configure wrangler.jsonc bindings and SQLite migrations, and write Vitest tests verifying state isolation between rooms. ## Quick Start Ask the assistant to create a Durable Object class with SQLite storage and wrangler bindings for a chat room application.