Generate deploy and rotate SSH keys agents and hardening
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill ssh-key-management --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ssh Key Management?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-ssh-key-management)More formats (shields.io, HTML) on the badges page.
---
name: ssh-key-management
description: "Generate deploy and rotate SSH keys agents and hardening"
---
# SSH Key Management
## Generate
```bash
ssh-keygen -t ed25519 -C "your@email.com"
```
## Deploy
```bash
ssh-copy-id user@host
# Or manually:
cat ~/.ssh/id_ed25519.pub | ssh user@host "cat >> ~/.ssh/authorized_keys"
```
## Agent
```bash
eval $(ssh-agent -s)
ssh-add ~/.ssh/id_ed25519
```
## Config
```sshconfig
Host myserver
HostName 192.168.1.100
User ubuntu
IdentityFile ~/.ssh/id_ed25519
Port 2222
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!