What problem does it solve? Running untrusted or LLM-generated code safely requires isolated execution environments, and configuring Cloudflare's Sandbox SDK involves specific wrangler settings, Durable Object bindings, and API patterns that are easy to get wrong. ## Core Features & Use Cases - Command and Code Execution: Run shell commands with exec() or execute Python, JavaScript, and TypeScript with runCode() for rich outputs and persistent state. - File and Port Management: Write, read, and list files inside sandboxes, and expose HTTP services via preview URLs. - Use Case: Build an AI code interpreter where an agent generates Python data analysis code, executes it in an isolated per-session sandbox with pandas, and returns charts and results to the user. ## Quick Start Ask the agent to create a Cloudflare Worker that uses the Sandbox SDK to run Python code in an isolated sandbox and return the result.