DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-plugin-devkit

Plugin Devkit

开发者工具包:一键生成合规 dsh 插件脚手架(默认 TypeScript,可选 JavaScript)、按三条硬规则校验 schema、生成社区注册表发布条目。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-devkit@0.3.0
README兼容性版本

兼容性与来源证明

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

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

版本

0.3.0stable
2026/8/16
0.2.0stable
2026/8/16
最新版
0.3.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
810 kB
文件数
9
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
30
最近提交
2026/8/16
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

README

🇬🇧 English | 🇨🇳 简体中文

dsh-plugin-devkit

Developer toolkit for building DeepSeek Harness (dsh) plugins. Generates compliant scaffolds, lints your tool schema against the 3 hard rules, and prepares a registry entry for publishing.

Install

# Option 1 (recommended): from npm (package name is dsh-plugin-devkit)
dsh plugin --profile web add dsh-plugin-devkit

# Option 2: from GitHub
dsh plugin --profile web add github:d-ouyang/dsh-plugin-devkit

# local dev:
dsh plugin --profile web add ./dsh-plugin-devkit

Restart the web service (:3080) after installing.

Tools

scaffold_plugin — generate a compliant scaffold

Say in chat: "Generate a dsh plugin named my-tool, category tools, author d-ouyang" → Creates ~/dsh-plugin-my-tool/ with the entry files (TypeScript by default: index.ts + <name>-core.ts + tsconfig.json), package.json, cordis.patch.yml, README.md, test.ts, examples/. → Pass language: "js" for plain JavaScript (index.js + <name>-core.js + test.mjs). → TypeScript plugins are transpiled on the fly by dsh's tsx at runtime (zero build) and get type-checking for the cordis ctx and tool schema.

lint_plugin — catch the 3 hard schema rules

Say: "Check if ~/dsh-plugin-my-tool's schema is valid" → Compiles your tools with the real harness defineTool compiler and translates cryptic errors into "you broke rule N — fix it like this".

explain_rules — the 3 hard rules explained

Say: "What are the 3 hard rules for dsh tool schema?"

open_landscape — plugin market landscape dashboard

Say: "Show me the dsh plugin market" / "Open the plugin landscape" → Generates and opens a visual dashboard: per-category plugin counts / avg stars / max stars, Top 25 by stars, and a competition-gap scan. Every direction has a "create this kind of plugin" button that copies a market-aware prompt — paste it into chat and the agent uses scaffold_plugin to build that direction for you.

  • Open directly in browser: file://~/.dsh/devkit/landscape.html
  • If dsh web has loaded this plugin (port may vary): http://localhost:3080/devkit/landscape

The 3 hard rules

  1. required is either omitted or true — never false.
  2. type is a single string — no arrays (use type: 'json' for nullable).
  3. Every object (incl. nested items) must set additionalProperties: true|false.

Full workflows: USAGE.md (EN) · USAGE.md (中文)