DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Find All — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
F

dsh-find-all

Find All

DSH web plugin: a Cmd/Ctrl+F find bar for the desktop Electron shell that searches the WHOLE current conversation — it pages older history in automatically instead of only searching the rendered tail.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Ryuu-64/dsh-find-all#5ca3518892007aabf96cbd9448563276aff85785
READMECompatibilityVersions

Compatibility and provenance

Find All is published as dsh-find-all and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/20/2026

Versions

0.1.0stable
9/20/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/20/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

README

dsh-find-all

DSH web 插件:给桌面 App(Electron 壳)补上 ⌘F / Ctrl+F 页内查找,并且搜的是整段会话,不只是屏幕上已经渲染出来的那一截。

Fork 自 secyborg/dsh-find-bar(作者 secyborg,MIT)。 Fork 依据的快照:commit ce7eb75efe94d768127c5977c649ecd950a9356c(0.1.0,2026-08-25)。 版权与许可是 MIT 双署名:LICENSE 里同时保留上游 Copyright (c) 2026 secyborg 与本 fork Copyright (c) 2026 Ryuu-64;上游 README 原样留作 README.fork-origin.md;改动清单与致谢见 NOTICE.md。

本仓库只做一件上游做不到的事:把没加载进来的历史翻进来再搜。

为什么需要它

DSH 桌面窗口是 Electron,本身没有浏览器那种查找栏;而会话视图一次只保留最近 50 条消息在页面里(点一次「加载更早」再多 50 条)。所以用普通查找条搜一个存在于更早历史里的词,结果永远是 0——哪怕这段对话里明明有。

本插件在你输入关键词后,通过会话服务把更早的历史一页页加载进来,每加载一页就重搜一次,直到整段会话都在页面里。于是命中计数和高亮覆盖的是整个会话。

功能

  • ⌘F / Ctrl+F 唤起查找条(自动带入当前选中的文字)
  • 范围切换:整段(默认)↔ 本页。点一下那个胶囊按钮切换
  • 整段模式:自动分页加载历史,边加载边更新高亮与计数
  • 进度可见:正在加载更早的历史… 已 3 页,点一下这段文字即可停止
  • 安全上限:最多加载 400 页(约 2 万条消息);历史不再增长时会自行停止(宿主没有 hasMore 也能收敛)
  • 导航:Enter / Shift+Enter、⌘G / F3(+Shift)、Esc 关闭并清除高亮
  • 高亮:CSS Custom Highlight API 绘制,不改 DOM,与 React 渲染零冲突;不支持该 API 的环境退回 window.find()
  • 切换会话时自动重置并重新开始搜索

原理(两个接口)

  • ctx.sessions(由 @deepseek-ai/dsh-api-session-controller 提供):list.getSnapshot().current 拿当前会话,binding(id).session 拿会话面。
  • 会话面 loadOlder() 翻一页(50 条);getSnapshot().hasMore 判断是否还有更早的历史。取不到时退回"翻到页面不再变化为止"。

安装

npm pack
dsh plugin --profile desktop add ./dsh-find-all-0.1.0.tgz

装完完整重启一次 DSH Desktop(插件清单只在启动时装载)。

注意:它与 dsh-find-bar 都会抢 Ctrl+F,请只保留一个:

dsh plugin --profile desktop remove dsh-find-bar

卸载 / 回退

dsh plugin --profile desktop remove dsh-find-all    # 卸载
dsh plugin --profile desktop add <dsh-find-bar-0.1.0.tgz>   # 退回原插件

已知限制

  • 大小写不敏感,没有"区分大小写"开关
  • 单次搜索最多记 5000 个命中
  • 折叠起来的工具调用/思考块,其正文不在 DOM 里,搜不到(需要先展开)
  • 第一次搜一个很长的会话要等几秒:那是真的在读历史(856 条 ≈ 17 页)

开发

npm test     # 匹配逻辑、键盘路由、分页循环的单元测试
npm run check

lib/client.js 就是构建产物(与生态里其它插件一致:直接由 window.__ModuleLoader__ 装载),没有打包步骤。