DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Deja — DeepSeek Harness 插件(DSH Plugin)
← Plugins

dsh-deja

Deja

DeepSeek Harness 的 deja-vu 记忆:三十二个其他编码代理的会话历史,可搜索并在每一步之前召回——本地索引,无需 LLM。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-deja@0.20.9
README兼容性版本
The same question put to the same agent twice: without memory it has no record of it, with deja it answers with the decision from eight months earlier

兼容性与来源证明

Deja 以 dsh-deja 发布,当前版本为 0.20.9。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.20.9stable
2026/9/18
0.20.8stable
2026/9/15
0.20.7stable
2026/9/12
查看其余 12 个版本收起版本
0.20.6stable
2026/9/9
0.20.5stable
2026/9/2
0.20.4stable
2026/8/25
0.20.3stable
2026/8/23
0.20.2stable
2026/8/23
0.20.1stable
2026/8/23
0.20.0stable
2026/8/23
0.19.0stable
2026/8/23
0.18.3stable
2026/8/23
0.18.2stable
2026/8/23
0.18.1stable
2026/8/23
0.18.0stable
2026/8/23
最新版
0.20.9
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
25.7 kB
文件数
7
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 877
周下载
525
安全扫描
✓ v0.20.9 扫描通过
最近提交
2026/9/20
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

README

dsh-deja

English | 中文

DeepSeek Harness can already search its own sessions — that is what the built-in session-query subsystem does. This plugin answers the other question: what you did in the other agents on this machine.

deja indexes the session files that thirty-two other coding agents — Claude Code, Codex, Cursor, opencode, Antigravity, Grok Build, Kimi, Cline and Zed among them — already write to disk. Nothing has to have been recorded ahead of time: the history is already there, including the months before deja was installed. If you moved to dsh last week, everything you did before last week is still reachable from inside it.

Install

dsh plugin --profile web add dsh-deja

From the repository instead of npm — the root manifest re-exports this directory, so either form works:

dsh plugin --profile web add github:vshulcz/deja-vu#path:extensions/dsh

The plugin runs the deja binary. It is pulled in as a dependency, so npm installs it with the plugin; a deja already on PATH is used as-is, and DEJA_BIN overrides both.

If you have the CLI, deja install --auto wires dsh too — it adds deja's MCP server and a /deja command to your profile — and that is the shorter path. Having both is fine: this plugin looks for what the installer wrote in $DSH_HOME/plugins/deja/ and contributes only what is missing, so the tools and the command are never registered twice.

What it adds

Six tools the model can call:

ToolAnswers
deja_recallSessions matching an error string, function name, file path or flag.
deja_sessionThe full digest of one past session, when the reasoning behind it matters.
deja_blameThe sessions that discussed a file, before you edit or delete it.
deja_fixWhat this machine ran after that same error before.
deja_howThe real invocation for a build, test or deploy, from what ran here.
deja_rememberStores one settled decision for later recall.

One command: /deja <what to look for>.

And, unless you turn it off, automatic recall: before each step the plugin asks deja whether this machine's history answers the prompt, and adds the answer to the runtime context. Silence is the common case — it speaks only when there is something to say.

- insert:
    - id: deja
      name: dsh-deja
      config:
        autoRecall: false   # tools and /deja only

How it is wired

Recall arrives through ctx.systemPrompt.context, evaluated on every assembly. The obvious alternative — a middleware on agent/pre-step that splices a message into the step — loads fine, completes the turn, and never reaches the model: a later listener in that waterfall rebuilds its answer from the payload and the added message is dropped with nothing reported. This was settled by reading the requests dsh 0.1.1-rc.2 actually sent.

What it does not do

No LLM, no embeddings, no network. The index is a local BM25 store over files that already exist, so a query answers in about a millisecond and nothing leaves the machine. Secrets are redacted at index time.

Part of deja-vu. MIT.