DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-model-picker-search

Model Picker Search

在 composer 的模型选择菜单中添加搜索字段。可直接替代原生模型位置,并共享同一个每会话 ModelDirectory,从而使 /model 弹窗、工作量选择器和 /model 命令保持一致。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:honoriomelo/dsh-model-picker-search#9a18436c76afc2c07d293c2a3611aca2226f348c
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/29

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Usage@linxin666/dsh-usagedsh Web GUI 的使用统计插件:检测各提供商余额和编码计划配额,并提供实时令牌使用记录,以及当前提供商的专属宠物气泡Whale Widgetdsh-whale-widgetDSH Web 界面右下角的 DeepSeek 余额小鲸鱼挂件:余额/今日已用/峰谷定价、自定义泡泡点击序列(文本/余额/今日/峰谷/图片/随机语句与并列加权选择)、逐行样式与字体、悬浮快捷编辑、音效与每轮消耗、自定义角色/动图/音效、吸附与翻转自定义Usage Stats@ychris12138/dsh-usage-statsdsh Web GUI 的令牌使用热力图、提供商余额和订阅配额Codex Connectdsh-codex-connect用于 DeepSeek Harness 的 ChatGPT OAuth 和 Codex 模型。

README

dsh-model-picker-search

DSH Web GUI plugin. Adds a live search field inside the model picker menu of the composer, plus the Effort (reasoning) selector that the native ModelSelect ships with.

When you click the Model button in the composer, the menu now opens already focused on a search box at the top. As you type, the list of models is filtered in real time across every provider — matching against the model id, model name, provider displayName, and provider name (case-insensitive substring). The two-level (Model / Effort) submenu from the native picker is preserved, so switching reasoning effort on a model that supports it still works as before.

The plugin reads and writes the same per-session ModelDirectory the native ModelSelect and /model popup consume, so every entry surface stays consistent: select a model in the composer picker, and the /model command in the chat shows the same selection; change effort here, and the trigger label updates to show it.

No source code of DSH is modified — the plugin composes a new occupant for the conversation.input.model slot, which DSH was designed to allow.

Install

dsh plugin --profile web add link:/path/to/dsh-model-picker-search

Then restart dsh web (or refresh the page so the new bundle is picked up).

How it works

  • Client (lib/client.js): registers a single occupant for the conversation.input.model slot. The component renders:
    • a trigger button matching the native _7KE1Ra_trigger look (label + optional effort caption + chevron that rotates 180° when open);
    • a two-pane menu (Model / Effort) styled with the same theme tokens as the shipped menu;
    • on the Model pane, a <input type="text"> at the top that filters the model list as the user types;
    • on the Effort pane, the list of reasoning effort levels for the current model, plus a "Provider default" option when the model declares no default.
  • Host (lib/index.js): two harness.handle RPCs.
    • model-search/list returns { groups, flat } where each group carries its advertised models. Built from ctx.llm.listProviders() and ctx.llm.listModels(provider). Provider listModels failures are caught so one broken provider doesn't drop the whole list.
    • model-search/select is an acknowledgement only — the actual selection is applied by the client half through the per-session ModelDirectory it shares with the native ModelSelect, so no host-side state is duplicated.

The injected ModelDirectory (ctx.modelDirectories.directoryFor(sessionId)) is the same instance the native seat uses, which is what makes the two entry surfaces share their state.

UX details

  • Auto-focus. The search input is focused as soon as the Model pane opens, so the user can start typing without an extra click. The focus call uses requestAnimationFrame to ensure the input is fully mounted and focus({ preventScroll: true }) to avoid pushing the page.
  • Back button. Each sub-pane has a "‹ Back" button that returns to the root pane, matching the native two-level menu.
  • Outside click. Clicking outside the menu closes it and resets the query. ESC and the chevron toggle behave like the native picker.
  • Effort preservation. When you pick a model, the plugin preserves the current reasoningEffort if it's still valid for the new model (matches the way the native seat handles it).

Compatibility

  • DSH 0.1.0-rc.8 or newer (uses the dsh.client package metadata, ctx.modelDirectories, and the conversation.input.model slot).
  • Themes: all colors and spacing come from DSH theme tokens (--dsw-alias-*, --dsw-specific-menu, --dsw-shadow-lv3, --dsw-alias-scrollbar-bg-l2), so it follows light/dark and the brand overrides.

License

MIT.