zilliztech/memsearch--plugins-dsh ↗★ 2.5k
@zilliz/memsearch-dsh
MemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:zilliztech/memsearch#7f2a1e7d26455823657f96731fd861e6709b66c0&path:plugins/dsh说明文档
阅读完整 README ↗@zilliz/memsearch-dsh
MemSearch plugin for DeepSeek Harness (DSH).
It gives DSH persistent, cross-agent memory on the same .memsearch/memory/
markdown store used by the Claude Code, Codex, OpenClaw, and OpenCode plugins,
backed by a Milvus hybrid search index.
capture ── session/event turn/end ──> summarize (dsh-headless agent default, or custom-llm) ──> memory/YYYY-MM-DD.md
inject ── agent/pre-step step 1 ──> memsearch search ──> relevant chunks injected (zero cost otherwise)
recall ── ctx.skills.register(memory-recall) ──> search → expand → transcript
review ── web UI dock panel ──> GET/POST /memsearch-dsh/* ──> list candidates / queue review / install
Prerequisites
-
Install memsearch:
uv tool install "memsearch[onnx]" -
A DSH profile (web / headless / tui) you want to attach memory to.
-
Node >= 22.19 (DSH's requirement).
Install
From npm (recommended)
dsh plugin --profile web add @zilliz/memsearch-dsh
From source (development)
dsh plugin --profile web add /path/to/memsearch/plugins/dsh
dsh pluginis a pnpm forwarder: it links the package into the profile, detects thedsh.bundledeclaration inpackage.json, and appends it to the profile's bundle layers.cordis.patch.ymlinside the package then inserts thememsearchrow into the profile's plugin tree.Replace
webwith your profile name (headless,tui, ...), and restart DSH for the profile (or start a new session) so the plugin mounts.
Manual patch insertion (no dsh plugin)
Append this row to the profile's cordis.patch.yml and make sure
@zilliz/memsearch-dsh is resolvable from the profile's node_modules (for example a
link: dependency):
- insert:
- id: memsearch
name: '@zilliz/memsearch-dsh'