What problem does it solve? Cloudflare's Sandbox SDK 1.0 preview (@next line) changed core APIs—exec now takes argv arrays and returns process handles instead of finished results—so code written from memory or stable-line docs breaks. This Skill gates the package line, enforces the new API contract, and routes you to the correct preview documentation before you write code. ## Core Features & Use Cases - Package-line gate: Verifies the npm dependency and container image are both on @next, and redirects stable apps to sandbox-stable or migrations to sandbox-migrate-to-next. - API contract enforcement: Codifies non-negotiables such as argv-based exec, handle methods (output(), waitForExit(), kill()), per-launch cwd/env, and no implicit shell. - Documentation retrieval map: Maps each task (processes, terminals, interpreter, lifecycle, errors) to the exact preview docs page, plus a quick API reference and examples index in references/. - Use Case: You are building a Worker that runs Python code in an isolated container. The Skill confirms you are on @next, gives you the correct getSandbox/exec/output pattern, and points you to the interpreter docs before you implement. ## Quick Start Ask the assistant to scaffold a Cloudflare Worker that executes a Python snippet in a sandbox using the @cloudflare/sandbox@next SDK.