Claude-skill-registry agentuity-cli-cloud-sandbox-snapshot-create
Create a snapshot from 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-snapshot-create" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-snapshot-create && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-snapshot-create/SKILL.mdsource content
Cloud Sandbox Snapshot Create
Create a snapshot from a sandbox
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox snapshot create <sandboxId> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Tag for the snapshot |
Examples
Create a snapshot from a sandbox:
bunx @agentuity/cli cloud sandbox snapshot create sbx_abc123
Create a tagged snapshot:
bunx @agentuity/cli cloud sandbox snapshot create sbx_abc123 --tag latest
Output
Returns JSON object:
{ "snapshotId": "string", "sandboxId": "string", "tag": "unknown", "sizeBytes": "number", "fileCount": "number", "createdAt": "string" }
| Field | Type | Description |
|---|---|---|
| string | Snapshot ID |
| string | Source sandbox ID |
| unknown | Snapshot tag |
| number | Snapshot size in bytes |
| number | Number of files in snapshot |
| string | Snapshot creation timestamp |