com um clique
ssh-helper
Secure Shell (SSH) configuration and key management.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Secure Shell (SSH) configuration and key management.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Essential file system operations.
Common Git version control operations.
Upload, download, and edit files on remote servers via NAVIG
Summarize web pages, articles, YouTube videos, and documents using AI
Query and manage databases on remote servers via NAVIG
Check GitHub repos, CI status, PRs, and issues using the gh CLI
| name | ssh-helper |
| description | Secure Shell (SSH) configuration and key management. |
| metadata | {"navig":{"emoji":"🔑","requires":{"bins":["ssh","ssh-keygen"],"config":["~/.ssh/config"]}}} |
Manage your SSH keys and configurations to ensure secure and seamless connectivity to all your hosts.
# Generate a new secure key (Ed25519 is comprehensive best practice)
navig run "ssh-keygen -t ed25519 -C 'agent@navig' -f ~/.ssh/id_navig_ed25519 -N ''"
# View public key for distribution
navig file show ~/.ssh/id_navig_ed25519.pub
Optimize your SSH connection sharing and timeouts.
Recommended Config (~/.ssh/config):
Host *
ControlMaster auto
ControlPath ~/.ssh/sockets/%r@%h-%p
ControlPersist 600
ServerAliveInterval 60
ServerAliveCountMax 3
Apply Config:
# Upload standard config
navig file add ./templates/ssh/config ~/.ssh/config --mode 600
# Debug a connection
navig run "ssh -v user@host 'echo Connection Successful'"
ControlMaster to speed up sequential commands by reusing the TCP connection.~/.ssh is 700 and keys are 600.