Claude-skill-registry agentuity-cli-auth-ssh-add
Add an SSH public key to your account (reads from file or stdin). Requires authentication. Use for managing authentication credentials
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-auth-ssh-add" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-auth-ssh-add && rm -rf "$T"
manifest:
skills/data/agentuity-cli-auth-ssh-add/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- reads SSH private key
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Auth Ssh Add
Add an SSH public key to your account (reads from file or stdin)
Prerequisites
- Authenticated with
agentuity auth login
Usage
agentuity auth ssh add [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | File containing the public key |
Examples
Add SSH key interactively:
bunx @agentuity/cli auth ssh add
Add SSH key from file:
bunx @agentuity/cli auth ssh add --file ~/.ssh/id_ed25519.pub
Add deploy key from file:
bunx @agentuity/cli auth ssh add --file ./deploy_key.pub
Add SSH key from stdin:
cat ~/.ssh/id_rsa.pub | bunx @agentuity/cli auth ssh add
Output
Returns JSON object:
{ "success": "boolean", "fingerprint": "string", "keyType": "string", "added": "number" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether the operation succeeded |
| string | SSH key fingerprint |
| string | SSH key type (e.g., ssh-rsa, ssh-ed25519) |
| number | Number of keys added |