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.md
source content

Cloud Storage Download

Download a file from storage bucket

Prerequisites

  • Authenticated with
    agentuity auth login
  • Organization context required (
    --org-id
    or default org)

Usage

agentuity cloud storage download <name> <filename> [output] [options]

Arguments

ArgumentTypeRequiredDescription
<name>
stringYes-
<filename>
stringYes-
<output>
stringNo-

Options

OptionTypeRequiredDefaultDescription
--metadata
booleanYes-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"
}
FieldTypeDescription
success
booleanWhether download succeeded
bucket
stringBucket name
filename
stringDownloaded filename
size
numberFile size in bytes
contentType
stringContent type
lastModified
stringLast modified timestamp