What problem does it solve? It prevents API mismatches when building or maintaining Cloudflare Sandbox apps on the stable @cloudflare/sandbox package, ensuring commands, sessions, files, ports, tunnels, and terminals use stable APIs rather than @next preview APIs. ## Core Features & Use Cases - Package Line Gate: Verifies the npm dependency and container image both match the stable line before writing code, and redirects to sandbox-next or sandbox-migrate-to-next when appropriate. - Stable API Contract: Enforces correct usage of exec, startProcess, execStream, sessions, sandbox.terminal, and RPC transport while avoiding @next-only APIs like process.output(). - Documentation Retrieval Map: Maps each task (files, ports, tunnels, backups, terminals, production deployment, bridge) to the exact Cloudflare docs page to consult before implementing. - Use Case: When asked to add a browser terminal to an existing Workers app using the default @cloudflare/sandbox package, this Skill confirms the stable line, points to the Terminal API docs, and blocks accidental use of preview createTerminal APIs. ## Quick Start Ask the assistant to add a streaming command feature to your existing Cloudflare Sandbox Worker while staying on the stable @cloudflare/sandbox package.