Claude-skill-registry agentuity-cli-cloud-sandbox-snapshot-delete
Delete a snapshot. 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-delete" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-snapshot-delete && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-snapshot-delete/SKILL.mdsource content
Cloud Sandbox Snapshot Delete
Delete a snapshot
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox snapshot delete <snapshotId> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | No | | Skip confirmation prompt |
Examples
Delete a snapshot:
bunx @agentuity/cli cloud sandbox snapshot delete snp_abc123
Delete without confirmation prompt:
bunx @agentuity/cli cloud sandbox snapshot rm snp_abc123 --confirm
Output
Returns JSON object:
{ "success": "boolean", "snapshotId": "string", "message": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether the operation succeeded |
| string | Deleted snapshot ID |
| string | Status message |