What problem does it solve? Porting a 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, and buffered exec results—that are easy to get wrong and can break production deployments. ## 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 handles, terminals, interpreters, and git operations. - Hard Rules and Red Flags: Enforces critical constraints such as matching Worker package and container image versions, immediate container rollout for cutover, and argv-based exec without implicit shells. - Use Case: A team running a production Worker on stable @cloudflare/sandbox wants to adopt Sandbox SDK 1.0 preview; the skill audits their codebase for removed APIs, rewrites call sites to the new process-handle model, and validates the cutover deploy. ## Quick Start Migrate my Cloudflare Worker project from stable @cloudflare/sandbox to @cloudflare/sandbox@next and update the container image and code accordingly.