CoreWeave Serverless sandboxes are in public preview.
Interactive coding agents and autonomous agents
With an interactive coding agent, you work alongside the agent: ask questions, review edits, and approve actions through a terminal, browser, or mobile app. For example, use Claude Code to investigate a failing test while you guide the changes. With an autonomous agent, you delegate a task and collect results later. For example, assign a repository migration, let the agent run tests and revise its changes, then review the result. Configure its permissions, credentials, and stopping conditions before starting work. It can still pause for your input when needed. These are ways of working, not separate sandbox types. A coding harness can support both. The harness manages the agent loop, model context, tool selection, and delegation. CoreWeave supplies the compute and filesystem where tools run. A longer sandbox lifetime gives the agent more execution time, but conversation compaction and task recovery depend on the harness.Choose an integration
The following integrations execute commands in a CoreWeave sandbox. The location of the agent loop and the interface you use differ:
The CLI example starts an interactive agent in a workspace you manage. The Managed Agents and Devin Outposts examples start workers that reuse a sandbox across queued sessions. Ending one provider session doesn’t stop that worker sandbox.
Model inference remains with the provider configured for your agent. Running tools in a sandbox doesn’t prevent the agent from sending prompts, file contents, or tool output to that provider. Review its data-handling requirements before connecting your workspace.
Build your own integration
Use the Sandbox SDK to create an environment, execute tool calls, collect results, and stop compute from your own harness. Start with command execution, file operations, and cleanup patterns.Get started with cws-agent
cws-agent automates sandbox creation, agent installation, and workspace management. Each integration guide includes a quick-start path where the tool supports that workflow, plus direct setup with the Sandbox SDK. You can use either path independently.
Follow the installation instructions, then choose an integration guide. These guides use a W&B API key for sandbox access. Authenticate to the agent provider separately. For other sandbox credentials, see Choose a credential. The SANDBOX_USER Identity and Access Management (IAM) action applies only to CoreWeave API access tokens, not W&B keys.
CWSANDBOX_API_KEY makes cws-agent select W&B authentication.
For configuration imports, parallel sessions, and saving or restoring workspaces, see the cws-agent documentation. You don’t need cws-agent to integrate a harness directly.
Choose where sandboxes run
Serverless placement uses capacity CoreWeave operates. It’s the starting point in these guides. Use CoreWeave Kubernetes Service (CKS) placement when you need your own cluster placement and sandbox policy. Your administrator deploys the runner and configures the network and resource constraints. Agents require outbound access to their provider and any package or source hosts they use.Run longer sessions
The lifetime is a wall-clock limit, including startup, and can’t be extended after creation. It doesn’t guarantee that the agent finishes or recovers from interruptions. Serverless sandboxes default to a 10-minute lifetime when you omitmax_lifetime_seconds. A CKS runner can supply a different policy default. Set the lifetime explicitly at creation, allowing time for setup and the task.
Set a serverless sandbox lifetime
After completing SDK installation and authentication, use this creation request for a sandbox with a 24-hour lifetime. The Python client requires thewandb extra. TypeScript uses the W&B client entry point:
- Python
- TypeScript
withSandbox() stops it when its callback finishes. A with Sandbox.run(...) block stops it when the block exits. Sandboxes created through an SDK Session stop when that session closes, including during process-exit cleanup.
With cws-agent installed and authenticated, set the same lifetime when launching Claude Code. Replace [SANDBOX-NAME] with a cws-agent session name for your workspace. Use 1 to 40 lowercase letters, digits, or hyphens, starting with a letter or digit:
tmux guide for detach and reconnect instructions. A detached session can still wait for an approval or login.
Configure CKS placement and policy
CKS placement requires a CoreWeave API access token and itsSANDBOX_USER IAM action. W&B keys cover the serverless examples in this guide. Follow CKS authentication and setup. In Python, use auth=AuthStrategy.COREWEAVE_API_KEY, the same max_lifetime_seconds field, placement_mode="cks", and runner_ids=["[RUNNER-ID]"]. Replace [RUNNER-ID] with your cluster’s runner ID. In TypeScript, use the @coreweave/cwsandbox/node entry point with CWSANDBOX_API_KEY, set runnerIds: ["[RUNNER-ID]"] to select CKS, and use maxLifetimeSeconds for the lifetime.
The runner must have a configured policy. The resource ceilings must accommodate the creation request. Retain other constraints and any higher ceilings needed by existing workloads. Policy writes replace the entire document, and changes apply to newly created sandboxes.
To make 24 hours the default for requests that omit a lifetime, have the administrator edit the existing policy with the CoreWeave Intelligent CLI:
constraints object. This is a policy fragment, not a complete replacement document:
defaultLifetimeSeconds. The platform maximum is 30 days. The policy has no maxLifetimeSeconds field to raise.
To permit provider connections, also configure network egress: allowedEgress permits requested destinations, while defaultEgress supplies access when the request omits egress rules. An allowance alone doesn’t grant access.
Keep execution time and conversation state separate
A tool command’stimeout_seconds is separate from the sandbox lifetime. Give long builds and tests an appropriate command timeout. For unattended tasks, use the harness’s supported background execution and recovery features, and save intermediate results. See command timeouts and sandbox lifecycle.
Delegate work to subagents
Configure subagents in your harness. No sandbox creation flag enables subagents. For example, Claude Code includes built-in subagents. In an interactive session, ask it to split independent investigations:.claude/agents/test-reader.md
test-reader for a specific task. Delegation is available by default. A permissions.deny rule for the parent agent’s Agent tool blocks delegation. For tool permissions and other options, see Claude Code subagent configuration.
Subagents using one sandbox share its compute and filesystem. Size CPU and memory for concurrent tools, and avoid simultaneous edits to the same files. When workers need independent credentials or isolation, use separate sandboxes.
For separate coding tasks, cws-agent parallel sessions provide separate Git worktrees within one sandbox. These are independent sessions, not harness-managed subagents or separate security boundaries.
Use tools efficiently
Prepare the environment so agents can spend time on the task:-
Install recurring dependencies in the image. Pass a prepared
container_imageat creation to avoid installing the same test tools and runtimes for every session. See sandbox configuration. -
Select the tools the task needs. Configure skills and Model Context Protocol (MCP) servers in the harness. For a Claude Code CLI session managed by
cws-agent, preview local configuration and import selected items into its sandbox:Configuration import isn’t available for Claude Managed Agents workers. Thesynccommand prompts for selections and confirmation. Restart the agent to load the changes. Install required executables in the sandbox and replace laptop-only paths. See skills and MCP imports. - Return focused results. Have tools filter or summarize data in the sandbox before returning it to the model. For example, save full test output to a file and return failed test names and a short failure summary. Keep the file available for follow-up inspection.
- Parallelize independent operations. When resources allow, run independent checks concurrently. Wait for prerequisites before dependent steps. The SDK execution guide shows how to start commands and collect results.