DeepSeek Harness plugin

dsh-thinking-summary

DSH web plugin: 中文思考摘要 — 在原生 Deep diving 状态右侧显示当前计划,并在每段思考下方插入中文摘要卡片(由 deepseek-v4-flash 生成)。

Jump to install

Source facts

Repository
Rosmarinus-Young/dsh-thinking-summary
Latest update
Aug 16, 2026
Category
Workflow & Automation
GitHub stars
1
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/Rosmarinus-Young/dsh-thinking-summary
Plugin: dsh-thinking-summary
Author: Rosmarinus-Young

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-thinking-summary

DSH Web 插件:中文思考摘要。让看不懂英文思考过程的用户也能跟上模型的工作节奏:

  • 在原生 "Deep diving" 状态文字右侧实时显示"下一步计划"(思考刚结束即出现,命令执行前可见);
  • 在消息流中每段思考的正下方插入摘要卡片(计划 + 详细摘要,卡片直接显示内容、无标题行);
  • 摘要由 deepseek-v4-flash 生成(调用禁用思考、失败自动重试,成本最低且不污染主上下文);
  • 只处理插件激活后新产生的消息,历史消息不受影响。

安装

前提:已安装 DSH(@deepseek-ai/dsh),且 pnpmgit 在 PATH 中。

dsh plugin --profile web add github:Rosmarinus-Young/dsh-thinking-summary

安装后重启 dsh web(插件集合变更在重启后生效)。

> 该命令会转发给 pnpm 把插件装进 profile 目录,然后自动把它加入 > dsh.profile.bundles 插件层(因为本包声明了 dsh.bundle),无需手工配置。 > 如需固定版本,可用 github:Rosmarinus-Young/dsh-thinking-summary#semver:^1.0.0

更新

dsh plugin --profile web update dsh-thinking-summary

然后重启 dsh web

卸载

dsh plugin --profile web remove dsh-thinking-summary

然后重启 dsh web

设置

Web 界面 → 设置 → 思考摘要 标签页:

设置默认说明
在 Deep diving 右侧显示计划关闭后原生状态文字保持原样
显示思考摘要卡片关闭后不再在消息流插入卡片
计划长度上限36 字12–48,超出按标点边界截断

设置写入后立即生效,无需重启。

数据流

session/event 日志(assistant/chunk 提前还原思考文本)
  → 推理块结束即触发
  → deepseek-v4-flash(reasoningEffort: off)
  → 计划(后缀显示)+ 摘要(流内卡片)

客户端通过 /thinking-summary/api/*(同源路由)轮询 Host 状态。

开发

git clone git@github.com:Rosmarinus-Young/dsh-thinking-summary.git
cd dsh-thinking-summary
# 本地联调:在 profile 中以文件方式安装(pnpm 会复制文件,改完需重跑或同步)
dsh plugin --profile web add file:.

发布新版本:提交改动 → 打标签(如 v1.1.0)→ git push && git push --tags,用户执行 update 即可升级。