What problem does it solve? Setting up persistent services like SSH on Termux fails frequently due to Android battery optimizations, Google Play versus F-Droid build differences, and platform incompatibilities with Python packages, leaving users with servers that die after reboot or screen-off. ## Core Features & Use Cases - SSH Server Setup: Install and configure OpenSSH on port 8022 with key-based authentication, authorized_keys setup, and config validation via sshd -t. - Boot Automation: Deploy auto-start scripts in ~/.termux/boot/ with termux-wake-lock and EXIT-trap cleanup so sshd survives reboots and screen-off without leaking wake-locks. - Python Package Workarounds: Bypass pip's manylinux wheel rejection on Android by using Termux repo packages, PYTHONPATH exports, or manual wheel extraction. - Use Case: You want to SSH into your Android phone from your laptop at any time. This Skill walks through installing openssh, deploying keys via heredoc (since write_file blocks ~/.ssh/), creating a boot script, and disabling battery optimization so the connection survives reboots. ## Quick Start Set up an SSH server on my Termux installation that starts automatically at boot and survives screen-off.