Skip to content
dsh.fish
Bundle

dsh-think-in-chinese

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

Source
Mr-cjf
License
MIT
Updated
Updated 22 days ago

Readme

# dsh-think-in-chinese

让 [DeepSeek Harness](https://github.com/deepseek-ai/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)

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

### 方式二:手动安装

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

```bash
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` 里追加:

```yaml
- 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

Install

dsh plugin --profile web add github:Mr-cjf/dsh-think-in-chinese

Profile: web

  • This source has no pinned commit, so a later push upstream changes what installs. Prefer pinning a commit.
Source