DeepSeek Harness plugin

dsh-think-in-chinese

让 DeepSeek Harness 的 Agent 用简体中文思考和回复(全局插件,对所有 preset 生效)

Jump to install

Source facts

Repository
Mr-cjf/dsh-think-in-chinese
Latest update
Aug 15, 2026
Category
Workflow & Automation
GitHub stars
0
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/Mr-cjf/dsh-think-in-chinese
Plugin: dsh-think-in-chinese
Author: Mr-cjf

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-think-in-chinese

DeepSeek Harness 的 Agent 用简体中文思考和回复——一个全局插件,对所有 agent preset 生效。

Make your DeepSeek Harness agent think (reasoning) and reply in Simplified Chinese — a global plugin that applies to every preset.

效果

默认情况下,DSH 模型用中文提问时回答是中文,但内部思考(reasoning/thinking)仍是英文。这个插件往全局 systemPrompt 注入一条指令,让模型的推理和回答都用简体中文。因为是全局插件,切换任何 preset 都不会失效

安装

方式一:dsh plugin add(推荐,若已发布到 registry)

dsh plugin --profile web add dsh-think-in-chinese

方式二:手动安装

1. 把本仓库文件放到全局插件目录:

mkdir -p "$HOME/.dsh/profiles/node_modules/dsh-think-in-chinese"
cp -r lib package.json cordis.patch.yml "$HOME/.dsh/profiles/node_modules/dsh-think-in-chinese/"

2. 在 $HOME/.dsh/profiles/web/cordis.patch.yml 里追加:

- insert:
    - id: think-in-chinese
      name: dsh-think-in-chinese

3. 重启 DSH。

原理

插件在 Host 半通过 systemPrompt.section() 注册一个全局 prompt 段(order -50,位于 persona 之前),因此对所有 preset 生效,不依赖任何翻译服务或 API。

文件结构

  • lib/index.js — Host 半:注册全局「用中文思考」prompt 段
  • cordis.patch.yml — bundle patch:插入插件行
  • package.json — 包元数据(含 dsh.bundle.patch 指向 patch)

License

MIT