Claude-skill-registry agentuity-cli-cloud-sandbox-snapshot-get
Get snapshot details. 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-snapshot-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-snapshot-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-snapshot-get/SKILL.mdsource content
Cloud Sandbox Snapshot Get
Get snapshot details
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox snapshot get <snapshotId>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Get details for a snapshot:
bunx @agentuity/cli cloud sandbox snapshot get snp_abc123
Output
Returns JSON object:
{ "snapshotId": "string", "tag": "unknown", "sizeBytes": "number", "fileCount": "number", "parentSnapshotId": "unknown", "createdAt": "string", "downloadUrl": "string", "files": "array", "sandboxes": "array" }
| Field | Type | Description |
|---|---|---|
| string | Snapshot ID |
| unknown | Snapshot tag |
| number | Snapshot size in bytes |
| number | Number of files |
| unknown | Parent snapshot ID |
| string | Creation timestamp |
| string | Presigned download URL |
| array | Files in snapshot |
| array | Attached sandboxes (idle or running) |