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 Devkit — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-plugin-devkit

Plugin Devkit

Developer toolkit: generate compliant dsh plugin scaffolding with one click (TypeScript by default, JavaScript optional), validate schemas against three mandatory rules, and generate community registry publication entries.

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

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

Compatibility and provenance

Plugin Devkit is published as dsh-plugin-devkit 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
web
Release source
npm
Registry updated
9/20/2026

Versions

0.3.0stable
8/16/2026
0.2.0stable
8/16/2026

Related plugins

Loading related plugins…

Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
810 kB
Files
9
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
30
Last push
8/16/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

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

🇬🇧 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 (中文)