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.

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

@zim9729/dsh-subagent-model-picker

Subagent Model Picker

Per-conversation subagent model selection for DeepSeek Harness Desktop.

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

npx -y @deepseek-ai/dsh plugin --profile web add @zim9729/dsh-subagent-model-picker@0.2.3
READMECompatibilityVersions

Compatibility and provenance

Subagent Model Picker is published as @zim9729/dsh-subagent-model-picker and currently resolves to version 0.2.3. 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/20/2026

Versions

0.2.3stable
8/27/2026
0.2.2stable
8/27/2026
0.2.1stable
8/27/2026
Show 2 more versionsCollapse versions
0.2.0stable
8/27/2026
0.1.1stable
8/27/2026

Related plugins

Loading related plugins…

Latest
0.2.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
34.4 kB
Files
8
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
38
Last push
8/27/2026
View source ↗Project homepage ↗
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 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-subagent-model-picker

Per-conversation subagent model selection for DeepSeek Harness Desktop.

中文文档

Features

  • Adds a "Subagent Model" selector beside the conversation composer.
  • Lists all configured provider/model pairs from the llm-pi-ai settings.
  • The default option ("Follow main agent") mirrors the main agent's current model in real time.
  • Applies the selected provider/model to subagent, subagent_fork, and workflow child agents.
  • Keeps the override at the root conversation when a child session is addressed.
  • Restores the override after restart from the DSH home storage directory.
  • Provides the subagent_model_ctl model tool with get, set, and clear actions.
  • Uses a same-origin loopback API with session, model, method, and request-size validation.

Install

CLI

dsh plugin --profile desktop add @zim9729/dsh-subagent-model-picker@0.2.0

DSH Web

Open the DSH web GUI (e.g. http://127.0.0.1:43120), go to Settings → Plugins, search for dsh-subagent-model-picker, and click Install. The web plugin manager resolves the package from npm and adds it to the active profile automatically.

After installation (either method), restart DSH when prompted. The package declares both dsh.bundle.patch and dsh.client, so the Host and browser entries mount automatically. Do not add a duplicate row to the profile's cordis.patch.yml.

How It Works

SelectionSubagent model
Follow main agent (default)Mirrors the main agent's current provider/model
A specific provider/model pairUses the selected pair for all child agents in this conversation

The main agent's model is always controlled by the GUI model selector and is not affected by this plugin.

Storage

Overrides are stored in:

<DSH_HOME>/storages/subagent-model-overrides.json

The file contains a versioned JSON object keyed by root conversation session ID. Invalid or stale records are ignored and removed when the corresponding session is disposed.

Compatibility

Targets DSH 0.1.1-rc.2 service contracts and Node.js 20 or newer. The package uses DSH peer dependencies rather than bundling the Host runtime.

Development

npm install
npm run check
npm pack

npm run check builds the distributable JavaScript files, runs all tests, and performs an npm dry-run package check.

Publishing

  1. Push this repository to GitHub.
  2. Run npm publish --access public from a clean tagged commit.
  3. Submit the npm package/repository URL to the DSH plugin center registry.

The plugin center catalog and npm publication are separate operations.

Security

The local API accepts only loopback same-origin browser requests. Model credentials are never read or returned by this plugin.