What problem does it solve? Porting an existing Cloudflare Sandbox app from the stable @cloudflare/sandbox package to the @next Sandbox SDK 1.0 preview involves breaking API changes—removed sessions, transport settings, buffered exec results, and renamed terminal APIs—that are easy to miss and can break production if the rollout is mishandled. ## Core Features & Use Cases - Structured Migration Workflow: Guides the port through audit, clarification, upgrade, and validation phases with a stable-to-@next replacement map covering exec, sessions, terminals, interpreter, and git operations. - Hard Rules and Red Flags: Enforces critical constraints such as matching Worker package and container image versions, immediate container rollout for production cutover, and argv-based exec without implicit shells. - Use Case: You have a production Worker using stable sandbox sessions and await sandbox.exec("npm test"). This Skill audits the codebase with grep patterns, rewrites calls to handle-based exec with output() waits, swaps the Dockerfile to cloudflare/sandbox:next, and deploys with --containers-rollout=immediate. ## Quick Start Migrate my Cloudflare Worker from stable @cloudflare/sandbox to the @next Sandbox SDK 1.0 preview and update the container image and deploy command.