ssh
Installation
SKILL.md
SSH — Secure Remote Access
Core Capability: Secure shell connections, key management, tunneling, and file transfers.
Quick Start
# Connect to server
ssh user@hostname
# Connect with specific key
ssh -i ~/.ssh/my_key user@hostname
# Run remote command
ssh user@host "cd /app && git status"