dsh-deep-research:DeepSeek Harness 的自适应深度研究编排插件

omdsh-dev/dsh-deep-research

工作流与自动化已验证
收录时间 2026-08-20
页面最后更新 2026-08-20

DSH plugin 自适应深度研究编排器,基于官方 workflow 引擎实现闭环研究流程。

让 DeepSeek Harness 具备自适应研究闭环,自动规划、并行研究、验证边际增益并生成带引用的报告。

install
dsh plugin --profile web add github:omdsh-dev/dsh-deep-research
分类
工作流与自动化
平台
DSH-Plugin
作者
omdsh-dev
分发方式
插件

dsh-deep-research 核心特性

自适应闭环研究多代理并行研究边际增益停止机制对抗性审查可选

dsh-deep-research 仓库信息

omdsh-dev
发布者
omdsh-dev
仓库
omdsh-dev/dsh-deep-research
17
Star
3
Fork
0
Watch
6
开放 Issue
语言TypeScript
许可证MIT License
官网
仓库最近更新2026-08-12 15:12:36
仓库创建时间2026-08-06 13:23:41
主题
dsh-plugin
默认分支main

dsh-deep-research 仓库简介

dsh-deep-research 是 DeepSeek Harness(DSH)的深度研究编排插件(DSH plugin),基于官方 workflow 引擎(ctx.workflows / @deepseek-ai/dsh-workflow-workerthread)实现,采用控制论与信息论设计,不是固定提示词流水线,而是自适应的研究闭环。它解决的是传统研究工具盲目搜索、无法收敛、掩盖不确定性的问题,核心能力包括:规划代理定义答案空间与验收标准、研究子代理维护三态证据(confirmed/uncertain/gaps)、边际增益验证(连续一轮零增益即停)、闭环再规划(自动派发补充研究)、对抗性审查(引用抽查与覆盖度审计)。

dsh-deep-research 这个 DSH plugin 支持哪些核心特性?

  • 自适应研究闭环:第 1 轮并行研究全部子问题,每轮结束收集 high-priority 缺口自动派发下一轮,简单主题一轮收敛,复杂主题自动扩展直到边际增益≈0。
  • 信息论驱动:研究子代理预测→行动(web_search/web_fetch)→更新证据→边际增益验证,连续一轮零增益即停,并有轮次硬上限。
  • 覆盖度自检:规划代理枚举信息维度,每个子问题映射一个维度,输出 coverage_gaps,盲区会被定向侦察验证。
  • 对抗性审查(可选):引用抽查(URL 可达性/支撑性)、覆盖度审计、矛盾与过度自信标注,对抗幻觉。
  • 模型分层:可配置 plannerModel/researcherModel/synthesizerModel/reviewerModel,规划/综合用强模型、研究用便宜模型,显著降本。

dsh-deep-research 怎么安装?

安装命令如下(把 <profile> 换成 tui / headless / web 或自建 profile):

bash
dsh plugin --profile <profile> add git+https://github.com/dsh-external/dsh-deep-research.git
dsh --profile <profile>

若 pnpm 把 https URL 重写成 git+ssh(本机全局 git insteadof 配置所致),用上面的 git+https 形式;dsh plugin 会提示需要 allowBuilds 时按提示在 $DSH_HOME/profiles/<name>/pnpm-workspace.yaml 加一行即可。

dsh-deep-research 怎么使用?

工具由模型按工具描述自动触发(深度研究/调研/多源信息综合分析/研究报告/文献搜集),对话中直接说人话即可,例如:

  • 「深度调研一下 MCP 生态现状,重点对比几家主流实现,出一份带引用的报告」
  • 「按这份问题清单做研究:1. ... 2. ...」(已有清单 → 跳过自动拆解,直接并行研究)
  • 「调研一下 A/B 方案,purpose 是决定我们选哪个」(用途越明确,答案空间越准)

复杂主题会自动扩展轮次(自适应闭环),简单主题一轮收敛;想要更严谨传 depth: 3,要引用纠错和覆盖度审计传 review: true

dsh-deep-research 依赖哪些 DeepSeek Harness 组件?

profile 的组合必须包含官方 workflow 引擎与内置 web 工具——dsh 官方 base 组合自带,无需额外安装;peer 依赖(@deepseek-ai/dsh-tools 等)由组合提供,profile 的 autoInstallPeers: false 可避免向 registry 查找未发布的 @deepseek-ai/*。

dsh-deep-research 如何更新与卸载?

bash
dsh plugin --profile <profile> update
dsh plugin --profile <profile> remove @dsh-external/dsh-deep-research
# 或:从 profile 的 package.json 移除依赖后 dsh plugin --profile <profile> update

该插件由 omdsh-dev 维护,采用 MIT 协议,最近更新于 2026-08,源码即运行时(包入口直接指向 src/index.ts,无构建步骤),要求 erasable-only TS 语法。

查看更多 DSH 插件,访问 dsh-plugin.org

DSH-Plugin 常见问题