agent-memory-store
SKILL.md
Agent Memory Store
Cross-agent semantic memory with TTL decay. SQLite-backed — data survives restarts.
Start
python3 scripts/memory_store.py
# Runs on port 8768, DB: /root/.openclaw/workspace/data/agent_memory.db
Quick Start
# Store a memory
curl -X POST http://localhost:8768/memories \
-H "Content-Type: application/json" \
-d '{"owner":"my-agent","content":"user prefers SOL payments","ttl_seconds":86400,"public":false}'