docs: initial Hermes Mobile planning scaffold

This commit is contained in:
Hermes Agent
2026-07-09 03:45:48 +00:00
commit 2cd4730324
14 changed files with 2139 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/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"