Claude-skill-registry agentuity-cli-cloud-sandbox-download
Download files from a sandbox as a compressed archive. 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-download" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-download && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-download/SKILL.mdsource content
Cloud Sandbox Download
Download files from a sandbox as a compressed archive
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox download <sandboxId> <output> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Path in sandbox to download (defaults to root) |
| string | No | | Archive format (zip or tar.gz) |
Examples
Download sandbox files as tar.gz archive:
bunx @agentuity/cli cloud sandbox download sbx_abc123 ./backup.tar.gz
Download sandbox files as zip archive:
bunx @agentuity/cli cloud sandbox download sbx_abc123 ./backup.zip --format zip
Download only a specific directory:
bunx @agentuity/cli cloud sandbox download sbx_abc123 ./backup.tar.gz --path /subdir
Output
Returns JSON object:
{ "success": "boolean", "output": "string", "bytes": "number" }
| Field | Type | Description |
|---|---|---|
| boolean | - |
| string | - |
| number | - |