What problem does it solve? Cloudflare Sandbox apps built on the stable @cloudflare/sandbox SDK use APIs (sessions, transport settings, buffered exec, gitCheckout) that are removed or reshaped in the SDK 1.0 preview. This Skill performs the port to @cloudflare/sandbox@next systematically, avoiding broken mixed-version deployments and invented APIs. ## Core Features & Use Cases - Structured migration workflow: Audit the codebase with grep patterns, clarify cutover decisions with the user, upgrade package and container image, then validate. - Replacement map: Maps stable APIs (SANDBOX_TRANSPORT, execStream, sessions, sandbox.terminal, gitCheckout) to their @next equivalents (argv exec handles, createTerminal, withInterpreter). - Safe production cutover: Enforces matching Worker/image versions and immediate container rollout via wrangler deploy --containers-rollout=immediate. - Use Case: You have a Worker using stable sandbox sessions and buffered exec calls. Run this Skill to audit call sites, rewrite them to argv-based process handles, swap the Dockerfile to cloudflare/sandbox:next, and deploy with immediate rollout. ## Quick Start Migrate my Cloudflare Sandbox Worker from the stable @cloudflare/sandbox package to the @next SDK 1.0 preview, updating the package, container image, and all API call sites.