Get a secret value. Requires authentication. Use for Agentuity cloud platform operations
Scanned 6/3/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill agentuity-cli-cloud-secret-get --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agentuity Cli Cloud Secret Get?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-agentuity-cli-cloud-secret-get)More formats (shields.io, HTML) on the badges page.
---
name: agentuity-cli-cloud-secret-get
description: Get a secret value. Requires authentication. Use for Agentuity cloud platform operations
version: "0.1.2"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "<key>"
metadata:
command: "agentuity cloud secret get"
tags: "read-only fast requires-auth requires-project"
---
# 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
```bash
agentuity cloud secret get <key> [options]
```
## Arguments
| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<key>` | string | Yes | - |
## Options
| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--mask` | boolean | No | `true` | mask the value in output (default: true in TTY, false otherwise) |
## Examples
Get item details:
```bash
bunx @agentuity/cli secret get DATABASE_URL
```
Use no mask option:
```bash
bunx @agentuity/cli secret get STRIPE_SECRET_KEY --no-mask
```
## Output
Returns JSON object:
```json
{
"key": "string",
"value": "string"
}
```
| Field | Type | Description |
|-------|------|-------------|
| `key` | string | Secret key name |
| `value` | string | Secret value |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!