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.

Tool Reqpipe — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-tool-reqpipe

Tool Reqpipe

DeepSeek Harness 插件:reqpipe 研发需求流水线管理工具(需求→方案→评审→开发),含 create/advance/skip/list/show/checklist 工具

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-tool-reqpipe@0.2.0
READMECompatibilityVersions

Compatibility and provenance

Tool Reqpipe is published as dsh-tool-reqpipe and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.0stable
8/14/2026
0.1.1stable
8/13/2026
0.1.0stable
8/13/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
20.8 kB
Files
7
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
61
Last push
8/14/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.

DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugindsh-pluginA community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。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 sessions

README

dsh-tool-reqpipe

DeepSeek Harness 插件:把 reqpipe(研发团队需求流水线管理工具)包装成一组结构化工具,模型可以直接调用工具来创建需求、推进/跳过阶段、查看流水线、生成提交清单。

  • 阶段约定:需求 → 方案 → 评审 → 开发,每个需求一个工作目录,固定目录命名与文档格式
  • 评审闸门:评审由独立的 reqpipe_review 完成,评审人须与方案作者不同 (同一 agent 不能自写自评);reject 打回方案返工,approve 才进入开发
  • 身份留痕:advance / skip 自动记录调用 agent 的会话 id 为操作者
  • 跳过 方案/评审 即轻量流程,reason 必填并留档;方案作者不能跳过自己方案的评审
  • 规范值:每个工具返回 CLI 的 --json 输出;渲染层产出模型可见的中文文本

依赖

插件通过子进程调用 reqpipe CLI,必须先安装:

pip install reqpipe

安装

dsh plugin add dsh-tool-reqpipe

(开发/调试也可用 --patch 加载本目录:pnpm dsh web --patch ./cordis.patch.yml。)

注册的工具

工具参数说明
reqpipe_init—初始化流水线根目录(通常无需手动调用)
reqpipe_createtitle(必填), id?, description?, light?创建需求,返回清单
reqpipe_advanceid(必填), force?推进阶段(需求/方案/开发),自动生成下一阶段模板;评审阶段必须用 reqpipe_review
reqpipe_reviewid, reviewer(必填,≠方案作者), verdict: approve|reject, comment?评审方案:通过进入开发,不通过打回返工;每轮留档
reqpipe_skipid, stage: design|review, reason(必填)跳过方案/评审(轻量流程),原因留档;方案作者不能跳过自己的评审
reqpipe_list—列出所有流水线
reqpipe_showid查看详情(阶段状态、操作者、评审记录、跳过原因、历史)
reqpipe_checklistid生成提交清单(Markdown)

评审怎么用:方案(design)完成后,不要用 advance 推进评审阶段(会被拒绝); 应拉一个独立评审 agent,或请人工评审后由你代为调用 reqpipe_review,其中 reviewer 填评审人身份(其他 agent 的会话 id 或人工姓名),且必须与方案作者不同。

配置

在 profile / 组合包层的 cordis.patch.yml 中按需覆盖:

- id: reqpipe
  name: dsh-tool-reqpipe
  config:
    reqpipeBin: 'reqpipe'          # 默认:PATH 中的 reqpipe
    root: '/srv/pipelines'         # 默认:REQPIPE_ROOT 环境变量 → ./pipelines
字段默认说明
root'' → REQPIPE_ROOT → ./pipelines流水线根目录
reqpipeBin'reqpipe'reqpipe 可执行文件,可为绝对路径
reqpipeArgs[]前置参数,如 ['-m', 'reqpipe'](配合 reqpipeBin: 'python3')
env{}附加环境变量

开发

pnpm install
pnpm build        # tsdown → lib/(自包含,可作 git 安装的 prepare)
pnpm typecheck    # tsc --noEmit
pnpm test         # vitest(需先有 ../python-cli 下的 reqpipe 源码)

测试通过 python3 -m reqpipe 调用仓库内 ../python-cli 的 CLI 源码, 可用 REQPIPE_SRC 环境变量覆盖位置。