fix: update references to openclaw-true-recall-blocks, add upgrade docs, add backfill script

This commit is contained in:
root
2026-03-10 12:05:58 -05:00
parent 1ed7430987
commit 24023279ab
4 changed files with 204 additions and 3 deletions

View File

@@ -96,3 +96,32 @@ echo " curl -s http://$QDRANT_IP/collections/memories_tr | jq '.result.points_c
echo ""
echo "View logs:"
echo " sudo journalctl -u mem-qdrant-watcher -f"
echo ""
echo "=========================================="
echo "UPGRADING FROM OLDER VERSION"
echo "=========================================="
echo ""
echo "If you already have TrueRecall Base installed:"
echo ""
echo "1. Stop the watcher:"
echo " pkill -f realtime_qdrant_watcher"
echo ""
echo "2. Backup current files:"
echo " cp /root/.openclaw/workspace/skills/qdrant-memory/scripts/realtime_qdrant_watcher.py \"
echo " /root/.openclaw/workspace/skills/qdrant-memory/scripts/realtime_qdrant_watcher.py.bak"
echo ""
echo "3. Copy updated files:"
echo " cp watcher/realtime_qdrant_watcher.py \"
echo " /root/.openclaw/workspace/skills/qdrant-memory/scripts/"
echo " cp scripts/backfill_memory.py \"
echo " /root/.openclaw/workspace/skills/qdrant-memory/scripts/"
echo ""
echo "4. Restart watcher:"
echo " python3 /root/.openclaw/workspace/skills/qdrant-memory/scripts/realtime_qdrant_watcher.py --daemon"
echo ""
echo "5. Verify:"
echo " ps aux | grep realtime_qdrant_watcher"
echo ""
echo "For full upgrade instructions, see README.md"