You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
760 B
35 lines
760 B
# mem0-integration Skill |
|
|
|
## 功能说明 |
|
|
|
集成 mem0 记忆系统,为 OpenClaw 提供: |
|
- ✅ 本地记忆存储(Qdrant Local) |
|
- ✅ 共享记忆同步(Qdrant Master) |
|
- ✅ 语义搜索 |
|
- ✅ 多 Agent 协作 |
|
- ✅ 分层记忆管理 |
|
|
|
## 架构 |
|
|
|
``` |
|
Agent → mem0 Client → Qdrant Local → (异步同步) → Qdrant Master (100.115.94.1) |
|
``` |
|
|
|
## 配置 |
|
|
|
编辑 `/root/.openclaw/workspace/skills/mem0-integration/config.yaml` |
|
|
|
## 命令 |
|
|
|
- `/memory add <内容>` - 添加记忆 |
|
- `/memory search <关键词>` - 搜索记忆 |
|
- `/memory list` - 列出所有记忆 |
|
- `/memory delete <ID>` - 删除记忆 |
|
- `/memory sync` - 手动同步到中心 |
|
- `/memory status` - 查看状态 |
|
|
|
## 依赖 |
|
|
|
- mem0ai (pip install mem0ai) |
|
- Qdrant (Docker) |
|
- pyyaml
|
|
|