What problem does it solve? Cloudflare's Sandbox SDK 1.0 preview (@next) introduces breaking API changes versus the stable package, and outdated knowledge leads to wrong code. This Skill gates you onto the correct package line, enforces the non-negotiable API contract, and routes you to the right preview documentation before writing code. ## Core Features & Use Cases - Package Line Gate: Verifies the npm dependency and container image both match @cloudflare/sandbox@next, and redirects to sandbox-stable or sandbox-migrate-to-next when they do not. - API Contract Enforcement: Codifies rules for exec argv handles, terminals, interpreters, lifecycle, environment variables, and error handling so generated code matches the preview SDK. - Documentation Retrieval Map: Maps each task (processes, terminals, interpreter, files, mounts, tunnels, preview URLs) to the exact preview docs page, plus a quick-reference cheatsheet and examples index. - Use Case: You are building a Worker that runs Python code in an isolated container. The Skill ensures you call sandbox.exec with an argv list, collect results via process.output(), and avoid removed stable APIs like string-exec or gitCheckout. ## Quick Start Ask the assistant to build a Cloudflare Worker that executes Python code in a sandbox using the @cloudflare/sandbox@next preview SDK.