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.md
safety · 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 (
    --org-id
    or default org)

Usage

agentuity cloud storage get <name> [options]

Arguments

ArgumentTypeRequiredDescription
<name>
stringYes-

Options

OptionTypeRequiredDefaultDescription
--showCredentials
booleanYes-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"
}
FieldTypeDescription
bucket_name
stringStorage bucket name
access_key
stringS3 access key
secret_key
stringS3 secret key
region
stringS3 region
endpoint
stringS3 endpoint URL