Claude-skill-registry agentuity-cli-cloud-storage-list
List storage resources or files in a 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-list" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-storage-list && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-storage-list/SKILL.mdsource content
Cloud Storage List
List storage resources or files in a bucket
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud storage list [name] [prefix] [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | No | - |
| string | No | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | Yes | - | Show credentials in plain text (default: masked in terminal, unmasked in JSON) |
| boolean | Yes | - | Print the name only |
Examples
List items:
bunx @agentuity/cli cloud storage list
List items:
bunx @agentuity/cli cloud storage list my-bucket
List items:
bunx @agentuity/cli cloud storage list my-bucket path/prefix
Show output in JSON format:
bunx @agentuity/cli --json cloud storage list
List items:
bunx @agentuity/cli cloud storage ls
Use show credentials option:
bunx @agentuity/cli cloud storage list --show-credentials
Output
Returns JSON object:
{ "buckets": "array", "files": "array" }
| Field | Type | Description |
|---|---|---|
| array | List of storage resources |
| array | List of files in bucket |