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.md
safety · 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

OptionTypeRequiredDefaultDescription
--force
booleanNo
false
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"
}
FieldTypeDescription
success
booleanWhether pull succeeded
pulled
numberNumber of items pulled
path
stringLocal file path where secrets were saved
force
booleanWhether force mode was used