Claude-skill-registry agentuity-cli-cloud-storage-download
Download a file from storage bucket. 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-storage-download" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-storage-download && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-storage-download/SKILL.mdsource content
Cloud Storage Download
Download a file from storage bucket
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud storage download <name> <filename> [output] [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
| string | Yes | - |
| string | No | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | Yes | - | Download metadata only (not file contents) |
Examples
Download file from bucket:
bunx @agentuity/cli cloud storage download my-bucket file.txt
Download file to specific path:
bunx @agentuity/cli cloud storage download my-bucket file.txt output.txt
Download file to stdout:
bunx @agentuity/cli cloud storage download my-bucket file.txt - > output.txt
Download metadata only:
bunx @agentuity/cli cloud storage download my-bucket file.txt --metadata
Output
Returns JSON object:
{ "success": "boolean", "bucket": "string", "filename": "string", "size": "number", "contentType": "string", "lastModified": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether download succeeded |
| string | Bucket name |
| string | Downloaded filename |
| number | File size in bytes |
| string | Content type |
| string | Last modified timestamp |