Claude-skill-registry agentuity-cli-cloud-secret-pull
Pull secrets from cloud to local .env file. 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-secret-pull" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-secret-pull && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-secret-pull/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 Secret Pull
Pull secrets from cloud to local .env file
Prerequisites
- Authenticated with
agentuity auth login - Project context required (run from project directory or use
)--project-id - cloud deploy
Usage
agentuity cloud secret pull [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | No | | overwrite local values with cloud values |
Examples
Run pull command:
bunx @agentuity/cli secret pull
Use force option:
bunx @agentuity/cli secret pull --force
Output
Returns JSON object:
{ "success": "boolean", "pulled": "number", "path": "string", "force": "boolean" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether pull succeeded |
| number | Number of items pulled |
| string | Local file path where secrets were saved |
| boolean | Whether force mode was used |