What problem does it solve? Managing multiple servers and routers requires remembering hostnames, ports, and credentials, and file transfers often fail on minimal systems like OpenWrt that lack sftp-server. This Skill standardizes authorized SSH operations by using aliases from ~/.ssh/config. ## Core Features & Use Cases - Alias-Based Connections: Connect to servers and routers using aliases defined in ~/.ssh/config, with ~/.ssh/AGENTS.md as the host index. - Remote Command Execution: Run commands on remote hosts, e.g. ssh ALIAS 'uname -a; pwd', and inspect effective config with ssh -G ALIAS. - File Transfer Without scp: Pipe files via stdin (cat local | ssh ALIAS 'cat > /remote/path') or stream tar archives, avoiding sftp-server dependencies on OpenWrt. - Use Case: You need to deploy a config file to an OpenWrt router. Instead of scp failing due to missing sftp-server, stream the file over SSH and verify with a remote command. ## Quick Start Use the ssh skill to connect to my router alias and run uname -a to verify the connection.