What problem does it solve? Cloudflare's Sandbox SDK 1.0 preview (@cloudflare/sandbox@next) introduces breaking API changes versus the stable package, and mixing package lines or relying on outdated knowledge produces broken Workers. This Skill gates the package line, enforces the non-negotiable API contract, and routes you to the correct preview documentation before any code is written. ## Core Features & Use Cases - Package-line gate: Verifies the npm dependency and container image are both on the @next line, and redirects to sandbox-stable or sandbox-migrate-to-next when they are not. - API contract enforcement: Codifies the preview rules—argv-based exec returning process handles, explicit shells, per-launch cwd/env, no stdin on process handles, and correct timeout/kill semantics. - Documentation retrieval map: Maps each task (processes, terminals, interpreter, lifecycle, environment, errors) to the exact preview docs page, with local quick references for APIs and examples. - Use Case: You are building a new Worker that runs Python code in an isolated Cloudflare container. The Skill confirms you are on @next, gives you the minimal getSandbox + exec + output() pattern, and points you to the interpreter and process API docs before you ship. ## Quick Start Ask the assistant to scaffold a new Cloudflare Sandbox Worker on the @next preview SDK that executes a Python command and returns its output.