DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dshmarketplace-plugin

Marketplace Plugin

在 DSH 中浏览和安装 DeepSeek Harness 插件,支持英文或中文。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:DshMarketPlace/dsh-plugins-store#6584015195df5a445edbc3db5ba133a995328dc6
README兼容性版本

兼容性与来源证明

Marketplace Plugin 以 dshmarketplace-plugin 发布,当前版本为 0.1.7。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.7stable
2026/8/28
0.1.6stable
2026/8/28
0.1.5stable
2026/8/21
查看其余 5 个版本收起版本
0.1.4stable
2026/8/17
0.1.3stable
2026/8/17
0.1.2stable
2026/8/17
0.1.1stable
2026/8/17
0.1.0stable
2026/8/17
最新版
0.1.7
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 6
周下载
262
最近提交
2026/8/28
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

README

DSH Marketplace — install DeepSeek Harness plugins without leaving DSH

English · 简体中文


Browse and install DeepSeek Harness plugins from inside DSH, in English or Chinese. Backed by DSH Marketplace, which writes a page per plugin rather than linking straight out to GitHub.

The npm package is dshmarketplace-plugin; this repository is dsh-plugins-store. The names differ because the shorter one was taken.

Install

dsh plugin --profile web add dshmarketplace-plugin

Then /store in any session, or Settings → Plugins → Plugin store.

--profile is not optional. dsh plugin forwards to pnpm inside a profile directory, so dsh plugin add x exits with required option '--profile <name>' not specified and installs nothing. Swap web for your profile if you run another one.

What it does

/storeOpens the catalogue over the session — search by capability, see what each plugin reaches, install without leaving the harness.
Install-tested onlyEvery plugin offered here already installed cleanly in a throwaway sandbox. Anything that failed, needs a manual build-script approval, or was never tested stays off the shelf — the full catalogue, verdicts included, is on dshmarketplace.dev.
Settings tabThe same catalogue, docked under Settings → Plugins.
Agent toolsdshmarketplace_search and dshmarketplace_install, so "find me a memory plugin and set it up" works in conversation.
Bundled skillTeaches the agent to search rather than recall a plugin name from training data — for an ecosystem this young, a remembered name is usually wrong.
BilingualEvery listing carries a hand-written English and Chinese description. The plugin follows your DSH language setting, live.

Safety

Plugins run with your agent's permissions, and a listing is not a security review. Three things this plugin does about that.

Install commands are validated, never interpolated. The catalogue supplies a command already built; src/installer.js accepts only a bare npm specifier or github:owner/repo, refuses anything containing .., and passes arguments as an array rather than through a shell. If the catalogue were ever compromised, the blast radius stops there. tests/installer.test.js covers that boundary specifically — writing it found a real hole, since ../../etc/passwd is only word characters, dots and slashes.

The browser half cannot reach the shell. It talks to two exact-path local endpoints, and the install endpoint takes a catalogue entry rather than a command, so the client cannot widen what runs.

Risk flags gate both paths. Listings carry detected install script, terminal surface and requires credentials flags. Anything flagged stops for an explicit confirmation, in the UI and on the agent path alike — and the confirmation says plainly that an empty list would not have meant it was safe.

Privacy

The plugin sends exactly one thing anywhere: after a successful install, the plugin's public identifier, so install counts are real. No machine id, no session id, no user, no query, no telemetry of any other kind. Searches go to the public catalogue API in order to answer them and carry no identifiers.

DSHM_NO_TELEMETRY=1    # disables the install count entirely
DSHM_API=https://…     # point at a different catalogue

Development

npm install
npm test         # the install-command boundary, and catalogue helpers
npm run build    # esbuild → lib/index.js (node) and lib/client.js (browser)

The browser bundle may only require react and @deepseek-ai/dsh-client-ui-primitives, and must announce itself through window.__ModuleLoader__.load. build.mjs enforces both against the emitted code before writing it, so an unsupported import fails here instead of inside someone else's harness.

Related

  • dshmarketplace.dev — the catalogue, with a written page per plugin
  • dshmarketplace-cli — the same catalogue for coding agents outside DSH
  • GET /api/v1/plugins — the public API all three read

Contact

  • Community — LINUX DO
  • Issues — GitHub Issues

Acknowledgements

  • LINUX DO — where the DSH ecosystem is actually being discussed, and where this project is published and takes its feedback. Plugins whose authors posted them there carry a verified badge in the catalogue.
  • awesome-dsh-plugin (CC0-1.0) — the community registry the catalogue is seeded from.
  • ZASENJC/dsh-plugins-store (MIT) — reading its source is how the DSH client plugin API was worked out. No code was copied; the manifest shape, the two entry points and the slot names are public interface, and having them written down saved a lot of guessing.

License

MIT. Independent project, not affiliated with DeepSeek. DeepSeek and DeepSeek Harness are marks of their respective owner, used here only to describe what this plugin is for.