Agent skill
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 this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/agentuity-cli-auth-ssh-add
Metadata
Additional technical details for this skill
- tags
- mutating creates-resource slow requires-auth
- command
- agentuity auth ssh add
SKILL.md
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 |
|---|---|---|---|---|
--file |
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 |
|---|---|---|
success |
boolean | Whether the operation succeeded |
fingerprint |
string | SSH key fingerprint |
keyType |
string | SSH key type (e.g., ssh-rsa, ssh-ed25519) |
added |
number | Number of keys added |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?