Claude-skill-registry agentuity-cli-cloud-env-import
Import environment variables from a file to cloud and local .env. 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-env-import" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-env-import && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-env-import/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- references .env files
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Cloud Env Import
Import environment variables from a file to cloud and local .env
Prerequisites
- Authenticated with
agentuity auth login - Project context required (run from project directory or use
)--project-id
Usage
agentuity cloud env import <file>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Import environment variables from .env file:
bunx @agentuity/cli cloud env import .env
Import from .env.local file:
bunx @agentuity/cli cloud env import .env.local
Output
Returns JSON object:
{ "success": "boolean", "imported": "number", "skipped": "number", "path": "string", "file": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether import succeeded |
| number | Number of items imported |
| number | Number of items skipped |
| string | Local file path where variables were saved |
| string | Source file path |