Arguments
| Argument | Required | Description |
|---|---|---|
project_id | Yes | The project UUID |
commands | Yes | One or more bash commands to run in the sandbox |
Options
| Option | Description |
|---|---|
--parallel | Run commands in parallel instead of sequentially |
Behavior
- Single command: stdout and stderr are written directly to their respective streams (no header)
- Multiple commands: each result is prefixed with a
> {command}header (dimmed) before its output --parallel: all commands run concurrently; results are printed in the order they were given- The process exits with the last non-zero exit code, or
0if all commands succeed - Suitable for scripting and AI agent tool use