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