#!/usr/bin/env bash set -euo pipefail # Placeholder installer. Real implementation will arrive after the skeleton server exists. # Target UX: # curl -fsSL https://hermes-mobile.molberg.cloud/install.sh | bash echo "Hermes Mobile installer placeholder" echo "This repo is currently a planning scaffold; no companion server is installed yet." echo if command -v hermes >/dev/null 2>&1; then echo "Detected Hermes CLI: $(command -v hermes)" else echo "Hermes CLI not found in PATH." fi echo "Planned install docs: docs/INSTALL.md"