What problem does it solve?
Validating SDK changes or reproducing issues against a real Cloudflare Sandbox container normally requires deploying your own worker or running wrangler dev locally. This Skill lets you exercise a hosted Sandbox deployment directly over HTTP using injected credentials, with no local Docker build or deployment step.
Core Features & Use Cases
- Remote Sandbox Lifecycle: Create, use, and destroy isolated sandbox containers via the bridge API, identified by opaque IDs.
- Command Execution via SSE: Run shell commands with streamed stdout/stderr as Server-Sent Events, with optional timeouts and working directories.
- File and Session Management: Read and write files under /workspace, and create named sessions that persist working directory and environment variables across commands.
- Use Case: Reproduce a user-reported bug by creating a sandbox, writing a failing script to /workspace, executing it in a session, and inspecting the streamed output — all without touching your local environment. It is also the only way to test FUSE-based bucket mounts, which wrangler dev cannot replicate.
Quick Start
Use the sandbox-bridge skill to create a sandbox on the bridge worker, run a test command inside it, and then destroy the sandbox.