smithery.ai

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

First seen Apr 8, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.24
LicenseApache-2.0
Allowed toolsBash(agentuity:*)
More metadata
command
agentuity auth ssh add
tags
mutating creates-resource slow requires-auth uses-stdin

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,562 B
  • docs SUMMARY.md 168 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

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