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.

T3 Model Picker — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-t3-model-picker

T3 Model Picker

T3 Code's model picker for DeepSeek Harness: a provider rail, provider-grouped search, favorites and Cmd/Ctrl+1..9 shortcuts in the composer.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-t3-model-picker@1.0.0
READMECompatibilityVersions
The picker: provider rail, grouped search, favorites and jump shortcuts

Compatibility and provenance

T3 Model Picker is published as dsh-t3-model-picker and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/24/2026

Versions

1.0.0stable
9/24/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
63.1 kB
Files
6
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/24/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 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 compact price glance card above the sidebar's Settings rowCommandcode Provider@mars-sea/dsh-commandcode-providerUnofficial DeepSeek Harness LLM provider plugin for Command Code, ported from pi-commandcode-provider (MIT). Registers the 'commandcode' provider route with a Models-page card and live model catalog.Plugin Subscriptionsdsh-plugin-subscriptionsUse ChatGPT (Codex), Claude, Grok (X Premium), GitHub Copilot, and Google Antigravity subscriptions as DeepSeek Harness LLM providers, with OAuth login from the web Settings pageCodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

dsh-t3-model-picker

A model picker for the DeepSeek Harness composer, ported from T3 Code's model selector.

The picker: provider rail, grouped search, favorites and jump shortcuts

Open the picker, search across every provider, star what you use, and reach the first nine rows with Cmd/Ctrl+1…9.

Credit

The selector this plugin implements is T3 Code's ProviderModelPicker. The provider rail, the borderless search field, the row layout with a provider footer, the favorites model, the tiered search ranking, and the Cmd+1…9 jump chords are all theirs. T3 Code is open source under MIT; this port keeps the same behaviour and swaps the data underneath for DeepSeek Harness's model directory. Please support the original project.

Features

  • Provider rail. A 44px column with Favorites first and one tile per advertised provider. The active entry carries a primary-colored indicator.
  • Search. The field takes focus when the picker opens. Matching uses tiered scoring over the model name, its description, the provider id and the provider name, including subsequence matching for queries of three characters or more, with a small boost for favorites. Results are grouped under provider headings.
  • Favorites. A star on every row, stored in the browser under dsh.t3-model-picker.favorites.v1 as [{ provider, model }]. The Favorites rail entry lists them grouped by provider.
  • Jump shortcuts. Cmd+1…9 on macOS, Ctrl+1…9 elsewhere, select the first nine rows of the visible list; each of those rows shows its chord in a kbd chip. The listener is live only while the card is open.
  • Unavailable models. Providers the host does not report as routable are marked on their rows, on the rail tile's tooltip, and on the trigger.
  • Reasoning effort. A footer row opens the effort levels the current model advertises. It is hidden when the model exposes none.

Install

From this repository:

dsh plugin --profile web add github:yusufameri/dsh-t3-model-picker

Or from the release tarball, which needs no build step:

dsh plugin --profile web add https://github.com/yusufameri/dsh-t3-model-picker/releases/latest/download/dsh-t3-model-picker.tgz

Once the package is on npm, the registry form is one word shorter:

dsh plugin --profile web add dsh-t3-model-picker

Any of them reconciles the profile's bundle list, so the next boot merges the plugin's patch and loads its client half. Removing the bundle restores the shipped model selector with no residue.

Screenshots

Picker open on FavoritesGrouped search resultsFavorites after starring
Favorites paneSearch grouped by providerFavorites list

How it works

The composer's conversation.input.model seat is a single slot. Two occupants can coexist there at different priorities, and the lowest live priority renders, so this plugin registers at -1 and the shipped ModelSelect at its default 0 stops rendering.

Both read the same per-session model directory (ctx.modelDirectories), which is also what the /model command popup uses. A model chosen here is what those surfaces show next, and a selection made there is what this picker highlights.

FileRole
package.jsonBundle manifest: dsh.bundle.patch plus the dsh.client web half
cordis.patch.ymlOne insert row mounting the bundle
index.jsHost half — empty; the feature is entirely browser-side
client.jsClient half: the picker, its styles, favorites and shortcuts

Differences from T3 Code

Three deliberate departures, all recorded in client.js:

  • Search results are grouped under provider headings. T3 renders one flat ranked list with the provider named on each row.
  • A footer row keeps the reasoning-effort selector reachable. T3 keeps effort in a sibling control, while in DeepSeek Harness this seat is the composer's only effort control.
  • The row of the model in use carries a check mark. This seat is single-select and the trigger is not always in view.

Known limits

  • The picker needs a session-scoped model directory. Addressed subagent sessions expose none, so the seat stays absent there.
  • Jump chords are open-only, as in T3. There is no closed-picker shortcut.
  • The effort footer only ever shows models whose provider advertises reasoning metadata.

Development

No build step: client.js is plain JavaScript in the format the client module loader takes. Edit it and reload the page.

scripts/ holds the recording tooling used for the assets above. It drives the running DeepSeek Harness page over the Chrome DevTools Protocol, so no browser download is needed:

node scripts/record.mjs <run-dir>                       # frames + stills + timeline
node scripts/encode-gif.mjs <run-dir> <out.gif> --fps 12 --speed 1.8 --start 1.14

record.mjs expects the page to show a session whose composer carries the picker, and it restores the browser's favorites when it finishes. The encoder crops, resizes, and assembles the GIF with sharp; it needs no ffmpeg.

Releasing

RELEASING.md covers the npm token setup, the tag-driven release workflow, and the manual publish fallback.

License

MIT. The interface this plugin reproduces comes from T3 Code, MIT licensed, by its authors.