What problem does it solve? Writing correct Cloudflare Durable Objects code requires up-to-date knowledge of storage APIs, concurrency rules, wrangler configuration, and testing patterns that change frequently. This Skill guides implementation and review of Durable Objects while routing to current official documentation instead of relying on outdated training data. ## Core Features & Use Cases - Durable Object Implementation: Create DO classes with SQLite storage, RPC methods, alarms, and WebSocket handlers following Cloudflare best practices. - Configuration & Migrations: Set up wrangler.jsonc/toml bindings, SQLite class migrations, and TypeScript environment types. - Testing Guidance: Configure Cloudflare's Vitest integration to test RPC behavior, storage persistence, and alarm scheduling. - Use Case: You are building a real-time chat application and need per-room coordination. Use this Skill to scaffold a ChatRoom Durable Object with deterministic getByName routing, SQLite message storage, and hibernation-safe WebSocket handling. ## Quick Start Use the durable-objects skill to create a Durable Object class with SQLite storage and wire it up in my wrangler configuration.