DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@ardli-firman/dsh-model-search

Model Search

DeepSeek Harness composer 的可搜索模型选择器——按名称搜索模型,无需滚动浏览。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ardli-firman/dsh-model-search-plugin#bd637ec3b789e33594ba3e5722fa358a9e333246
README兼容性版本
Trigger chip in the composerOpen menu with Recent sectionSearch filtering modelsCollapsed provider groupKeyboard focus ring on an optionMenu in light theme

兼容性与来源证明

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

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

版本

1.1.1stable
2026/8/22
1.1.0stable
2026/8/21

相关插件

正在加载相关插件…

最新版
1.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/22
查看源码 ↗
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-search

Searchable model selector for DeepSeek Harness. Replaces the default model dropdown in the composer with a searchable version — no more scrolling through hundreds of models!

Features

  • 🔍 Search models — Type to filter by name, ID, or provider
  • 📦 Grouped by provider — Models organized by provider (OpenAI, Anthropic, DeepSeek, etc.)
  • ✅ Current selection — Highlights the active model with a check icon
  • ⚡ Fast — Loads models via the existing session API
  • 🎨 Theme-aware — Uses DeepSeek Harness design tokens (--dsw-*), adapts to light/dark mode
  • ♿ Accessible — Full keyboard navigation, ARIA attributes, focus management
  • 🕘 Recent models — Quickly jump back to your last-used models

Screenshots

Trigger chip in the composer
Trigger chip in the composer
Open menu with Recent section
Recent section, provider groups, effort selector
Search filtering models
Type to filter by name, ID, or provider
Collapsed provider group
Collapse groups you don't need
Keyboard focus ring on an option
Full keyboard navigation
Menu in light theme
Adapts to the light theme

Install

From GitHub Packages (recommended)

npm install @ardli-firman/dsh-model-search --registry=https://npm.pkg.github.com

Then link to your DSH profile:

dsh plugin --profile web add link:./node_modules/@ardli-firman/dsh-model-search

From GitHub repo

dsh plugin --profile web add github:ardli-firman/dsh-model-search-plugin

Note: pnpm ≥10 requires build permission for git dependencies. After the first add fails, add this to your profile's pnpm-workspace.yaml:

allowBuilds:
  @ardli-firman/dsh-model-search: true

Then re-run the add command.

From local checkout

git clone https://github.com/ardli-firman/dsh-model-search-plugin.git
dsh plugin --profile web add ./dsh-model-search-plugin

Then restart DeepSeek Harness:

dsh --profile web

Uninstall

dsh plugin --profile web remove @ardli-firman/dsh-model-search

How it works

The plugin replaces the conversation.input.model slot with a searchable dropdown component. It:

  1. Fetches available models from the session's model directory API
  2. Groups them by provider
  3. Provides a search input to filter models in real-time
  4. Submits selection via session.selectModel RPC

Design

The selector follows the DeepSeek Harness design system:

  • Trigger: ToggleButton chip (28px, rounded 24px) matching the official ui-model-selection
  • Menu card: 12px rounded, --dsw-specific-menu surface, --dsw-shadow-lv3 shadow
  • Option rows: 38px height, 10px radius, hover/focus surface, trailing check icon
  • Tokens: All colors use --dsw-* design tokens (auto light/dark)

Development

# Clone and link for local development
git clone https://github.com/ardli-firman/dsh-model-search-plugin.git
cd dsh-model-search-plugin
dsh plugin --profile web add link:.

# Run tests
npm test

# Watch mode
npm run test:watch

# Rebuild the screenshot demo page + capture README screenshots
# (needs a Playwright Chromium install; see scripts/ for details)
node scripts/build-demo.mjs && node scripts/screenshot.mjs

Project structure

dsh-model-search-plugin/
├── lib/
│   ├── index.js          # Host side (no-op, pure UI plugin)
│   └── client.js         # Browser side (ModelSearch component + registration)
├── tests/
│   ├── helpers.js         # Test utilities (mock directory, props, sample data)
│   ├── model-search.spec.js        # Component tests (render, search, select, keyboard, ARIA)
│   └── plugin-registration.spec.js # Registration tests (apply, directory store, slots)
├── cordis.patch.yml       # Plugin row insertion patch
├── vitest.config.js       # Test configuration
├── package.json
└── README.md

Test coverage

The test suite covers:

  • Rendering: trigger button, current model name, disabled/hidden states
  • Dropdown: open/close, outside click, Escape key, load on open
  • Model list: grouped display, model IDs, check icons, loading/empty/error states
  • Search: filter by name/ID/provider, case-insensitive, no-results message
  • Selection: click to select, close on success, stay open on rejection, locked state
  • Keyboard: ArrowDown/Up navigation, Enter/Space to select, focus wrapping
  • ARIA: aria-haspopup, aria-expanded, role="menu", role="menuitemradio", aria-checked
  • Styles: --dsw-* token usage, no old --bg-*/--text-* tokens
  • Registration: slot injection, directory store lifecycle, subscriber notifications

Release

Releases are automated via GitHub Actions. To publish a new version:

# Bump version in package.json
npm version patch   # or minor / major

# Push with tags
git push && git push --tags

The CI workflow will automatically publish to GitHub Packages.

License

MIT