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 Manager — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-model-manager

Model Manager

Model tags, reasoning capabilities, image routing, and vision proxy support for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-model-manager@0.2.1
READMECompatibilityVersions

Compatibility and provenance

Model Manager is published as dsh-model-manager and currently resolves to version 0.2.1. 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.1stable
8/19/2026
0.2.0stable
8/19/2026
0.1.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.2.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
646.2 kB
Files
20
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
103
Security scan
✓ v0.2.1 scan passed
Last push
8/31/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 the current session provider's today usage on the sidebar entryWhale 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-manager

中文 | English

dsh-model-manager provides an independent Model Center settings page and shares model metadata with the official DeepSeek Harness model settings page and model picker. This first stage does not replace llm-pi-ai, credentials, onboarding, the official model picker, or @deepseek-ai/dsh-tool-fs.

Features

  • Adds case-insensitive model tags while preserving the first entered display spelling.
  • Maintains tags and vision proxies by provider in Settings → Model Center. It coexists with the official Models page and writes the same manager metadata.
  • Configures off, minimal, low, medium, high, xhigh, and max reasoning levels through the official reasoningEfforts field.
  • Edits official image-input capability through the model input field.
  • Assigns an exact, natively image-capable proxy model to a text-only model.
  • Filters the official model selector by one or more tags using OR matching.
  • Shares image-proxy results between prompt transcription and read_image calls with the same session, image, route, focus, and prompt-template version.

The host's model-discovery dialog starts every newly discovered model unchecked and provides Select all and Clear actions. Those controls belong to the compatible host build, not to this plugin's stored metadata.

Compatibility

This plugin requires a DeepSeek Harness build that provides ctx.imageInput, additive model-settings extensions, and additive model-selection filters. Released hosts that do not contain those APIs are incompatible; update the host before enabling the plugin. The Host service requires imageInput, attachments, and llm, so Cordis will not activate it without the required public services.

Evolution boundary

The Model Center currently owns only this plugin's tag and image-routing metadata. Loaded LLM adapters remain the source of the runtime model directory. The page does not copy model routes, OAuth tokens, or Host credentials; future OAuth providers will contribute to the center while retaining their own protocol and adapter implementations.

Provider plugins can call registerModelCenterExtension() from dsh-model-manager/client to render sign-in, account, or provider-specific configuration in the independent page without adding provider branches to the manager core.

Image routing

Native image capability always wins. For a text-only source model, the plugin uses only its explicitly configured proxy. The proxy target must exist, be different from the source, and directly declare image input; proxy chaining and fallback searches are not performed.

Uploaded images remain unchanged in the durable user message. Before the provider request, the plugin records a replayable proxy observation and removes image blocks only from the outgoing copy consumed by the text-only model. read_image accepts an optional focus string and returns the proxy observation instead of injecting the original image into that model's context.

Proxy requests use the Harness LLM and credential services. Cancellation propagates from the active turn, and proxyTimeoutMs adds an upper bound. A failed proxy request fails explicitly and is not retried with another model.

Configuration

- insert:
    - id: dsh-model-manager
      name: dsh-model-manager
      config:
        proxyTimeoutMs: 60000
        # metadataPath: D:/dsh/model-manager.json
        # dshHome: D:/dsh-home

By default, metadata is stored at <DSH_HOME>/plugins/dsh-model-manager/config.json. Writes use an atomic replacement and a monotonic revision; a stale page is rejected instead of overwriting a newer page.

Browser persistence

The selected tag filter is normal, global UI state stored under dsh.model-manager.selector.global.tags.v1. Invalid or unavailable browser storage falls back to no filter. Model tags, reasoning levels, image capability, proxy routes, credentials, and form drafts are not stored in browser storage.

Development

pnpm run typecheck
pnpm test
pnpm run build
pnpm run pack:check