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.

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

@dsh-external/dsh-plugin-manager

Plugin Manager

DeepSeek Harness plugin management: manifest / independent enablement and disabling / AI automatic categorization (reuses records to save tokens) / AI incremental descriptions / damage repair (strict verification) / UI translation / plugin marketplace (GitHub browsing · infinite scrolling · genuine

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

npx -y @deepseek-ai/dsh plugin --profile web add github:yunniees/DSH-Plugin-Manager#b5131a003766dc842c3d9412fdac0feda2f2dd04
READMECompatibilityVersions

Description

DeepSeek Harness plugin management: manifest / independent enablement and disabling / AI automatic categorization (reuses records to save tokens) / AI incremental descriptions / damage repair (strict verification) / UI translation / plugin marketplace (GitHub browsing · infinite scrolling · genuine installation). Plugin manager with an in-app market.

Compatibility and provenance

Plugin Manager is published as @dsh-external/dsh-plugin-manager and currently resolves to version 1.0.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/29/2026

Versions

1.0.1stable
8/29/2026

Related plugins

Loading related plugins…

Latest
1.0.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/28/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

@dsh-external/dsh-plugin-manager

English | 简体中文

A complete plugin manager for DeepSeek Harness — visual management, AI-powered translation, one-click summaries, AI search, share-and-install, and bulk updates, in a single installable package with an in-app plugin market.


✨ Key Features

FeatureWhat it does
🖥️Visual plugin managementCard-based inventory of installed plugins & presets: enable/disable, delete, version check, categorize — all from one panel, no CLI needed
🌐AI auto-translationSwitch the entire panel between Chinese / English, or any custom language — translated by your own model (pick a cheap model!), cached locally and persisted
📝One-click AI summariesLet AI write a one-line summary for every installed plugin; incremental + diff-aware, so it never wastes tokens re-summarizing unchanged plugins
🔍AI plugin searchDescribe what you need in plain words — the agent generates queries, scans GitHub (topic:dsh-plugin + wide net), picks the best candidates by relevance & stars, one-click install
🔗One-click share & installPackage one or many plugins/presets into a single dshpm:// link; send it to anyone, they paste and install everything at once
⬆️One-click updatesCheck and update all plugins (npm & GitHub sources) and GitHub-hosted presets in one click, with version selection when multiple tags exist

📸 Screenshots

Plugin Manager PanelPlugin Market
Plugin ManagerPlugin Market

📦 Install

# From GitHub (recommended)
dsh plugin --profile web add github:yunniees/DSH-Plugin-Manager

# Or from a local checkout (for development)
dsh plugin --profile web add /path/to/dsh-plugin-manager

The repo ships prebuilt artifacts (lib/) following the official "ship build output" publishing path — no allowBuilds grant, no prepare script, works out of the box. To pin a revision: github:yunniees/DSH-Plugin-Manager#<commit>.

Restart the Harness web UI after installing (the plugin depends on webServer and llm services in the main profile). You'll find the Plugin Manager entry at the bottom of the sidebar, next to Settings.

🚀 Usage

  1. Open the Plugin Manager entry in the sidebar.
  2. Pick an AI model from the top dropdown (needed for AI features; reuse your existing DSH provider — this plugin holds no API keys).
  3. Overview: AI auto-classify uncategorized plugins; AI summaries (incremental); each card's More menu: check update / pick version / delete / share.
  4. Market: browse, search, or AI search (type a requirement in plain words); enable AI Intro for per-plugin descriptions (long-press the button to clear its cache); scroll for infinite loading.
  5. Presets: toggle, check updates, pick versions, share links.
  6. Share: generate a dshpm:// link from any card's More menu; recipients paste it in the Share panel and everything installs in one go.

🔒 Security

  • No hardcoded keys — all AI calls reuse DSH's configured providers; the plugin never stores or reads API keys.
  • Local-only — the HTTP API binds to loopback; nothing is logged or sent out.
  • Input whitelisting — repo names, preset names, version tags and filenames are regex-validated against injection and path traversal.
  • Privacy — state files hold only UI data (categories, summaries, language); settings.yaml is read for provider/model names only.

🛠️ Development

npm install          # typescript + tsdown, build-time only
npm run typecheck    # host + client type check (must be 0 errors)
npm run build        # typecheck + compile host + bundle client → lib/
  • Host source: src/index.ts (Cordis bundle plugin, Node)
  • Client source: src/client/index.ts (vanilla DOM + CSS variables, no framework)

Always run npm run build after changing client source — otherwise the assembled bundle stays stale.

❓ FAQ

Q: The market loads slowly or fails? Official sources are tried first (via your proxy), then domestic mirrors take over without going through your proxy node. On total failure a "Load failed, click to retry" button appears. Note that the GitHub search API (api.github.com) is unstable from mainland China — a gh-proxy.com fallback kicks in automatically.

Q: Why must I pick a model first? All AI features reuse the providers already configured in DSH; this plugin holds no API keys. Pressing an AI button without a model selection shows a hint.

Q: "GitHub API rate limited"? Anonymous GitHub search is ~10 req/min; one AI search fires several queries concurrently, so rapid repeated use can hit the limit. You'll get a clear error and can retry.

Q: What is allowBuilds? DSH requires an explicit build grant for git-sourced plugins (pnpm ≥10). This plugin auto-grants and notifies when installing others — and because its own repo ships prebuilt lib/, it never requires a grant itself.

Q: What can One-Click Update update? npm-sourced plugins via the npm registry (explicit versions bypass the lockfile), GitHub-sourced plugins to latest HEAD or a chosen tag, and GitHub-hosted presets. Locally-linked plugins prompt you to git pull manually.

Q: What does deleting a plugin do? Confirmed deletes run dsh plugin remove (uninstalls from the profile and removes files); deleting a preset removes its directory.

📚 Documentation

Go deeper in ARCHITECTURE.md — mandatory rules, unified call layers, translation architecture, anti-regression patterns, and the release checklist.

📄 License

MIT — see LICENSE.