memory_plus
Provides persistent, searchable structured memory management for AI agents, with keyword matching, bidirectional Zettelkasten sync, and six MCP tools.
README
<p align="center"> <img src="docs/assets/memory_plus_rich_cover.png" alt="Memory Plus" width="100%"> </p>
🧠 Memory Plus
一个为 OpenClaw 和 Hermes Agent 设计的记忆管理组件,基于 SVM(Structured Visual Memory)架构,集成 Zettelkasten 知识笔记双向同步,让 AI Agent 拥有持久化、可检索的结构化记忆。
English · 简体中文
✨ 核心功能
| 功能 | 描述 |
|---|---|
| 🧠 内存存储 | 内存 LRU 缓存 + SQLite 持久化,支持多租户隔离 |
| 🔍 关键词匹配 | Aho-Corasick 多模式匹配引擎(pyahocorasick / 纯 Python 回退) |
| 📋 审计日志 | SQLite 存储的 store/recall/forget/config 操作事件日志 |
| 🔄 Zettelkasten 同步 | 双向同步:SVM→ZK(冷数据备份)+ ZK→SVM(热加载重要/近期/常青笔记) |
| 🛡️ 淘汰保护 | LRU 淘汰前自动同步到 ZK,防止数据丢失 |
| ⚖️ 准入控制 | 可配置最低权重和压力阈值,保护高价值记忆 |
| 📥 导入迁移 | svm import 命令,将旧版 OpenClaw 记忆 chunks 迁移为 SVM 内存块 |
| 🔌 MCP Server | 内置 stdio 协议的 MCP 服务,接入 Hermes / OpenClaw 等 Agent 框架 |
| 🐳 Docker 支持 | 4 种容器环境预装 SVM(Hermes + 3 版本 OpenClaw) |
| 🎯 命令行 | 完整的 CLI 界面,支持 JSON 输出,跨语言调用 |
⚡ 性能基准
测试环境: Python 3.12.3, SQLite WAL
测试规模: 553K blocks/sec 存储 · 52K matches/sec Aho-Corasick(5000 关键词)
当前测试套件: 80 个单元测试全部通过 ✅
🇺🇸 Looking for English documentation? Click here for English
🚀 快速开始
AI Agent 一句话安装
curl -fsSL https://raw.githubusercontent.com/cx2002302-lang/memory_plus/master/scripts/quick-install.sh | bash
pip 安装
pip install memory-plus
或从源码安装(推荐开发模式):
git clone https://github.com/cx2002302-lang/memory_plus.git
cd memory_plus
pip install -e ".[test]"
# 运行测试
pytest tests/
CLI 基本用法
# 存储记忆
svm store --key my_key --value "记忆内容"
# 检索记忆
svm recall --keyword kw1 --keyword kw2
# 与 Zettelkasten 同步
svm sync auto
# 导入旧版记忆
svm import --source ~/.openclaw/memory/main.sqlite
# 搜索(SVM + ZK)
svm search "关键词"
# 查看状态
svm stats
Docker 部署
# 使用 svm-deploy skill(需要先安装 skill)
svm-deploy
# 或手动挂载:
# svm 数据库路径: ~/.openclaw/svm/memory.db
# ZK 数据库路径: ~/.openclaw/zettelkasten/zettelkasten.db
🧩 MCP 工具(用于 AI Agent)
| 工具 | 权限 | 描述 |
|---|---|---|
svm_store |
写入 | 存储一个记忆块 |
svm_recall |
读取 | 按关键词检索记忆块 |
svm_forget |
写入 | 删除指定记忆块 |
svm_list |
读取 | 列出所有记忆块 |
svm_stats |
读取 | 获取内存统计信息 |
svm_audit |
读取 | 查询审计日志 |
🛡️ 数据安全
Memory Plus 与 Zettelkasten 双向同步遵循以下安全原则:
| 操作 | 安全策略 |
|---|---|
| SVM → ZK 写入 | 仅 INSERT,永不 UPDATE/DELETE/DROP |
| ZK → SVM 读取 | 只读 QUERY,不修改 ZK 数据 |
| 标签写入 | INSERT OR IGNORE,不覆盖已有标签 |
| 淘汰保护 | LRU 淘汰前先同步到 ZK,防止数据丢失 |
| 准入控制 | 内存使用率 ≥ 80% 时拒绝低权重(< 0.1)写操作 |
| FTS5 搜索 | 使用 n.id IN (SELECT id FROM zettel_fts ...) 确保 rowid 正确映射 |
⚠ 重要警告:切勿在已有数据的 ZK 数据库上运行
openclaw zk init。migrateNotesTableForArchive()可能重新创建zettel_notes表并导致数据丢失。 详见 Schema 兼容性文档。
📁 项目结构
memory_plus/
├── svm/ # Python 模块
│ ├── __init__.py # 版本号
│ ├── cli.py # CLI 入口
│ ├── config.py # 配置管理(预设、自动检测内存)
│ ├── audit.py # 审计日志
│ ├── exceptions.py # 异常体系
│ ├── injector.py # 上下文注入器
│ ├── mcp_server.py # MCP 服务
│ ├── models/ # 数据模型
│ │ └── block.py # MemoryBlock(核心内存块)
│ ├── store/ # 存储层
│ │ ├── memory_store.py # 内存 LRU 缓存
│ │ └── persistent.py # SQLite 持久化
│ ├── sync/ # Zettelkasten 同步引擎
│ │ ├── engine.py # 同步编排
│ │ └── zk_sync.py # ZK 数据库读写
│ └── trigger/ # 检索触发
│ ├── matcher.py # Aho-Corasick 关键词匹配
│ └── strategy.py # 检索策略
├── tests/ # 测试套件
│ ├── test_basic.py # 58 个基础测试
│ ├── test_import.py # 8 个导入测试
│ ├── test_sync.py # 18 个同步测试
│ └── test_perf.py # 性能基准测试
├── image/ # 配图
├── docs/ # 文档
├── CHANGELOG.md
├── LICENSE
└── README.md
📜 许可证
MIT © Memory Plus Contributors
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.