Claude-skill-registry agentuity-cli-cloud-sandbox-snapshot-tag
Add or update a tag on 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-tag" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-snapshot-tag && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-snapshot-tag/SKILL.mdsource content
Cloud Sandbox Snapshot Tag
Add or update a tag on a snapshot
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox snapshot tag <snapshotId> [tag] [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
| string | No | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | Yes | - | Remove the tag from the snapshot |
Examples
Tag a snapshot as "latest":
bunx @agentuity/cli cloud sandbox snapshot tag snp_abc123 latest
Remove a tag from a snapshot:
bunx @agentuity/cli cloud sandbox snapshot tag snp_abc123 --clear
Output
Returns JSON object:
{ "snapshotId": "string", "tag": "unknown" }
| Field | Type | Description |
|---|---|---|
| string | Snapshot ID |
| unknown | New tag |