ez-ssh
Installation
SKILL.md
ez-ssh — SSH to Home Assistant
Setup
Requires SSH access to the HA host. Set these env vars (or .env file):
| Var | Description |
|---|---|
HA_SSH_HOST |
IP or hostname of the HA machine |
HA_SSH_PORT |
SSH port (default: 22) |
HA_SSH_USER |
SSH user (default: root) |
An SSH key must be available (e.g. ~/.ssh/id_ed25519 or ~/.ssh/id_rsa).
Quick connect
ssh -o StrictHostKeyChecking=no -p ${HA_SSH_PORT:-22} ${HA_SSH_USER:-root}@${HA_SSH_HOST}