SSH (Secure Shell) provides encrypted remote access, file transfer, and tunneling over untrusted networks. OpenSSH is the standard implementation on Linux, macOS, and Windows (via built-in client). The client configuration lives at /.ssh/config and supports per-host settings, identity management, and connection reuse.
When to use: Remote server management, secure file transfers, port forwarding, jump host traversal, automated deployments, SOCKS proxying.
When NOT to use: High-throughput bulk data transfer across WANs (use Globus or similar), GUI-heavy remote desktop (use VNC/RDP), container orchestration (use kubectl/docker CLI).
Шаблоны удаленного доступа SSH и утилиты безопасной оболочки. Охватывает соединения, управление конфигурацией, генерацию ключей (Ed25519, FIDO2), туннелирование, переадресацию портов, передачу файлов и мультиплексирование. Используйте при подключении к серверам, управлении ключами SSH, настройке туннелей, передаче файлов через SSH, настройке переходных хостов или усилении доступа по SSH. Источник: oakoss/agent-skills.