Claude-skill-registry agentuity-cli-cloud-storage-get
Show details about a specific 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-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-storage-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-storage-get/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- references API keys
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Cloud Storage Get
Show details about a specific storage bucket
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud storage get <name> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | Yes | - | Show credentials in plain text (default: masked in terminal, unmasked in JSON) |
Examples
Get bucket details:
bunx @agentuity/cli cloud storage get my-bucket
Show bucket information:
bunx @agentuity/cli cloud storage show my-bucket
Get bucket with credentials:
bunx @agentuity/cli cloud storage get my-bucket --show-credentials
Output
Returns JSON object:
{ "bucket_name": "string", "access_key": "string", "secret_key": "string", "region": "string", "endpoint": "string" }
| Field | Type | Description |
|---|---|---|
| string | Storage bucket name |
| string | S3 access key |
| string | S3 secret key |
| string | S3 region |
| string | S3 endpoint URL |