mindscale-noah/MindMemOS--plugins-deepseek-harness-plugin ↗★ 938
@mindmemos/deepseek-harness-plugin
DeepSeek Harness (dsh) plugin that recalls and writes MindMemOS memories through the mindmemos CLI.
安装
此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗
说明文档
阅读完整 README ↗@mindmemos/deepseek-harness-plugin
A DeepSeek Harness (dsh) plugin that wires MindMemOS long-term memory into the harness. It:
- recalls memories before each turn by running
mindmemos memory searchand injecting the hits as model context, and - stores each completed turn by running
mindmemos memory add.
It is a thin shell-out layer over the mindmemos CLI — the same integration the
OpenClaw plugin provides for a different host.
Prerequisite: the mindmemos CLI must be installed and authenticated
first. Installing this plugin alone does nothing — it spawns the CLI for every
operation.
Install the CLI
# whichever installer you use for the MindMemOS CLI; e.g.
pip install mindmemos-sdk
mindmemos auth
Confirm it works from the shell dsh will run under:
mindmemos config show
Install the plugin
Install the published package in the project where dsh runs:
npm install @mindmemos/deepseek-harness-plugin
For local development before publishing, build from this repo instead (see
Build) and register the built entry by file:// URL.
Build
cd plugins/deepseek-harness-plugin
npm install
npm run build # emits dist/index.js + dist/index.d.ts
npm run typecheck runs the same compiler pass without emitting — use it to
validate against the dsh types before wiring the plugin up.
Register
dsh composes plugins through layered cordis.patch.yml files. Add an insert
entry to your profile patch ($DSH_HOME/cordis.patch.yml or the profile's
cordis.patch.yml):
- insert:
- id: mindmemos-memory
name: '@mindmemos/deepseek-harness-plugin' # once published
config:
userId: alice
appId: deepseek-harness