Execute a command in a running sandbox. Requires authentication. Use for Agentuity cloud platform operations
Scanned 2/12/2026
Install via CLI
openskills install agentuity/docs---
name: agentuity-cli-cloud-sandbox-exec
description: Execute a command in a running sandbox. Requires authentication. Use for Agentuity cloud platform operations
version: "0.1.24"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "<sandboxId> <command...>"
metadata:
command: "agentuity cloud sandbox exec"
tags: "slow requires-auth"
---
# Cloud Sandbox Exec
Execute a command in a running sandbox
## Prerequisites
- Authenticated with `agentuity auth login`
- Organization context required (`--org-id` or default org)
## Usage
```bash
agentuity cloud sandbox exec <sandboxId> <command...> [options]
```
## Arguments
| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<sandboxId>` | string | Yes | - |
| `<command...>` | array | Yes | - |
## Options
| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--timeout` | string | Yes | - | Execution timeout (e.g., "5m", "1h") |
| `--timestamps` | boolean | No | `false` | Include timestamps in output (default: false) |
## Examples
Execute a command in a sandbox:
```bash
bunx @agentuity/cli cloud sandbox exec abc123 -- echo "hello"
```
Execute with timeout:
```bash
bunx @agentuity/cli cloud sandbox exec abc123 --timeout 5m -- bun run build
```
## Output
Returns JSON object:
```json
{
"executionId": "string",
"status": "string",
"exitCode": "number",
"durationMs": "number",
"output": "string"
}
```
| Field | Type | Description |
|-------|------|-------------|
| `executionId` | string | Unique execution identifier |
| `status` | string | Execution status |
| `exitCode` | number | Exit code (if completed) |
| `durationMs` | number | Duration in milliseconds (if completed) |
| `output` | string | Combined stdout/stderr output |
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...