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.

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

dsh-zh-reasoning

Zh Reasoning

DeepSeek Harness 插件:让模型的思考(reasoning)与最终回答默认使用简体中文。A Chinese-first plugin that makes DeepSeek Harness reason and answer in Simplified Chinese by default.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-zh-reasoning@1.1.0
READMECompatibilityVersions

Compatibility and provenance

Zh Reasoning is published as dsh-zh-reasoning and currently resolves to version 1.1.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/8/2026

Versions

1.1.0stable
9/8/2026
1.0.0stable
9/4/2026
0.1.1stable
8/21/2026
Show 1 more versionCollapse versions
0.1.0stable
8/21/2026
Latest
1.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
20.2 kB
Files
5
Surface
any
License
Apache-2.0
Source
npm
GitHub
★ 0
Weekly downloads
0
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

README

dsh-zh-reasoning

让 DeepSeek Harness 的思考(reasoning)与最终回答默认使用简体中文的中文插件。

基于 imlishiyuan/deepseek-harness-zh-cn(Apache-2.0)修改: 补上标准插件结构(cordis.patch.yml bundle 补丁层 + dsh.bundle.patch 清单字段 + files 打包), 并改名为 dsh-zh-reasoning,使插件可用标准方式挂载、发布与更新。

功能特性

  • 在模型每个会话的第一步(agent/pre-step)注入 <system-reminder> 指令,要求:
    • 思考(reasoning)与最终回答使用简体中文;
    • 计划、工具调用、总结、代码注释同样使用中文;
    • 仅代码、命令、文件路径、变量名、API 名称等保留英文;
    • 除非用户明确要求其他语言,否则规则优先。
  • 同时影响模型的最终回答与思维链(reasoning)。
  • 标准插件结构,支持 dsh plugin 挂载、npm 发布与更新。
  • 兼容梁神模式(dsh-liangshen agent preset):梁神模式 phase 1 会按白名单剥离 agent/pre-step 注入消息,插件检测到梁神模式会话后自动改为把中文指令追加进 persona section——phase 1 的 prompt 过滤器只保留 persona,因此指令在锚定期与晋升后都生效,且不会重复注入。

说明:harness 与 DeepSeek API 没有强制推理语言的开关;全中文提示词能最大化概率,但不保证 100%。

兼容性

本插件版本依赖的 DSH 运行时@deepseek-ai/dsh-llm
1.0.00.0.1-rc.x(旧版)0.0.1-rc.1
1.1.00.1.2-rc.x(新版)^0.1.2-rc.1

1.1.0 起适配新版 DSH:agent/pre-step 处理器改为展开 decision 再追加消息, 保留 startsRequestSeries 等下游字段,避免与 goal-round-driver / cordis 工具等插件冲突。

安装 / 挂载

方式一:npm 安装(推荐)

dsh plugin --profile <name> add dsh-zh-reasoning

方式二:从 GitHub 直接安装

dsh plugin --profile <name> add "dsh-zh-reasoning@git+https://github.com/zhy201810576/dsh-zh-reasoning.git"

方式三:本地开发(file: 依赖) 在 profile 的 package.json 中添加依赖并加入 bundles:

{
  "dependencies": { "dsh-zh-reasoning": "file:../dsh-zh-reasoning" },
  "dsh": { "profile": { "bundles": [ "...", "dsh-zh-reasoning" ] } }
}

然后在该 profile 目录执行 pnpm install 并重启 dsh web。

方式四:直接本地挂载(无需安装) 在 ~/.dsh/profiles/<name>/cordis.patch.yml 中:

- insert:
    - id: dsh-zh
      name: 'file:///绝对路径/dsh-zh-reasoning/lib/index.js'

验证

dsh --profile <name> --dump-config | findstr dsh-zh

看到 dsh-zh 行即表示已挂载。之后新建会话,模型应以简体中文思考与回答。

目录结构

dsh-zh-reasoning/
├── lib/
│   └── index.js        # 插件入口:pre-step 注入中文 system-reminder(梁神模式下改追加 persona)
├── cordis.patch.yml    # bundle 补丁层:声明插件挂载行
├── package.json        # npm 包清单(含 dsh.bundle.patch 字段)
├── pnpm-lock.yaml      # 依赖锁定文件
├── LICENSE             # Apache-2.0 许可证
└── README.md

开发

pnpm install        # 安装 @deepseek-ai/dsh-llm(仓库自包含)
node -e "import('file:///绝对路径/dsh-zh-reasoning/lib/index.js').then(m=>console.log(m.name))"

协议

Apache-2.0,保留原作者版权声明。