DeepSeek Harness 插件

dsh-product-delivery-workflow

Product delivery workflow plugin for DeepSeek Harness: a full product-to-release pipeline (research -> PRD -> OpenSpec architecture -> parallel multi-agent implementation -> review loops -> tests ->(英文原文)

跳到安装方式

来源信息

GitHub 仓库
wellorbetter/dsh-product-delivery-workflow
最近更新
2026年8月13日
分类
自动化与任务
GitHub stars
2
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/wellorbetter/dsh-product-delivery-workflow
插件名:dsh-product-delivery-workflow
作者:wellorbetter

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

<h1 align="center">Product Delivery Workflow</h1>

<p align="center">

<a href="README.md">English</a>&nbsp;|&nbsp;<a href="README.zh.md">中文</a>

</p>

<p align="center"> <a href="https://github.com/wellorbetter/dsh-product-delivery-workflow/blob/main/LICENSE"><img alt="License MIT" src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square"></a> <a href="https://github.com/deepseek-ai/deepseek-harness"><img alt="For DeepSeek Harness" src="https://img.shields.io/badge/For-DeepSeek%20Harness-8257D0.svg?style=flat-square"></a> <a href="https://github.com/topics/dsh-plugin"><img alt="dsh-plugin" src="https://img.shields.io/badge/topic-dsh--plugin-0969da.svg?style=flat-square"></a> </p>

<p align="center"> <strong>A product delivery workflow plugin for DeepSeek Harness: a full product-to-release pipeline with loop closure, built for high-quality autonomous completion of long, hard tasks.</strong><br> <em>Kick it off before you sleep; wake up to the final report.</em><br> <strong>100% AI-native</strong> — no human in the loop: autonomous research, architecture, implementation, review, testing, and release audit, end to end. </p>

What this plugin provides

Installing this bundle adds one workflow skill + nine role-agent skills to every session of the target dsh profile (via the model-facing skill tool and ctx.skills). No other configuration is needed.

SkillRole
product-delivery-workflowThe orchestrator: 10 stage gates from brief to release, artifact-driven, with review loops and a required final report.
product-agentProduct manager: evidence-backed decisions (BUILD / REFINE / REJECT), PRDs with acceptance criteria and metrics.
architect-agentSenior architect: OpenSpec proposals, component boundaries, interfaces, contracts, and dependency-ordered task graphs.
senior-dev-agentSenior developer: bounded implementation from contracts, deterministic tests, explicit error handling.
agent-teamMulti-agent team/swarm: bounded subagents, parallel workflows, disjoint ownership, independent review.
perf-reviewer-agentRead-only performance reviewer against PRD budgets.
test-agentAutomated testing and manual platform/device verification against contracts and acceptance criteria.
memory-curatorSafe cross-session memory candidates from approved evidence only.
evolution-agentMeasurable workflow improvements as evidence-backed proposals.
release-audit-agentRead-only pre-commit / pre-GitHub release audit (secrets, privacy, hygiene).

The workflow in one picture

Brief → Research → Product Decision → PRD → OpenSpec Architecture
      → Parallel Implementation (one bounded agent per task)
      → Independent Review Loop (correctness / architecture / performance)
      → Tests & Acceptance → Memory & Evolution → Release Audit
      → Required Final Report ──┐
                                └── findings route back to workers → loop until PASS

The loop is the point: every review finding routes back to the responsible worker and repeats until all reviewers pass (5 cycles max, then it asks for human direction). Nothing is claimed unless its artifact or verification result exists.

Why run it overnight

  • Loop closure — review → fix → re-review continues without human babysitting; it stops only when gates pass or a hard blocker needs you.
  • Artifact persistence — everything lands under .opencode/workflow/<slug>/ (01-research.md10-*), so you can audit the whole run after sleeping.
  • Bounded delegation — parallel waves with disjoint file ownership and explicit contracts; workers never commit, push, or redesign contracts.
  • Safety rails — the release audit runs before any git commit / PR / push, and memory curation never stores secrets or transcripts.
  • Self-improvingevolution-agent + memory-curator turn each run's evidence into proposals and durable memory for the next one.

Install

Requires the dsh CLI (install DeepSeek Harness).

# from GitHub (recommended)
dsh plugin --profile web add github:wellorbetter/dsh-product-delivery-workflow

# or from a local checkout
dsh plugin --profile web add ./dsh-product-delivery-workflow

Restart the profile (dsh web / dsh --profile <name>) after installing. The plugin is a bundle: it declares dsh.bundle.patch, so dsh plugin reconciles it into the profile's dsh.profile.bundles layer list automatically. It ships plain JavaScript (lib/index.js), so a GitHub install needs no build step or allowBuilds permission.

Use

In any session of the profile, ask for the workflow — the orchestrator loads the role skills itself:

> Run the product delivery workflow on <brief>. Produce the full pipeline and the final report. You may work autonomously; loop until the gates pass.

Or invoke a single role for a bounded task:

> Use product-agent to review this PRD against the delivery results and report gaps.

For overnight runs, pair it with the goal/headless mode: start a session with the brief, let it loop, and check the .opencode/workflow/<slug>/ artifacts and final report in the morning.

Development

pnpm install
pnpm verify     # discovers + loads all 10 packaged skills through the provider

License

MIT