devin worker process that connects to Devin Cloud over outbound HTTPS, claims sessions from the queue, and runs them locally. It doesn’t require inbound ports, a public IP address, or a virtual private network (VPN). Here, one sandbox runs one worker, and that worker serves sessions one after another for as long as the sandbox lives.
Each worker serves one active session at a time. Additional sessions wait until a worker becomes available. This guide starts a fixed number of workers. It doesn’t create more sandboxes when sessions queue. Start more workers manually or use an orchestrator to provision them automatically.
CoreWeave Serverless sandboxes are in public preview.
Prerequisites
Before you begin, make sure you have the following:- A Devin organization with Outposts enabled. If you don’t see Outposts under Settings > Environment in Devin Cloud, ask your Devin administrator.
- A W&B API key. These examples use W&B authentication. For other credentials, see Choose a credential.
- For the direct software development kit (SDK) path, either Python 3.11 or later with
uv, or Node.js 22 or later.
cws-agent selects W&B authentication:
SANDBOX_USER identity and access management (IAM) action separately. If you authenticate with a CoreWeave API access token, grant that action to its principal.
Create an outpost in Devin Cloud
To create an outpost and get its token, follow these steps:- In Devin Cloud, go to Settings > Environment > Outposts.
- Click Create Outpost, enter a name, and select Linux.
- Copy the outpost token. Devin Cloud shows it once.
cws-agent or the Sandbox SDK to start its worker, then run the verification session.
Quick start with cws-agent
Follow thecws-agent installation instructions. The tool configures a snapshot volume to save and restore your workspace with file system snapshots.
Replace [OUTPOST-TOKEN] with the token you copied, [OUTPOST-NAME] with your outpost name, and [SANDBOX-NAME] with a cws-agent session name for this sandbox. For the session name, use 1 to 40 lowercase letters, digits, or hyphens, starting with a letter or digit:
--agent devin.
Set up with the Sandbox SDK
Use this alternative to launch a worker directly, withoutcws-agent. It doesn’t configure persistent storage.
Run Python snippets in the virtual environment created in Configure credentials and install the client. Save TypeScript snippets as .mts files in the project where you install the client, then run them with npx tsx [FILENAME].mts.
Configure credentials and install the client
Export the token you copied when creating the outpost in the terminal where you run the script:- Python
- TypeScript
Use Python 3.11 or later and
uv:Start the worker
The following script creates a sandbox from Cognition’s official worker image and runsdevin worker as the sandbox’s main command. The client reads DEVIN_OUTPOSTS_TOKEN from your local environment and passes its value in the sandbox request to set the worker’s environment variable. The worker’s output becomes the sandbox log. If the worker exits with an error, the platform restarts the container up to a retry limit.
- Python
- TypeScript
start_outpost_worker.py
- Python
- TypeScript
sandbox.wait() returns when the sandbox is running or has already completed. Installation and worker authentication can still be in progress, so check the worker before submitting a task. The worker starts from /workspace. A session for your-org/app checks out its repository under /workspace/repos/app.
The script doesn’t use a with block, so a running sandbox continues after the script exits.
Optional: Use a secret store
To pass a reference instead of the outpost token value, save the token in a secret store available to your organization. Obtain the store and entry names for your environment.- Python
- TypeScript
Import
Secret from cwsandbox, remove DEVIN_OUTPOSTS_TOKEN from environment_variables, and add secrets=[Secret(store="[SECRET-STORE]", name="[SECRET-NAME]", env_var="DEVIN_OUTPOSTS_TOKEN")] to Sandbox.run().Run and verify a Devin session
Use an outpost with only this worker and no other queued or active sessions for the test. Choose a unique, non-secret value for this test and replace[PROOF-VALUE] in the following task. In Devin Cloud, start a new session and select your outpost under Configuration > Virtual environment. Submit the following task, beginning with Write the exact text. Or, in Slack, send the full message:
[SANDBOX-NAME] with your cws-agent workspace name or [SANDBOX-ID] with the ID printed by the SDK script:
- cws-agent
- Sandbox SDK
Check the worker and stop it
Forcws-agent, attach to the worker terminal as shown in the quick start. For the SDK path, inspect its status and recent logs. Replace [SANDBOX-ID] with the printed ID:
- Python
- TypeScript
account.outposts.write). Correct the credential, then create the sandbox again.
A sandbox can report running while its worker repeatedly exits and restarts. Inspect its logs and, with the Python client, the per-container details shown in the preceding example.
Stop a worker that keeps failing authentication before creating its replacement. If startup fails without a useful reason, retain the sandbox ID and logs for CoreWeave Support.
Stop the sandbox when you no longer need the worker. See serverless sandbox availability and billing for the current terms.
Wait for the active Devin session to finish and save its results, then stop compute using the command for your setup:
- cws-agent
- Sandbox SDK
down snapshots the workspace before stopping. If capture fails, inspect the reported error and cws-agent status [SANDBOX-NAME], then resolve the failure before retrying. If you can discard unsaved changes, use cws-agent down [SANDBOX-NAME] --no-snapshot.cws-agent workspace, see its Devin Outposts guide.
Optional: Customize the environment
You can customize the worker environment in the following ways:-
Bring your own image. The official image contains the
devinCLI and little else. Build an image from it that adds your toolchain, and pass it ascontainer_imagein Python orcontainerImagein TypeScript. Devin requiresgit. Screen recording requiresffmpeg, and the browser and computer-use tools require a compatible browser binary. For amd64 images based on the official Ubuntu image, install Google Chrome. Ubuntu’schromiumpackage is a snap stub that doesn’t work in containers. See Devin’s container setup. Computer use also requires a running graphical display, such as Xvfb, withDISPLAYset for the worker. The worker searches standard install locations. If it doesn’t find your binary, setDEVIN_CHROME_PATHto its absolute path. See the Devin Outposts reference. - Configure GPUs. See sandbox GPU configuration for the available options. This guide’s worker example uses CPU resources only.
- Run more workers. A worker serves one session at a time. Run the script again with the same outpost name to start another worker for the queue.
- Create one sandbox per session. The worker here reuses its sandbox across sessions. For a fresh sandbox per session, see Devin’s orchestration guide.