DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Plus — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
P

dsh.plus

Plus

在 DeepSeek Harness 内展示 dsh.plus 精选插件目录:浏览、复制安装命令、打开 GitHub。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:zhaimingyou/dsh.plus#9962d5730b5b3ad96f1c98ec5ea190863476024b
README兼容性版本

兼容性与来源证明

Plus 以 dsh.plus 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/25

版本

0.1.0stable
2026/8/25
最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/9/11
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

dsh.plus

English | 中文

A DeepSeek Harness (DSH) plugin that shows the dsh.plus curated plugin catalog inside DSH. Once installed, a Plugin Catalog page appears under DSH Settings, listing the human-curated DSH plugins from dsh.plus live: browse, search, filter by category, copy the install command, or open each plugin’s GitHub repository.

This plugin is a read-only gallery: it surfaces entries to other plugins. It installs nothing, executes no plugin code, and never mutates the profile. The install command is derived by the host from the GitHub repository URL and is shown for copying only.

Features

  • Live data: the host fetches dsh.plus’s public catalog contract (/v1/plugins + /plugin-index.json) at runtime — the site updates and the gallery follows, with no extra deployment.
  • Bilingual: plugin summaries load in zh or en to match the DSH UI language.
  • Search / category filter / sort: name-and-summary search, six-category filter, and sorting by stars / updated time / name.
  • Copy the install command: dsh plugin --profile web add github:<owner>/<repo>.
  • GitHub links: every card opens the plugin repo and shows stars, license, publisher, last-updated time, and cover.
  • Safety boundary: all remote fields are sanitized and URLs re-validated against the DSH Community Market contract; no install scripts or credentials ever pass through.

Install

# from GitHub (dev / preview)
dsh plugin --profile web add github:zhaimingyou/dsh.plus

# once published to npm:
dsh plugin --profile web add dsh.plus

Restart DSH, then open Settings → Plugin Catalog.

Conforms to the DSH plugin spec

This plugin follows the official DeepSeek Harness plugin model (deepseek-ai/deepseek-harness):

  • A Cordis (@deepseek-ai/cordis) dual-half plugin:
    • host half (src/): apply(ctx) injects the webServer service and registers a read-only route;
    • browser half (src/client/, exported as ./client): injects slots/locale and registers a page in the settings.section slot.
  • The dsh.client manifest in package.json (platform: "web" + client dependency injection) declares the browser half.
  • cordis.patch.yml (via dsh.bundle.patch) inserts the plugin into the profile’s layer stack so dsh plugin add takes effect automatically.
  • The client artifact is built by tsdown into a lazy-CJS factory bundle that calls window.__ModuleLoader__.load({ id, factory }).

It reuses the standard catalog-source contract dsh.plus already publishes (/catalog-source.json + GET /v1/plugins, v1), so this plugin is essentially a “Path B” browser-side rendering of that directory.

Development

npm install
npm run typecheck   # both host and client projects
npm run build       # tsc (host) + tsdown (client)
npm run check       # typecheck + build + preflight guard

Artifacts: lib/ (host, ESM) + client/client.js (browser factory bundle, committed). prepack builds and runs preflight, which asserts the cordis.patch.yml name and bundle loader id match the package name.

Project layout

src/
├── index.ts             # host entry: inject webServer, mount routes
├── catalog.ts           # fetch + merge + sanitize the dsh.plus catalog
├── routes.ts            # GET /dsh.plus/catalog
├── http.ts              # minimal JSON response helper
└── client/              # browser half (bundled by tsdown)
    ├── index.ts         # registers settings.section
    ├── CatalogSection.tsx   # gallery UI
    ├── styles.ts        # styles following DSH design tokens
    ├── locales.ts       # zh/en dictionaries
    └── types.ts         # catalog data types
tsdown.config.ts         # client factory bundle config
cordis.patch.yml         # profile layer insertion
scripts/                 # banner normalization + preflight guard

Relationship to dsh.plus

dsh.plus is the bilingual DSH ecosystem portal and curated plugin directory. This plugin is its in-DSH rendering: the host process reads dsh.plus’s public catalog data at runtime, and this repository bundles no plugin snapshot or third-party code.

Disclaimers

  • This plugin is maintained independently by the dsh.plus community and is not affiliated with or endorsed by DeepSeek AI or the official DeepSeek Harness project.
  • Catalog listings are third-party open-source code; this plugin only browses metadata and does not install, execute, or review any plugin code. Verify a plugin’s source and trustworthiness before installing it.
  • Compatibility: targets the DeepSeek Harness web client (dsh web) with dsh.client support.

License

MIT