Claude-skill-registry agentuity-cli-cloud-sandbox-list
List sandboxes with optional filtering. 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-list" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-list && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-list/SKILL.mdsource content
Cloud Sandbox List
List sandboxes with optional filtering
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox list [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Filter by status |
| string | Yes | - | Filter by project ID |
| boolean | Yes | - | List all sandboxes regardless of project context |
| number | Yes | - | Maximum number of results (default: 50, max: 100) |
| number | Yes | - | Pagination offset |
Examples
List all sandboxes:
bunx @agentuity/cli cloud sandbox list
List running sandboxes:
bunx @agentuity/cli cloud sandbox list --status running
List sandboxes for a specific project:
bunx @agentuity/cli cloud sandbox list --project-id proj_123
List with pagination:
bunx @agentuity/cli cloud sandbox list --limit 10 --offset 20
List all sandboxes regardless of project context:
bunx @agentuity/cli cloud sandbox list --all
Output
Returns JSON object:
{ "sandboxes": "array", "total": "number" }
| Field | Type | Description |
|---|---|---|
| array | List of sandboxes |
| number | Total count |