Claude-skill-registry agentuity-cli-profile-show
Show the configuration of a profile
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-profile-show" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-profile-show && rm -rf "$T"
manifest:
skills/data/agentuity-cli-profile-show/SKILL.mdsource content
Profile Show
Show the configuration of a profile
Usage
agentuity profile show [name]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | No | - |
Examples
Show details:
bunx @agentuity/cli profile show
Show details:
bunx @agentuity/cli profile show production
Show output in JSON format:
bunx @agentuity/cli profile show staging --json
Output
Returns JSON object:
{ "name": "string", "auth": "object", "devmode": "object", "overrides": "unknown", "preferences": "object", "gravity": "object" }
| Field | Type | Description |
|---|---|---|
| string | Profile name |
| object | Authentication credentials (managed by login/logout commands) |
| object | Development mode configuration |
| unknown | URL and behavior overrides |
| object | User preferences |
| object | the gravity client information |