
Agentuity Cli Cloud Env Set
- 1 installs
- Updated May 13, 2026
- agentuity/example-tanstack-turborepo
agentuity-cli-cloud-env-set is a Claude Code skill that documents the `agentuity cloud env set` command for setting an environment variable or secret on an Agentuity project.
About
agentuity-cli-cloud-env-set is a Claude Code skill documenting the Agentuity CLI command that sets an environment variable or secret for a project. It takes a key and value, supports a --secret flag to store the value encrypted and masked in the UI, and requires authentication plus project context. A developer uses it to configure environment variables and secrets for an Agentuity project from the terminal.
- Documents `agentuity cloud env set <key> <value>` to set an env var or secret
- Supports a --secret flag to store the value encrypted and masked in the UI
- Requires authentication and project context
Agentuity Cli Cloud Env Set by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,173 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
agentuity-cli-cloud-env-set capabilities & compatibility
- Capabilities
- env set · secrets management · cli command
- Use cases
- devops · security audit
- Runs
- Hosted SaaS
What agentuity-cli-cloud-env-set says it does
Set an environment variable or secret. Requires authentication. Use for Agentuity cloud platform operations
store as a secret (encrypted and masked in UI)
npx skills add https://github.com/agentuity/example-tanstack-turborepo --skill agentuity-cli-cloud-env-setAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 13, 2026 |
| Repository | agentuity/example-tanstack-turborepo ↗ |
What it does
Setting an environment variable or secret for an Agentuity project from the CLI.
Who is it for?
Configuring env vars and secrets on an Agentuity project
Skip if: Reading or listing existing env vars, or non-Agentuity platforms
When should I use this skill?
You need to set an environment variable or secret for an Agentuity project from the CLI.
What you get
An env var or masked secret persisted to the Agentuity project, with a JSON success result.
- A JSON result confirming the env var or secret was set
By the numbers
- 1 optional flag: --secret to store encrypted and masked
Files
Cloud Env Set
Set an environment variable or secret
Prerequisites
- Authenticated with
agentuity auth login - Project context required (run from project directory or use
--project-id)
Usage
agentuity cloud env set <key> <value> [options]Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
<key> | string | Yes | - |
<value> | string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--secret | boolean | No | false | store as a secret (encrypted and masked in UI) |
Examples
Set environment variable:
bunx @agentuity/cli env set NODE_ENV productionSet port number:
bunx @agentuity/cli env set PORT 3000Set a secret value:
bunx @agentuity/cli env set API_KEY "sk_..." --secretOutput
Returns JSON object:
{
"success": "boolean",
"key": "string",
"path": "string",
"secret": "boolean"
}| Field | Type | Description |
|---|---|---|
success | boolean | Whether the operation succeeded |
key | string | Environment variable key |
path | string | Local file path where env var was saved |
secret | boolean | Whether the value was stored as a secret |