Install
openclaw skills install conversation-memory-syncAutomatically syncs and maintains detailed conversation logs and activity digests across agent sessions for persistent memory and context recall.
openclaw skills install conversation-memory-syncNever forget a conversation again. Auto-generates CONVERSATION_LOG.md and ACTIVITY_DIGEST.md from all agent session transcripts.
Use when: you want persistent conversation memory across agent sessions, or when agents keep forgetting past decisions and promises.
Solves the #1 problem with AI agents: they forget everything between sessions.
This skill includes two Python scripts that run via cron:
sync_conversation_logs.py — Extracts the last 300 messages from every agent session and writes them to CONVERSATION_LOG.md in each agent's workspace. Full messages with timestamps.
sync_activity_digest.py — Creates a compact 1-line-per-action summary in ACTIVITY_DIGEST.md. Ultra-lightweight (~10-20KB per agent).
*/30 * * * * python3 /path/to/sync_conversation_logs.py && python3 /path/to/sync_activity_digest.pyAt EVERY session start, read CONVERSATION_LOG.md and ACTIVITY_DIGEST.md before doing anything else.
memory, persistence, conversation, logging, multi-agent, session, context, recall