remindb
活跃·★ 106·MIT·更新于 2026-05-28
★ 时下流行★ 记忆与上下文★ 数据处理
remindb 是一个基于 SQLite 的智能体记忆系统,将笔记编译成结构化树并支持温度感知搜索与自动摘要。
remindb 将智能体记忆存储在一个 SQLite 文件中。它将笔记解析为带温度追踪的结构化树,通过 FTS5 搜索实现高效检索,并支持版本控制和自动摘要。相比每轮对话重新读取原始文件,这能显著降低 token 开销。
#智能体记忆#AI 智能体#ast#Claude Code#命令行工具#Codex#开发者工具#fts5
01
功能特性
01带类型节点的结构化记忆树(标题、列表、代码等)
02温度机制追踪节点使用情况,提升热点内容
03通过智能体驱动的压缩自动摘要冷节点
04Git 风格版本控制,支持节点级差异和快照游标
05基于 FTS5 的全文搜索,可控制 token 预算
02
兼容性
Linux
Linux
已通过文档验证
macOS
macOS
已通过文档验证
Windows
Windows
已通过文档验证
03
快速开始
1
$ curl -fsSL https://raw.githubusercontent.com/radimsem/remindb/main/install.sh | bash
04
使用场景
↳避免编码智能体每轮对话重复读取相同笔记
↳为支持 MCP 的智能体维护跨会话的持久记忆
↳通过便携的 .db 文件在不同智能体或设备间共享记忆
05
同类工具
相关搜索
评论
登录后发表评论
- SSutton Kim2026年5月16日
The agentic memory pattern — write what matters, retrieve what's relevant — is implemented cleanly here.
- RRowan Jackson2026年4月30日
Token cost savings make context memory actually economical for production agent deployments.
- CCorey Martinez2026年4月24日
75-99% session token reduction is real and significant for long-running agent workflows.
- EEllis Lewis2026年3月26日
Single portable SQLite file means memory travels with the project, no server to manage.
- QQuinn Patel2026年3月26日
Works anywhere SQLite runs, which is everywhere. The portability is the key feature.