feat: add hermes-config-sync script for automated state persistence

This commit is contained in:
Alexander Whitestone
2026-03-15 10:12:47 -04:00
parent 6490954006
commit 8ddbe06d73
2 changed files with 63 additions and 0 deletions

1
.gitignore vendored
View File

@@ -61,6 +61,7 @@ bin/*
!bin/hermes-claim
!bin/hermes-dispatch
!bin/hermes-enqueue
!bin/hermes-config-sync
# ── Queue (transient task queue) ─────────────────────────────────────
queue/

62
bin/hermes-config-sync Executable file
View File

@@ -0,0 +1,62 @@
#!/usr/bin/env bash
# hermes-config-sync — sync live ~/.hermes state into the hermes-config repo
# Usage: hermes-config-sync [commit message]
# If no message provided, generates one from changed files.
set -euo pipefail
HERMES_DIR="$HOME/.hermes"
REPO_DIR="$HOME/hermes-config"
if [ ! -d "$REPO_DIR/.git" ]; then
echo "ERROR: $REPO_DIR is not a git repo"
exit 1
fi
# ── Copy live files into repo ─────────────────────────────────────────
# Bin scripts
for f in "$HERMES_DIR"/bin/*; do
[ -f "$f" ] && cp "$f" "$REPO_DIR/bin/"
done
# Memories
cp "$HERMES_DIR/memories/MEMORY.md" "$REPO_DIR/memories/" 2>/dev/null || true
cp "$HERMES_DIR/memories/USER.md" "$REPO_DIR/memories/" 2>/dev/null || true
# Config (not secrets)
cp "$HERMES_DIR/config.yaml" "$REPO_DIR/" 2>/dev/null || true
cp "$HERMES_DIR/SOUL.md" "$REPO_DIR/" 2>/dev/null || true
cp "$HERMES_DIR/channel_directory.json" "$REPO_DIR/" 2>/dev/null || true
# Cron
cp "$HERMES_DIR/cron/jobs.json" "$REPO_DIR/cron/" 2>/dev/null || true
# Skills (full recursive sync, respecting .gitignore)
rsync -a --delete \
--exclude='.hub/' \
--exclude='.bundled_manifest' \
"$HERMES_DIR/skills/" "$REPO_DIR/skills/"
# ── Check for changes ────────────────────────────────────────────────
cd "$REPO_DIR"
git add -A
if git diff --cached --quiet; then
echo "Nothing to commit — already in sync."
exit 0
fi
# ── Commit ───────────────────────────────────────────────────────────
CHANGED=$(git diff --cached --name-only | wc -l | tr -d ' ')
if [ $# -gt 0 ]; then
MSG="$*"
else
FILES=$(git diff --cached --name-only | head -5 | tr '\n' ', ' | sed 's/,$//')
MSG="sync: ${CHANGED} files updated (${FILES})"
fi
git commit -m "$MSG"
# ── Push ─────────────────────────────────────────────────────────────
git push origin main 2>&1 | cat
echo "✓ Synced ${CHANGED} files to hermes/hermes-config"