DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Reviewed Development Orchestrator — DeepSeek Harness 插件(DSH…
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
R

dsh-reviewed-development-orchestrator

Reviewed Development Orchestrator

已审阅 DeepSeek Harness 的五阶段软件开发编排

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

npx -y @deepseek-ai/dsh plugin --profile web add github:FriendsHL/dsh-reviewed-development-orchestrator#d7274e3b55fe93bd28b19d85da9db5f4bf252dec
README兼容性版本

兼容性与来源证明

Reviewed Development Orchestrator 以 dsh-reviewed-development-orchestrator 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/8/26

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
查看源码 ↗
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-reviewed-development-orchestrator

简体中文

A public DeepSeek Harness bundle that enforces a reviewed software-development process through five fresh DSH SubAgent sessions:

Designer -> Design Reviewer -> Implementer -> Code Reviewer -> QA

The single model-facing tool is run_reviewed_development. Review failures stop the run, and QA cannot report completion merely by claiming tests passed: a QA PASS is accepted only when every approved test-plan command has a matching successful shell call and result in the QA child session.

What the bundle installs

The bundle inserts one runtime plugin, reviewed-development-orchestrator. That plugin registers one tool and uses the existing DSH spawn SubAgent provider. It does not copy presets, replace the Agent loop, or install a second transcript store. Spawned roles inherit the initiating Agent's preset, model route, workspace, sandbox policy, and delegated approval policy.

Each role receives a fixed persona, structured-output schema, and tool restriction. Each child session remains the durable source for its complete prompt, output, tool evidence, provider descriptor, lineage, and selected preset. The parent receives a compact ordered summary with child session ids.

Process and gates

  1. Designer inspects the repository and returns a decision-complete design, risks, and an exact test plan. Its persona prohibits commit, push, publish, merge, and promotion steps.
  2. Design Reviewer returns PASS, CHANGES_REQUIRED, or BLOCKED. It is instructed to return BLOCKED when the design or test plan includes a prohibited release operation. Only PASS starts implementation.
  3. Implementer changes the workspace according to the approved design and reports changed files and checks run. Its persona prohibits commit, push, publish, merge, and promotion.
  4. Code Reviewer independently checks specification compliance and code quality. It is instructed to return BLOCKED when the implementation report indicates a prohibited release operation. Only PASS starts QA.
  5. QA executes every other approved test command and returns PASS, FAIL, or BLOCKED. It is instructed not to execute a test command that includes or performs a prohibited release operation and to return BLOCKED. A reported PASS is cross-checked against recorded shell events before the run becomes completed.

The orchestrator implements no dedicated commit, push, publish, merge, or promotion operation. All five fixed personas prohibit those actions; the review and QA personas also define the blocking behavior above. These are behavioral workflow gates rather than a security guarantee: inherited shell tools retain whatever authority the deployment sandbox grants. Deployments that need enforcement must restrict credentials, network access, tools, and filesystem permissions outside this plugin. Version 0.1 does not automatically revise work after a failed gate.

Install

DSH is in developer preview. Pin a reviewed commit:

dsh plugin --profile web add github:FriendsHL/dsh-reviewed-development-orchestrator#<commit>

The bundle contributes:

- insert:
    - id: reviewed-development-orchestrator
      name: dsh-reviewed-development-orchestrator
      config:
        providerName: spawn
        maxDepth: 3

For local development:

dsh plugin --profile web add link:/absolute/path/to/dsh-reviewed-development-orchestrator

Configuration

FieldDefaultPurpose
providerNamespawnRegistered fresh in-process spawn provider.
maxDepth3Absolute delegation-depth cap applied to every role.
maxTokensinheritedOptional positive token limit applied symmetrically to every role.
shellToolNamebash (pwsh on Windows)Supported shell tool whose persisted calls/results prove QA execution; other names are rejected.
designerToolsinheritedOptional non-empty allowlist for the Designer.
reviewerToolsinheritedOptional non-empty allowlist shared by both reviewers.
qaToolsinheritedOptional non-empty QA allowlist; it must contain shellToolName.

The orchestration tool is always denied inside child roles. Tool filtering controls model visibility and dispatch, not filesystem security; the host sandbox remains authoritative. Unknown configured tools fail when the child starts.

Tool input and result

run_reviewed_development accepts a non-empty standalone task. Optional provider and model overrides must be supplied together. Optional max_tokens applies to all five roles.

Terminal statuses are completed, changes_required, failed, blocked, cancelled, and error. Phase records include the role, child session id, stop reason, duration, verdict where applicable, summary, and validated structured result. Inspect the listed child sessions for complete evidence.

Development policy

Repository changes follow the same separation enforced at runtime: design and mapped test plan, independent design review, implementation by a development SubAgent, independent code review, and QA execution with fresh evidence. See CONTRIBUTING.md and the accepted design.

Verification

pnpm run check
# Build the DSH checkout once before the Web startup case.
DSH_CHECKOUT=/absolute/path/to/deepseek-harness pnpm run test:integration

The keyless installed-package suite packs the real npm artifact, installs it through dsh plugin into isolated Headless and Web profiles, and verifies:

  • all five roles run through DSH's real spawn provider in order;
  • all children inherit the initiating minimal preset;
  • design rejection stops before implementation;
  • QA executes the approved command through the real shell tool and its persisted result is successful;
  • the parent keeps the compact tool result and child ids;
  • built DSH Web starts and serves HTTP 200.

The deterministic adapter proves bundle loading, orchestration, tools, lifecycle, persistence, and gates without an API key. It does not replace an optional real-provider smoke.

See Architecture for the runtime design and limitations.

License

MIT