# 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.

- Skill: `rtwsvj/ssh-config-tips` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rtwsvj/ssh-config-tips`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rtwsvj/ssh-config-tips/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: rtwsvj (https://skillmd.com/u/rtwsvj)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rtwsvj/ssh-config-tips

---


# 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.

