What problem does it solve? Cloudflare Sandbox SDK 1.0 preview introduces breaking API changes—removed sessions, transport settings, string exec, and interpreter methods—so existing apps on the stable @cloudflare/sandbox package need a structured, safe migration path to @cloudflare/sandbox@next. ## Core Features & Use Cases - Guided Migration Workflow: Walks through audit, clarification, upgrade, and validation steps with hard rules preventing common cutover mistakes like mixed Worker/image versions. - Replacement Map: Provides a stable-to-@next API mapping covering exec handles, terminals, interpreters, git operations, and numeric kill signals. - Use Case: You have a production Worker using sandbox.exec("npm test") and session APIs. This Skill audits the codebase with ripgrep patterns, rewrites calls to argv-based exec with process handles, and deploys with --containers-rollout=immediate. ## Quick Start Migrate my Cloudflare Sandbox Worker from the stable SDK to @cloudflare/sandbox@next and update the container image and code accordingly.