Mr-cjf/dsh-think-in-chinese0

dsh-think-in-chinese

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

AI 분석

核心用途是解决模型在中文提问时内部思考仍使用英文的问题。适合希望完全在中文语境下观察模型推理过程、提升中文交互一致性的中国用户。

패키지
dsh-think-in-chinese
버전
1.0.0
라이선스
MIT
최근 업데이트
2026. 8. 15.

설치

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Mr-cjf/dsh-think-in-chinese

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/"
  1. $HOME/.dsh/profiles/web/cordis.patch.yml 里追加:
- insert:
    - id: think-in-chinese
      name: dsh-think-in-chinese
  1. 重启 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