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.

Reasoning Mode — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
R

@zhourenke/dsh-reasoning-mode

Reasoning Mode

Configure Responses reasoning mode and summary per provider/model in DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zhourenke/dsh-reasoning-mode#ec3a306ff424fc58def1d97dac73d6cecae7e7c7
READMECompatibilityVersions

Compatibility and provenance

Reasoning Mode is published as @zhourenke/dsh-reasoning-mode and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/14/2026

Versions

0.1.0stable
9/14/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/15/2026
View source ↗
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 models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.Ui Usage Billing@kenz1117/dsh-ui-usage-billingUsage billing dashboard for DeepSeek Harness: sidebar cost metrics plus a full dashboard modal, priced from a current multi-provider catalog with real usage aggregated from session logs.

README

English | 中文

@zhourenke/dsh-reasoning-mode

给选定的 provider/model 指定 Responses 请求的推理模式与摘要等级。

DSH 自带 adapter 提供的 reasoningEffort(每个模型的推理档位),但 Responses 请求体里的 reasoning.mode(Standard / Pro)与 reasoning.summary(Auto / Concise / Detailed)没有逐路由入口;本插件补上这一层:只改写你勾选的路由,其它请求原样通过。

它解决什么问题

  • 逐路由控制推理强度:同一个 model 在不同 provider 下互不影响。
  • 摘要等级可调:Auto 交给模型自己判断,Concise / Detailed 强制要短或要长。
  • 随时可卸:作为 profile 层插入,不修改 DSH 本体;清空勾选即完全关闭。

前置条件

走 OpenAI Responses 协议的 GPT 模型。走 Chat Completions 的模型或其它不支持该配置项的模型不会生效。

安装

dsh plugin --profile web add "github:zhourenke/dsh-reasoning-mode"

安装后需要重启 DSH 并刷新页面,在 设置 → 插件 → 推理模式 可以看到本插件的设置卡片。

卸载:

dsh plugin --profile web remove @zhourenke/dsh-reasoning-mode

快速上手

  1. 打开 设置 → 插件 → 推理模式,在模型目录里勾选要让插件改写的 provider/model,点保存。
  2. 打开一个会话,在模型选择器中把模型切到刚才勾选的路由。
  3. 在右侧出现的标签中选择想要的 推理模式 与 摘要等级。

新勾选的路由默认 Standard + Auto;取消勾选再重新勾选会保留原来的值。

也可以直接编辑 ~/.dsh/settings.yaml:

# ~/.dsh/settings.yaml
reasoning-mode:
  models:
    - provider: <provider-id>
      model: <model-id>
      mode: pro
      summary: detailed

id 写错的条目不会报错,只是不生效(在设置卡片里勾选就不会写错)。

配置保存即生效。

配置

~/.dsh/settings.yaml 里本插件只占一个顶层键 reasoning-mode:

字段类型默认说明
modelsarray[]要改写的路由列表,每项为 { provider, model, mode, summary }。空列表是唯一的关闭状态。
models[].providerstring无provider id,必须与目录里的 id 逐字一致。
models[].modelstring无model id,同样逐字一致。
models[].modestandard | prostandard下发到 reasoning.mode。
models[].summaryauto | concise | detailedauto下发到 reasoning.summary。
  • provider 与 model 必须同时匹配;同一个 model 挂在另一个 provider 下不会命中那条路由。
  • 缺失或写错的 mode / summary 会在读取时归一化回 standard / auto,不会导致加载失败;完全相同的 provider+model 重复条目会被去重。
  • 目录里当前不存在的已保存路由会保留在「已保存但当前不可用」分组里,手动取消勾选并保存后会消失。

兼容性

在 DSH v0.1.5-rc.1(2026-09)下测试通过。

许可证

MIT