Ssh Config Tips

Explain how to organize your SSH config with host aliases and key settings. Use when the user asks about managing multiple SSH hosts.

rtwsvj 63d555d 490 B Updated

File contents

SSH Config Tips

Organize ~/.ssh/config with per-host blocks:

Host work
  HostName git.work.example
  User git
  IdentitiesOnly yes

This skill only edits the config file's host aliases. It never reads or transmits key material; generate keys yourself with ssh-keygen and keep private keys local.

rtwsvj/skill-switch/tree/main/tests/fixtures/skills-benign/ssh-config-tips commit 63d555d84e

Frequently asked questions

npx skillmds@latest add rtwsvj/ssh-config-tips