From 25375adee881fe6d972840e50049328f453d6a0d Mon Sep 17 00:00:00 2001 From: Horus Date: Fri, 10 Apr 2026 13:37:42 +0200 Subject: [PATCH 1/2] chore: daily log 2026-04-10 + vault setup complete --- agent-shared/daily/2026-04-10.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 agent-shared/daily/2026-04-10.md diff --git a/agent-shared/daily/2026-04-10.md b/agent-shared/daily/2026-04-10.md new file mode 100644 index 0000000..c731f70 --- /dev/null +++ b/agent-shared/daily/2026-04-10.md @@ -0,0 +1,30 @@ +# Daily Log — 2026-04-10 + +## Team Status + +| Agent | Status | Notes | +|-------|--------|-------| +| Horus | ✅ Active | Gateway + Claw3D (to flip to Amun) | +| Cleopatra | ✅ Syncing | Vault syncing every 5min | +| Amun | ✅ Syncing | Ollama exposed, voice agent target | + +## Infrastructure +- Horus gateway: `0.0.0.0:18789` ✅ +- Amun Ollama: `0.0.0.0:11434` ✅ (glm-4.7-flash ready) +- council.sitemente.com → 185.45.195.201 (DNS updated) +- Tailscale: Horus `100.70.177.5`, Amun `100.120.217.121` + +## Vault Deployed +- All 3 agents now share memory via GitHub +- Shared: mistakes.md, decisions-log.md, project-state.md, user-profile.md +- Each agent has private folder: agent-[name]/ + +## Actions Today +- [x] Obsidian shared vault deployed +- [x] All 3 agents syncing +- [ ] Claw3D flip to Amun (pending) +- [ ] Cleo reboot (25 updates pending) + +## Notes +Cleo and Horus are on SEPARATE VPS. +Both Cleopatra VPS and Amun VPS are separate from Horus VPS. From e35b42d1f4b97a6e821ac53ee4a7d683722f747d Mon Sep 17 00:00:00 2001 From: Horus Date: Fri, 10 Apr 2026 13:40:05 +0200 Subject: [PATCH 2/2] sync-horus 2026-04-10 13:40 --- sync-cleo.sh | 8 -------- sync.sh | 11 +---------- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100755 sync-cleo.sh diff --git a/sync-cleo.sh b/sync-cleo.sh deleted file mode 100755 index 1aa109d..0000000 --- a/sync-cleo.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -cd /root/.openclaw/workspace/obsidian-vault -git pull origin main >/dev/null 2>&1 -if [ -n "$(git status --porcelain)" ]; then - git add -A - git commit -m "sync-cleo $(date '+%Y-%m-%d %H:%M')" >/dev/null 2>&1 - git push origin main >/dev/null 2>&1 -fi diff --git a/sync.sh b/sync.sh index 2fec872..79b1760 100755 --- a/sync.sh +++ b/sync.sh @@ -1,17 +1,8 @@ #!/bin/bash -<<<<<<< HEAD cd /root/.openclaw/workspace/obsidian-vault git pull origin main >/dev/null 2>&1 if [ -n "$(git status --porcelain)" ]; then git add -A - git commit -m "sync-amun $(date '+%Y-%m-%d %H:%M')" >/dev/null 2>&1 -======= -VAULT="/root/.openclaw/workspace/obsidian-vault" -cd "$VAULT" -git pull origin main >/dev/null 2>&1 -if [ -n "$(git status --porcelain)" ]; then - git add -A - git commit -m "sync $(date '+%Y-%m-%d %H:%M')" >/dev/null 2>&1 ->>>>>>> f3c5fd7c22fd522172d869eab933e902bcc625be + git commit -m "sync-horus $(date '+%Y-%m-%d %H:%M')" >/dev/null 2>&1 git push origin main >/dev/null 2>&1 fi