DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-plugin-module-driven-dev

Plugin Module Driven Dev

模块驱动开发(MDD)DSH 插件:需求递归拆解为模块树、每个模块由独立子 agent 依据设计文档全量生成代码、主 agent 调度集成调试、设计变更全量重生成、需求调整递归传播。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:phantomSuying/dsh-module-driven-develop#1655b857df589aa227a0aeb8d41830a27ba2532b
README兼容性版本

兼容性与来源证明

Plugin Module Driven Dev 以 dsh-plugin-module-driven-dev 发布,当前版本为 1.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

1.1.0stable
2026/8/30

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

继续浏览 agents-orchestration 分类下经过校验的插件。

Headless@deepseek-ai/dsh-headlessdsh one-shot bundle:基于 dsh-base 的直接核心 Agent/Session 运行器,不包含 Host、HTTP 或浏览器层Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序Subagent Claude Code@deepseek-ai/dsh-subagent-claude-code基于官方 Agent SDK 的一次性 Claude Code 子代理提供方

README

🧩 dsh-plugin-module-driven-dev

Module-Driven Development (MDD) plugin for DeepSeek Harness

Decompose any requirement into a module tree, let each module be designed and generated by an independent agent, have the main agent orchestrate, integrate and debug, and fully regenerate from design whenever a design or requirement changes.


Table of Contents

  • Features
  • Example project
  • Installation
  • Usage
  • How it works
  • Project structure
  • Development
  • License

✨ Features

#FeatureHow it works
1A programming pluginA skill-driven software development protocol covering decomposition, design, implementation, integration, debugging and change management.
2Recursive requirement decompositionRequirements → modules → submodules, decomposed level by level until every leaf module is small enough for a single agent to design and implement independently (termination rules in references/decomposition.md).
3Independent agents generate codeEach leaf module is fully generated by its own sub-agent; a module with submodules acts as the next-level main agent and dispatches recursively. The main agent orchestrates, integrates and debugs (references/agent-protocol.md).
4Design change ⇒ full code regenerationThe design document is the single source of truth. Bumping its revision archives the old code, wipes the module directory, and regenerates everything from the new design — patching old code is forbidden.
5Requirement changes propagate recursivelyThe main agent dispatches a change-analyst sub-agent to locate affected modules (including indirect dependencies); each module agent decides whether to push the task further down to its submodule agents, then redesigns and regenerates.

🎯 Example project: auth-service

A real project developed end-to-end with this plugin — a small JWT authentication service (Python 3.12 / FastAPI + SQLite), fully built by the MDD workflow.

Module idPython packageResponsibility
common/contractsauthsvc_contractsShared DTOs (pydantic), business exceptions, rule constants
common/configauthsvc_configEnvironment-based configuration (AUTH_* prefix)
core/securityauthsvc_securityPBKDF2-SHA256 password hashing, JWT issue/verify, token hashing
data/dbauthsvc_dbSQLite connection (WAL, foreign keys) and users/sessions schema
data/user-storeauthsvc_user_storeUser table storage
data/session-storeauthsvc_session_storeSession lifecycle (create / query / revoke)
auth/serviceauthsvc_authAuth orchestration: register / login / refresh / logout / me
api/routesauthsvc_apiFastAPI HTTP layer: routes, DI, unified error handling

The .mdd/ workspace in that repo records the whole process:

  • manifest.md — the module tree: 8 leaf modules + root, acyclic dependency graph, integrated status, revision 1;
  • designs/ — 9 design documents (one per module + root) with contract tables, dependency references, acceptance criteria and revision history;
  • logs/schedule.md — the delegation log: 5 topological batches (B1–B5) of independent sub-agents, then P4 integration and P5 smoke test;
  • logs/<module>/report.md — per-module delivery reports.

Verification results (run locally):

  • ✅ 169 test cases pass (module unit tests + API end-to-end, exit 0);
  • ✅ 15/15 HTTP smoke checks pass — register, duplicate 409, login, wrong-password 401, /me, refresh-token rotation (replay protection), logout revocation, validation errors.

Clone it and explore — every design decision, delegation and test is documented in .mdd/.

📦 Installation

Option A — One-click install (profile bundle, recommended)

The package is a self-contained Cordis bundle: index.js locates the bundled skills/ directory via import.meta.url and registers a skill provider — no hardcoded paths, works from any machine and any install source:

# One command installs into a profile (web, or any profile name). Restart dsh afterwards.
dsh plugin --profile web add git+https://github.com/phantomSuying/dsh-module-driven-develop.git

After installation every agent session under that profile has the module-driven-dev skill in its catalog.

Option B — Copy the skill directory (no pnpm / profile)

DSH discovers skills from fixed roots (<project>/.dsh/skills, ~/.dsh/skills, ~/.agents/skills):

# Install for the current project (immediately available in this directory's sessions)
.\scripts\install.ps1 -Scope Project

# Install user-wide (available in every project)
.\scripts\install.ps1 -Scope User

Option C — From a packed tarball

npm pack
dsh plugin --profile web add C:\path\to\dsh-plugin-module-driven-dev-1.1.0.tgz

Verify

In a new session, ask the agent to list available skills (or simply say "use module-driven development mode"). module-driven-dev should appear.

🚀 Usage

Just talk to the agent:

  • "用模块驱动开发实现 <requirement>" → main agent runs P0–P5: decompose the module tree (.mdd/manifest.md) → design each module (.mdd/designs/) → dispatch independent sub-agents to generate code (.mdd/code/) → integrate, build, debug.
  • "把 <module> 的设计改成 …" → design change: revision +1, archive old code, regenerate everything from the new design.
  • "需求调整:<new requirement>" → a change-analyst sub-agent locates the affected modules (including propagation along the dependency graph), module agents recursively decide whether to push the task further down, then redesign + regenerate + re-integrate.

All artifacts live under .mdd/ (layout: references/workspace-layout.md).

🧠 How it works

dsh-plugin-module-driven-dev        ← Cordis bundle (patch layer, not executed itself)
  └─ cordis.patch.yml inserts one row:
       skill-mdd-provider            ← loader entry (id)
         name: dsh-plugin-module-driven-dev
           └─ index.js               ← self-locating plugin (import.meta.url → ./skills/)
                └─ ctx.skills provider: module-driven-dev
                     └─ discovers → module-driven-dev (the skill, SKILL.md)
                          └─ the main-agent protocol: P0 启动 → P1 拆解 → P2 设计
                             → P3 独立 agent 生成 → P4 集成 → P5 调试 → P6 变更

The skill is the product; the provider row is the infrastructure that makes it discoverable.

📁 Project structure

dsh-plugin-module-driven-develop/
├── index.js                 # Self-contained skill provider (portable, no absolute paths)
├── cordis.patch.yml         # Bundle patch: mounts index.js into the host composition
├── package.json             # Bundle metadata (dsh.bundle.patch)
├── scripts/
│   └── install.ps1          # Skill-directory installer (Project / User scope)
├── test-provider.mjs        # Functional test for the skill provider
└── skills/
    └── module-driven-dev/   # The plugin core: skill bundle
        ├── SKILL.md                    # Main-agent work protocol (six phases)
        └── references/
            ├── decomposition.md        # Decomposition algorithm & leaf termination rules
            ├── agent-protocol.md       # Sub-agent dispatch protocol + prompt templates
            ├── workspace-layout.md     # .mdd/ workspace conventions
            └── templates/
                ├── module-design.md    # Module design-document template
                ├── module-manifest.md  # Module-tree manifest template
                └── change-request.md   # Requirement-change template

🛠 Development

npm pack                                        # Build the distributable tarball
node test-provider.mjs                          # Verify the skill provider (discovery + load)
.\scripts\install.ps1 -Scope Project            # Install the skill for local testing

The provider is deliberately dependency-free: no runtime imports beyond Node built-ins, so the bundle installs anywhere.

📄 License

MIT © 2026 phantomSuying