Notre avis
Ajoute une clé publique SSH à votre compte Agentuity à partir d'un fichier ou de l'entrée standard.
Points forts
- Permet l'authentification par clé SSH pour les déploiements
- Prend en charge plusieurs formats de clés (RSA, Ed25519)
- Peut lire les clés depuis un fichier ou stdin
- Retourne des informations détaillées comme l'empreinte et le type de clé
Limites
- Nécessite d'être préalablement authentifié via agentuity auth login
- Ne gère pas la génération de clés
- Opération lente (indiquée par le tag slow)
Lorsque vous devez associer une clé SSH publique existante à votre compte Agentuity pour des déploiements sécurisés.
Si vous n'avez pas encore généré de paire de clés SSH ou si vous utilisez une autre méthode d'authentification comme les tokens personnels.
Analyse de sécurité
SûrThe skill provides instructions for adding an SSH public key via the agentuity CLI, requiring authentication. No destructive or exfiltrating actions are described; allowed tools are restricted to agentuity namespace, posing no meaningful risk.
Aucun point d'attention détecté
Exemples
Add my SSH public key from ~/.ssh/id_ed25519.pub to my Agentuity account.Add the deploy key from ./deploy_key.pub to my Agentuity account.Add the SSH public key that I'm about to pipe to you to my Agentuity account.name: agentuity-cli-auth-ssh-add description: Add an SSH public key to your account (reads from file or stdin). Requires authentication. Use for managing authentication credentials version: "0.1.24" license: Apache-2.0 allowed-tools: "Bash(agentuity:*)" metadata: command: "agentuity auth ssh add" tags: "mutating creates-resource slow requires-auth uses-stdin"
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 |
Architecte Docker Compose
DevOps
Concoit des configurations Docker Compose optimisees.
Rapport de Post-Mortem
DevOps
Rédige des rapports post-mortem d'incidents structurés et blameless.
Créateur de Runbooks
DevOps
Crée des runbooks opérationnels clairs pour les procédures DevOps courantes.