infra-manage-ssh-services
Installation
SKILL.md
Works with SSH commands, Docker remote management, and infrastructure health checks.
Infrastructure SSH Service Management
Quick Start
Discover available infrastructure:
# List all hosts and their status
ping -c 1 -W 1 infra.local && echo "✅ infra.local (primary)" || echo "❌ infra.local"
ping -c 1 -W 1 192.168.68.135 && echo "✅ deus (development)" || echo "❌ deus"
ping -c 1 -W 1 homeassistant.local && echo "✅ homeassistant.local" || echo "❌ homeassistant.local"
Check primary infrastructure services:
# View all running Docker services on infra.local
ssh infra "docker ps --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}'"