Claude-skill-registry agentuity-cli-cloud-secret-get
Get a secret value. 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-secret-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-secret-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-secret-get/SKILL.mdsource content
Cloud Secret Get
Get a secret value
Prerequisites
- Authenticated with
agentuity auth login - Project context required (run from project directory or use
)--project-id
Usage
agentuity cloud secret get <key> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | No | | mask the value in output (default: true in TTY, false otherwise) |
Examples
Get item details:
bunx @agentuity/cli secret get DATABASE_URL
Use no mask option:
bunx @agentuity/cli secret get STRIPE_SECRET_KEY --no-mask
Output
Returns JSON object:
{ "key": "string", "value": "string" }
| Field | Type | Description |
|---|---|---|
| string | Secret key name |
| string | Secret value |