
ZSeven-W/dsh-noema
636最近提交 2026年8月15日
dsh-noema DSH 插件
DSH Noema 将 DeepSeek Harness 与 Noema 连接起来,Noema 是一个面向编码智能体的本地优先非向量记忆系统。它提供跨会话的持久召回、从 9 种 AI 编码工具导入记忆,以及设置页面记忆管理界面。记忆以可检查的 Markdown 文件形式持久化,插件包含崩溃保活和热重载功能。
如何安装 dsh-noema DSH 插件
dsh plugin --profile web add @zseven-w/dsh-noema@latest复制不会执行命令。安装 dsh-noema DSH 插件前请核对仓库和版本。
dsh-noema DSH 插件数据来源
dsh-noema DSH 插件快照日期:2026年8月16日
discovered
dsh-noema DSH 插件能做什么
- 使用 `noema_recall` 及相关工具跨会话持久召回记忆。
- 从 9 种其他 AI 编码工具(Codex、Claude Code、opencode、Cursor、Grok、WorkBuddy、Antigravity、Trae、Qoder)导入记忆,并去重。
- 设置页面记忆管理:搜索、浏览、添加、审查和删除记忆。
- 保活循环:在记忆服务器崩溃或退出时自动重启。
- 首次加载后,支持宿主插件和客户端 bundle 的热重载。
dsh-noema DSH 插件适合哪些场景
- 在多个编码会话中为 AI 智能体保持上下文。
- 从之前的 AI 编码工具迁移记忆到 DSH Noema。
- 通过专用设置页面管理和审查存储的记忆。
- 在长时间开发过程中确保智能体记忆服务器持续运行。
- 开发并测试记忆插件变更,无需重启 DSH 即可热重载。
dsh-noema DSH 插件适合谁
- 使用 DeepSeek Harness 并希望获得持久智能体记忆的开发者。
- 从其他 AI 编码工具迁移到 DSH 并需要保留过去上下文的团队。
dsh-noema DSH 插件的限制
- 需要 DSH 版本 0.1.0-rc.6 或兼容版本。
- 记忆存储为本地优先,不进行云同步;仅在同一台机器上可访问。
- 从其他工具导入需要该工具的记忆文件位于标准位置。
- 热重载无法加载从未在启动树中出现的插件;新插件需要一次服务器重启。
dsh-noema DSH 插件的仓库 README 摘录
以下文字摘自 dsh-noema DSH 插件的上游仓库 ZSeven-W/dsh-noema 的 README,版权归原作者,仅作引用。
DSH Noema connects [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) with [Noema](https://github.com/ZSeven-W/noema) — a local-first, non-vector memory system for coding agents — so an Agent keeps durable knowledge across sessions instead of starting every conversation from zero. <table> <tr> <td width="50%"> ### 🧠 Durable Recall Memories persist as inspectable Markdown files under `NOEMA_ROOT` (default `~/.agent-memory/`). `noema_recall` loads relevant context at the start of a session; `noema_search`, `noema_browse`, `noema_catalog`, and `noema_recall_graph` cover lookup, exploration, and auditing. </td> <td width="50%"> ### 📥 Import From Other Tools `noema_import` reads the memory files of nine other AI coding tools — Codex, Claude Code, opencode, Cursor, Grok, WorkBuddy, Antigravity, Trae, Qoder — splits them into sections, and saves each as a durable memory. A content-keyed ledger deduplicates across runs and across tools that share files. </td> </tr> <tr> <td width="50%"> ### 🛠️ Settings-Page Management The Noema Memory settings page configures the server command, memory root, budgets, idle/call timeouts, and the guidance section — and a Manage m
阅读完整 README仓库许可: MIT
dsh-noema DSH 插件常见问题
如何安装 DSH Noema 插件?
在终端中运行 `dsh plugin --profile web add @zseven-w/dsh-noema@latest`,然后启动 DSH(`dsh web`)。插件将被下载并启用。如需本地开发,可使用 `dsh plugin --profile web add link:/path/to/dsh-noema` 实现即时重建。
DSH Noema 能与其他编码工具的记忆文件配合使用吗?
是的,它可以导入九种 AI 编码工具的记忆:Codex、Claude Code、opencode、Cursor、Grok、WorkBuddy、Antigravity、Trae 和 Qoder。导入过程会从标准位置读取这些工具的记忆文件,将其分割成段落,并保存为持久记忆。一个账本机制会跨运行和共享文件进行去重。
记忆存储在什么地方?
记忆以可检查的 Markdown 文件形式存储在 `NOEMA_ROOT` 目录下,默认为 `~/.agent-memory/`。您可以在设置页面的 Noema Memory 部分更改此路径。这些文件位于您本地机器上,不会同步到云端。
可以不使用命令行来管理记忆吗?
可以,插件提供了一个设置页面(设置 → Noema Memory),您可以在其中搜索、浏览、添加、审查和删除记忆。您还可以在同一个界面中切换导入源、调整预算以及监控服务器状态。
如果记忆服务器崩溃了怎么办?
插件包含一个保活功能,当记忆服务器崩溃或退出时,会自动在后台重新启动它。您可以在设置中配置检查间隔和重启延迟。默认情况下,空闲超时设置为 0(永不停止),因此服务器会持续运行。