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.

Win Minimal — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-win-minimal

Win Minimal

Windows minimal agent preset for DeepSeek Harness: a one-line fixed persona, gitbash + str_replace_editor + web_search, no runtime context, no compaction. Installs the preset into the user's agent-presets root.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-win-minimal@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Win Minimal is published as dsh-win-minimal and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
8/20/2026

Versions

0.1.2stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
16.6 kB
Files
9
Surface
any
License
MIT
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

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-win-minimal

让 Windows 上的 DeepSeek Harness 也有真正的极简模式。

一句话 persona · 零运行时上下文 · 三工具 · 自动压缩 · 固定最短前缀


它是什么

一个 agent preset:装上后,新建会话时多出一个「极简模式(Windows)」选项。

┌─────────────────────────────────────────────┐
│  整个 system prompt:                        │
│                                             │
│  You are a helpful software engineer        │
│  assistant.                                 │
│                                             │
│  (就这一句,没有别的)                        │
└─────────────────────────────────────────────┘

工具只有三个:

工具能力
gitbash全局注册的 Git for Windows bash(一次一命令)
str_replace_editor文件编辑
web_search联网搜索(跟随宿主已配置的搜索 provider)

为什么需要它

DSH 官方自带 minimal preset,但它依赖持久 bash 终端——其就绪检测需要 PTY 进程检查,Windows 上不可用。因此 DSH Desktop 在 Windows 上干脆把 minimal 整个隐藏了。

本 preset 是官方 minimal 的 Windows 等价物:

官方 minimaldsh-win-minimal
persona一句固定提示词 + complete✅ 相同
运行时上下文关闭✅ 相同
上下文压缩无✅ 有(自动压缩 + /compact)
文件编辑str_replace_editor✅ 相同
shell持久 bash(PTY)一次性 gitbash(Windows 无解,等价替代)

因为 prompt 前缀完全固定且最短,长会话的 KV cache 命中率最高——这是官方 minimal 的设计意图,本 preset 在 Windows 上把它还给你。

快速开始

方式一:插件安装

# CLI / web profile
dsh plugin --profile web add dsh-win-minimal

# DSH Desktop
dsh plugin --profile desktop add dsh-win-minimal

(--profile 换成你实际使用的 profile 名即可。)

安装后在哪看到它 ⚠️

不在「插件」设置里(它不是一个 UI 插件)。它在两处:

  1. 新建会话时的 preset 下拉选择器(聊天输入框上方)——每次会话选它用
  2. 设置 → Agent(智能体)→ Agent Preset 面板——预设列表里能看到并可设为默认值

自查文件是否物化成功:

ls "$DSH_HOME/.agent-presets/win-minimal/"                  # Linux / macOS
dir "%USERPROFILE%\.dsh\.agent-presets\win-minimal"          # Windows(未设 DSH_HOME 时)

文件在而两处都没有 → 完全重启 DSH 再看。仍无则提 issue,附上目录清单。

插件会把 preset 文件物化到 $DSH_HOME/.agent-presets/win-minimal/。

方式二:手动安装(不装插件也行)

preset 就是两个数据文件。把本仓库 preset/ 目录复制过去即可:

$DSH_HOME/.agent-presets/win-minimal/agent.cordis.yml
$DSH_HOME/.agent-presets/win-minimal/preset.yml

自定义

preset 是声明式组装,改完新会话立即生效:

  • 改 persona:编辑 agent.cordis.yml 里 persona 行的 text
  • 加减工具:直接增删组装行(比如去掉 tool-web 或加回 todo)
  • 删掉:删除 win-minimal/ 目录
  • WSL:配合 dsh-wsl-workspace 自动生成 wsl-win-minimal 变体

设计取舍

  • bash 非持久:Windows 跑不了官方 minimal 的持久 PTY,用一次性 gitbash 等价替代(前提:装有 dsh-tool-gitbash 等全局 gitbash 工具)
  • 幂等物化:插件只写一次,绝不覆盖你手工改过的文件
  • 零风险安装:host-only、无客户端 bundle、零硬注入——写文件失败只告警,不可能拖垮启动

License

MIT

开发

npm test          # 结构校验(preset 文件 + 安装器,零依赖)
node --check index.js