Claude-skill-registry agentuity-cli-cloud-sandbox-get
Get information about a sandbox. Requires authentication. Use for Agentuity cloud platform operations
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-cloud-sandbox-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-get/SKILL.mdsource content
Cloud Sandbox Get
Get information about a sandbox
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox get <sandboxId>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Get sandbox information:
bunx @agentuity/cli cloud sandbox get abc123
Output
Returns JSON object:
{ "sandboxId": "string", "status": "string", "createdAt": "string", "region": "string", "snapshotId": "string", "snapshotTag": "string", "executions": "number", "stdoutStreamUrl": "string", "stderrStreamUrl": "string", "dependencies": "array", "metadata": "object", "resources": "object" }
| Field | Type | Description |
|---|---|---|
| string | Sandbox ID |
| string | Current status |
| string | Creation timestamp |
| string | Region where sandbox is running |
| string | Snapshot ID sandbox was created from |
| string | Snapshot tag sandbox was created from |
| number | Number of executions |
| string | URL to stdout output stream |
| string | URL to stderr output stream |
| array | Apt packages installed |
| object | User-defined metadata |
| object | Resource limits |