DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Session Search — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
S

dsh-session-search

Session Search

跨所有 DeepSeek Harness 对话进行全文搜索——在主机上使用 MiniSearch 索引,在浏览器中通过 Option+K 调色板,直接跳转到匹配的消息。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ivanearisty/dsh-session-search#3a4d5dbdbf68539cf03879d854563515954c4572
README兼容性版本

兼容性与来源证明

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

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/14

版本

0.1.0stable
2026/9/14

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/14
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件Meow Memorymeow-memoryDeepSeek Harness 的跨会话项目记忆:七层 SQLite 记忆、首轮快照注入、每条消息的关键词命中、memory_remember/search/project 工具、带 reflection-fold UI 的自动反思,以及由空闲触发的梦境整合

README

dsh-session-search

Full-text search across every DeepSeek Harness conversation. Press ⌥K (Alt+K), type, and jump straight to the message — not just the session.

Search behaviour is modelled on obsidian-omnisearch — an excellent plugin for a different app — and built on the same engine, MiniSearch. This project is not affiliated with it and does not reuse its name.

Why

The Harness sidebar search matches session titles and metadata. This plugin indexes the message bodies — every prompt you typed and every reply you got — so you can find that command you ran three weeks ago in a session you never named.

Install

dsh plugin --profile web add dsh-session-search

Not on npm yet — until it is, install straight from GitHub:

dsh plugin --profile web add github:ivanearisty/dsh-session-search

Then restart the harness (the host half builds its index at boot).

Use

KeyAction
⌥K / Alt+KOpen search
↑ ↓ (or Ctrl+N / Ctrl+P)Move through results
↵Open the session and scroll to that message
EscClose

Results group by session, newest first, with the matched terms highlighted. Choosing a hit opens the session, pages its history back until the message is on screen, and flashes it.

How it works

The index lives entirely on the host — the browser never downloads it, and each query returns only a page of short snippets. The tab stays light.

  • One document per message: your prompts (user/message with a human source — plugin and system snapshots are skipped) and the assistant's replies.
  • Built once at boot from the session store, then kept current from the live session/event stream. No polling, no rescans.
  • Ranking mirrors omnisearch: prefix + fuzzy matching, a 3× boost on the session title, strict AND with an OR fallback when nothing lines up.
  • Renames restamp every document of a session, so a result always shows the session's current name.
  • Forks are de-duplicated — a forked session inherits its parent's history verbatim, so the inherited prefix is skipped when the parent is also present. When it is not (archived, deleted, or never on this machine), those messages are indexed here, because they exist nowhere else.

Reference scale: ~70 sessions / ~1,200 messages indexes in about a second, and queries answer in single-digit milliseconds.

Permissions and data

  • Reads your local session logs through the harness's own session-store service. Nothing leaves your machine; there is no network call, no telemetry, and no external service.
  • Registers one private host channel (/dsh-session-search) with search and status endpoints, plus one browser overlay and one keydown listener.

Optional companion

If dsh-kepler-graveyard is also installed, hits in archived sessions show a Resurrect button. Without it, archived sessions still appear, marked 🪦 and not openable. The companion is detected at runtime and is in no way required.

Settings

The plugin registers a dsh-session-search settings namespace, so it appears as a card under Settings → Plugins (showing live index size) like any other installed plugin, and its section lives in settings.yaml:

dsh-session-search:
  resultLimit: 60        # maximum hits per query
  indexAssistant: true   # index assistant replies as well as your prompts

Compatibility

  • DeepSeek Harness 0.1.x (developed against 0.1.1-rc.2), web profile.
  • Node ^22.19 || >=24.
  • Harness packages are optional peer dependencies: the plugin resolves them from the host installation rather than bundling its own copies.

Known limitations

  • Only text is indexed — images, tool call arguments, and reasoning blocks are not.
  • The reveal step finds the message by text. If a message was compacted out of the visible history, the session still opens but nothing is highlighted.
  • Chord is fixed at ⌥K in this version; it is not yet rebindable.

License

MIT