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.

Manager — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@snowsalt/dsh-manager

Manager

ComfyUI-Manager-style plugin marketplace for DeepSeek Harness: browse, install, update, and remove dsh plugins. Download and use — no special build needed.

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

npx -y @deepseek-ai/dsh plugin --profile web add @snowsalt/dsh-manager@0.3.0
READMECompatibilityVersions

Compatibility and provenance

Manager is published as @snowsalt/dsh-manager and currently resolves to version 0.3.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/21/2026

Versions

0.3.0stable
8/15/2026
0.2.0stable
8/14/2026
Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
36.5 kB
Files
8
Surface
any
License
MIT
Source
npm
GitHub
★ 7
Weekly downloads
15
Last push
8/15/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

README

@snowsalt/dsh-manager

ComfyUI-Manager-style plugin marketplace for DeepSeek Harness.

Download and use — no special build needed. Install as a standard dsh profile plugin, then open the marketplace page to browse, install, update, and remove dsh plugins from a community registry plus a live npm search.

Features

  • Plugin marketplace: browse installable dsh plugins (official + npm search + community registry).
  • One-click install / uninstall / update via the dsh plugin CLI.
  • Community registry (ComfyUI-style): a hosted JSON index that anyone can extend by PR.
  • Live npm search: discovers @deepseek-ai/dsh-* and dsh-plugin-tagged packages automatically.
  • Standalone page: served by the harness webserver at /dsh-manager — works in any browser.

Install

# 1. Add the plugin to the web profile
dsh plugin --profile web add @snowsalt/dsh-manager

# 2. Start the harness web UI
dsh web

# 3. Open the marketplace
#    http://127.0.0.1:3080/dsh-manager

For a pre-release / git source:

dsh plugin --profile web add git+https://github.com/KYZHXL/dsh-manager.git

How it works

The bundle patch (cordis.patch.yml) inserts a host plugin that registers HTTP routes on the harness webserver:

RoutePurpose
GET /dsh-managerThe standalone marketplace page (self-contained HTML/JS).
GET /api/dsh-manager/snapshotMerged catalog: npm search + community registry + installed state.
POST /api/dsh-manager/installdsh plugin add <source> for one entry.
POST /api/dsh-manager/uninstalldsh plugin remove <source>.
POST /api/dsh-manager/updatedsh plugin update all.

It depends only on @deepseek-ai/cordis and @deepseek-ai/dsh-host-webserver (peer dependencies), so it works on any stock DeepSeek Harness.

Community registry

The default registry is hosted at KYZHXL/dsh-plugin-registry (plugins.json). To add your plugin, open a PR adding one entry:

{
  "id": "my-plugin",
  "title": "My Plugin",
  "author": "You",
  "description": "What it does.",
  "source": "git+https://github.com/you/my-plugin.git",
  "reference": "https://github.com/you/my-plugin"
}

source may be an npm package name or a pnpm-installable git URL.

Development

npm install
npm run build     # tsc + copy market.html into lib/web
npm pack          # build the installable tarball

License

MIT