Agent skill
agentuity-cli-cloud-sandbox-get
Get information about a sandbox. Requires authentication. Use for Agentuity cloud platform operations
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/agentuity-cli-cloud-sandbox-get
Metadata
Additional technical details for this skill
- tags
- read-only fast requires-auth
- command
- agentuity cloud sandbox get
SKILL.md
Cloud Sandbox Get
Get information about a sandbox
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
--org-idor default org)
Usage
bash
agentuity cloud sandbox get <sandboxId>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
<sandboxId> |
string | Yes | - |
Examples
Get sandbox information:
bash
bunx @agentuity/cli cloud sandbox get abc123
Output
Returns JSON object:
json
{
"sandboxId": "string",
"status": "string",
"createdAt": "string",
"region": "string",
"snapshotId": "string",
"snapshotTag": "string",
"executions": "number",
"stdoutStreamUrl": "string",
"stderrStreamUrl": "string",
"dependencies": "array"
}
| Field | Type | Description |
|---|---|---|
sandboxId |
string | Sandbox ID |
status |
string | Current status |
createdAt |
string | Creation timestamp |
region |
string | Region where sandbox is running |
snapshotId |
string | Snapshot ID sandbox was created from |
snapshotTag |
string | Snapshot tag sandbox was created from |
executions |
number | Number of executions |
stdoutStreamUrl |
string | URL to stdout output stream |
stderrStreamUrl |
string | URL to stderr output stream |
dependencies |
array | Apt packages installed |
Didn't find tool you were looking for?