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

Cloud Sandbox Snapshot Create

Create a snapshot from a sandbox

Prerequisites

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

Usage

agentuity cloud sandbox snapshot create <sandboxId> [options]

Arguments

ArgumentTypeRequiredDescription
<sandboxId>
stringYes-

Options

OptionTypeRequiredDefaultDescription
--tag
stringYes-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"
}
FieldTypeDescription
snapshotId
stringSnapshot ID
sandboxId
stringSource sandbox ID
tag
unknownSnapshot tag
sizeBytes
numberSnapshot size in bytes
fileCount
numberNumber of files in snapshot
createdAt
stringSnapshot creation timestamp