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.

Model Search — DSH Plugin for DeepSeek Harness
← Plugins
M

@ardli-firman/dsh-model-search

Model Search

Searchable model selector for DeepSeek Harness composer — search models by name instead of scrolling.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ardli-firman/dsh-model-search-plugin#bd637ec3b789e33594ba3e5722fa358a9e333246
READMECompatibilityVersions
Trigger chip in the composerOpen menu with Recent sectionSearch filtering models
Collapsed provider group
Keyboard focus ring on an option
Menu in light theme

Compatibility and provenance

Model Search is published as @ardli-firman/dsh-model-search and currently resolves to version 1.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/22/2026

Versions

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

Related plugins

Loading related plugins…

Latest
1.1.1
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
8/22/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with a dedicated pet bubble for the current providerWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

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