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.

Quiet Mode — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
Q

dsh-quiet-mode

Quiet Mode

Inject a fixed work discipline into the system prompt of DeepSeek Harness sessions: remain silent, focus on the task, and use Simplified Chinese.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:viyiviyi/dsh-quiet-mode#ac2a70967d23b6dc1d45775c3d9159d70c78812b
READMECompatibilityVersions

Compatibility and provenance

Quiet Mode is published as dsh-quiet-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
any
Release source
github
Registry updated
9/16/2026

Versions

0.1.0stable
9/16/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
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/17/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 productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.

README

dsh-quiet-mode

给 DeepSeek Harness(dsh)的每一轮模型请求注入一条固定的作业纪律:

请**保持静默,专注干活,不胡思乱想,不过度思考,不过度设计,不虚构历史,不清晰就询问,不猜测或假定目标,不创造名词概念,不使用缩写,坚持使用简体中文进行思考和回复**

(** 按你的要求逐字保留。)

装上以后,这句话会出现在该 profile 下每个会话、每一次模型请求的系统提示词里—— 不用每轮重新叮嘱,也不再会被后续对话挤掉。

想改注入的文本,或者想了解它内部的实现方式,见 DEVELOPMENT.md。

环境要求

  • 终端里能运行 dsh(dsh --version 有输出)
  • Node.js 22.19 以上,或 24 以上

安装

先把仓库克隆到本地(放哪个目录由你决定),再进到克隆出来的目录里安装:

git clone https://github.com/viyiviyi/dsh-quiet-mode.git
cd dsh-quiet-mode
dsh plugin --profile web add .

命令会把包写进 $DSH_HOME/profiles/web,并自动把 dsh-quiet-mode 追加进 dsh.profile.bundles (因为它的 package.json 声明了 dsh.bundle.patch)。

检查这一层有没有挂上(输出里应该出现 quiet-mode):

dsh --profile web --dump-config

生效

插件在 dsh 启动时加载,装完必须重启 dsh web。

重启后新开的会话就会带上这句话;已经开着的旧会话不会追溯生效。

配置

默认文本和开关写在 lib/index.js 里。要改就在你自己的 profile 配置层覆盖,不要改包内的 cordis.patch.yml——那份文件会随包更新被覆盖。

编辑 $DSH_HOME/profiles/web/cordis.patch.yml:

- id: quiet-mode
  config:
    enabled: true            # 设为 false 可临时关掉,不注册任何段落
    text: '自定义的纪律文本'   # 留空或不写则用默认整句

profile 这一层的优先级高于 bundle 层;按行覆盖时 config 是整体替换,不是逐字段深合并, 所以覆盖时要把想保留的字段一起写全。改完同样要重启 dsh web。

卸载

dsh plugin --profile web remove dsh-quiet-mode

许可

MIT