What problem does it solve? Running untrusted or LLM-generated code safely requires isolated environments, and this Skill guides you through building secure, containerized code execution on Cloudflare Workers with the Sandbox SDK. ## Core Features & Use Cases - Command and Code Execution: Run shell commands with exec() or execute Python, JavaScript, and TypeScript with rich outputs via runCode() and persistent code contexts. - File and Port Management: Write, read, and list files inside sandboxes, and expose HTTP services through preview URLs with exposePort(). - Use Case: Build an AI code interpreter where an agent generates Python pandas code, executes it in an isolated per-session sandbox with state persistence, and returns charts and tables to the user. ## Quick Start Ask the AI to set up a Cloudflare Worker with the Sandbox SDK that runs Python code in an isolated sandbox and returns the execution result.