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.md
source content

Cloud Sandbox Snapshot Get

Get snapshot details

Prerequisites

  • Authenticated with
    agentuity auth login
  • Organization context required (
    --org-id
    or default org)

Usage

agentuity cloud sandbox snapshot get <snapshotId>

Arguments

ArgumentTypeRequiredDescription
<snapshotId>
stringYes-

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"
}
FieldTypeDescription
snapshotId
stringSnapshot ID
tag
unknownSnapshot tag
sizeBytes
numberSnapshot size in bytes
fileCount
numberNumber of files
parentSnapshotId
unknownParent snapshot ID
createdAt
stringCreation timestamp
downloadUrl
stringPresigned download URL
files
arrayFiles in snapshot
sandboxes
arrayAttached sandboxes (idle or running)