/install conversation-memory-sync
Conversation Memory Sync
Never 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.
What it does
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.mdin 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).
Setup
- Copy the scripts to your workspace
- Add a cron job:
*/30 * * * * python3 /path/to/sync_conversation_logs.py && python3 /path/to/sync_activity_digest.py - Add to each agent's SOUL.md or AGENTS.md:
At EVERY session start, read CONVERSATION_LOG.md and ACTIVITY_DIGEST.md before doing anything else.
What gets captured
- All user ↔ agent messages (Telegram, Discord, etc.)
- Cron job outputs and results
- Decisions, promises, task assignments
- Timestamps for everything
What gets filtered
- Heartbeat noise (HEARTBEAT_OK)
- Empty messages
- System metadata
File sizes
- CONVERSATION_LOG.md: ~15-20KB per agent (300 messages)
- ACTIVITY_DIGEST.md: ~5-20KB per agent (150 entries, 1 line each)
- Total for 12 agents: ~110KB — zero performance impact
Requirements
- Python 3.8+
- OpenClaw with session transcripts (default location: ~/.openclaw/agents//sessions/.jsonl)
Tags
memory, persistence, conversation, logging, multi-agent, session, context, recall
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install conversation-memory-sync - 安装完成后,直接呼叫该 Skill 的名称或使用
/conversation-memory-sync触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Conversation Memory Sync 是什么?
Automatically syncs and maintains detailed conversation logs and activity digests across agent sessions for persistent memory and context recall. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 214 次。
如何安装 Conversation Memory Sync?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install conversation-memory-sync」即可一键安装,无需额外配置。
Conversation Memory Sync 是免费的吗?
是的,Conversation Memory Sync 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Conversation Memory Sync 支持哪些平台?
Conversation Memory Sync 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Conversation Memory Sync?
由 Harvnk(@harvnk)开发并维护,当前版本 v1.0.0。