Claude Code Plugins

Community-maintained marketplace

Feedback

agentuity-cli-cloud-env-get

@agentuity/discord-help-agent
1
0

Get an environment variable value. Requires authentication. Use for Agentuity cloud platform operations

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name agentuity-cli-cloud-env-get
description Get an environment variable value. Requires authentication. Use for Agentuity cloud platform operations
version 0.0.110
license Apache-2.0
allowed-tools Bash(agentuity:*)
argument-hint <key>
metadata [object Object]

Cloud Env Get

Get an environment variable value

Prerequisites

  • Authenticated with agentuity auth login
  • Project context required (run from project directory or use --project-id)

Usage

agentuity cloud env get <key> [options]

Arguments

Argument Type Required Description
<key> string Yes -

Options

Option Type Required Default Description
--mask boolean No false mask the value in output (default: true in TTY, false otherwise)

Examples

Get item details:

bunx @agentuity/cli env get NODE_ENV

Get item details:

bunx @agentuity/cli env get LOG_LEVEL

Output

Returns JSON object:

{
  "key": "string",
  "value": "string"
}
Field Type Description
key string Environment variable key name
value string Environment variable value