DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Cleverer Dsh — DeepSeek Harness 插件(DSH Plugin)
← Plugins
C

cleverer-dsh

Cleverer Dsh

适用于 DeepSeek Harness 的执行规范插件套件:防卡死重试拦截、强制反思、待办事项规范、记忆去重以及自我演进技能。零依赖,绝不接触 DSH 源码。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Classicoke/cleverer-dsh#40bd216ea9c7a95da887aa97fb661a0e8c7b1dd2
README兼容性版本

兼容性与来源证明

Cleverer Dsh 以 cleverer-dsh 发布,当前版本为 1.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/21

版本

1.2.0stable
2026/8/21

相关插件

正在加载相关插件…

最新版
1.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

cleverer-dsh

English | 中文

A plugin suite that makes DeepSeek Harness (DSH) actually smart — execution discipline, practical tools, and a skill library, installed in one shot.


✨ Feature Highlights

IconFeature
⚡Faster & cheaper (measured): same task vs bare DSH — 49% faster, 44% fewer estimated tokens (small sample, not yet broadly tested)
🧠Execution discipline: automatic failure interception, forced reflection, task-planning reminders, memory dedup, experience auto-distilled into skills
🛠️Ready-made tools: instant multi-directory file lookup + 9-point environment health check — stop guessing
📦One-command install/uninstall via DSH's own plugin manager
🧪478 unit tests green, statement & line coverage 100%; pure code, zero dependencies, never touches DSH itself
📚6 built-in skills: 6-step error handling, error lookup table, fast file lookup, root-cause debugging, local-first, plan-before-execute

Measured results

We ran the same real task (analyzing a software packaging log) on DSH with this suite vs a bare DSH (nothing installed):

MetricWith suiteBare DSHDiff
Total time8.6 min12.8 min49% faster
LLM calls5161-20%
Tool calls5967-14%
Estimated total tokens~41,000~73,00044% fewer
Reasoning chunks4011,163-65%

What you notice in practice: with the suite, the agent stops retrying the same broken approach (it automatically switches), distills working commands into reusable scripts, and asks you before acting at key decision points. Bare DSH retried the same problem 13 times, never distilled anything, and never consulted you.

⚠️ Disclaimer: n=1 per group; tokens are character-estimated (±20%); not broadly tested yet — the direction is evidenced, exact numbers await more samples and real API billing data.


What it fixes

DSH is full-featured but not smart by default: empty system prompt, stubborn retries on failure, skills installed but never used, todo tool ignored. This suite fixes it:

LayerWhat it does
Discipline layer (8 plugins)failure interception, forced reflection, task planning, memory dedup
Hub (discipline-hub)shared failure log + reminder throttling — plugins don't collide, issues are traceable
Tools layer (2 plugins)instant file lookup, env health check
Skill layer (6 skills)on-demand auto-loading — know what to do on errors, find things fast

Architecture

Installed via Option 1 (plugin manager) — all plugins in one inline patch

cordis.patch.yml
├─ discipline-hub          hub (failure log / reminder throttle / turn stats)
├─ anti-stuck              stuck-loop guard: no repeat same-arg retries, force new approach
├─ dsh-env-triage          problem tracing: stop & report when several schemes fail
├─ dsh-plan-discipline     task planning: remind to create a plan for multi-step tasks
├─ dsh-memory              cross-session memory: auto-dedup, anti-bloat
├─ skill-evolver           experience distillation: failure → solution → saved skill
├─ dsh-discipline          11 execution rules injected every turn
├─ dsh-skill-loader        skill usage boost: on-demand catalog + keyword summoning
├─ dsh-skill-provider      runtime skill registry: the 6 bundled skills resolve in-package
├─ dsh-cordis-discipline   dynamic-plugin guardrail: no run before define, no undefine before stop
├─ dsh-fast-locate         file lookup: parallel multi-directory scan
└─ dsh-env-check-tool      env health check: 9 checks

Installed via Option 2 (script install) — grouped into boards

cordis.patch.yml (home patch)
├─ discipline-hub              hub, loaded first (failure log / reminder throttle / turn stats)
├─ cordis:include → discipline-board.cordis.yml   (8 discipline plugins)
│  ├─ anti-stuck               stuck-loop guard
│  ├─ dsh-env-triage           problem tracing
│  ├─ dsh-plan-discipline      task planning
│  ├─ dsh-memory               memory dedup
│  ├─ skill-evolver            experience distillation
│  ├─ dsh-discipline           11 execution rules
│  ├─ dsh-skill-loader         skill usage boost
│  └─ dsh-cordis-discipline    dynamic-plugin guardrail
└─ cordis:include → tools-board.cordis.yml        (2 tool plugins)
   ├─ dsh-fast-locate          file lookup
   └─ dsh-env-check-tool       env health check

The board layout makes plugin cooperation structural: the discipline group shares the hub's unified failure log and reminder pipeline, working as one suite instead of in isolation.


Installation

Prerequisites: DSH installed and initialized; pnpm available (DSH's plugin manager).

Choose before you install — the two options differ in how plugins are organized:

Option 1: plugin manager (official)Option 2: script install
Commanddsh plugin add ...paste one PowerShell line
Plugin organizationall plugins in one inline configgrouped into discipline-board (discipline) + tools-board (tools) boards
Plugin cooperationplugins work independentlystronger — discipline plugins share one failure log & reminder pipeline, working as one suite

💡 Why boards are the better architecture: the plugins are not meant to work in isolation — one traces the root cause, one distills the lesson, one reminds you to plan. Boards make this cooperation a structural guarantee (plugins belong to the same group and share the same facilities by construction) instead of leaving it to chance. Discipline and tools are physically separated with clear boundaries, so adding your own plugin later has an obvious home; groups start/stop as a whole, which makes upgrades and troubleshooting simpler.

Option 1: via DSH's plugin manager (official)

dsh plugin --profile web add github:Classicoke/cleverer-dsh
# headless instead:  dsh plugin --profile headless add github:Classicoke/cleverer-dsh

No build step — plugins and skills are ready as soon as the command finishes. Uninstall:

dsh plugin --profile web remove cleverer-dsh

Option 2: one-command script (PowerShell 7+)

Paste this into PowerShell (auto-downloads the release zip → extracts → installs → cleans up):

$u = 'https://github.com/Classicoke/cleverer-dsh/archive/refs/tags/v1.2.zip'
$z = "$env:TEMP\cleverer-dsh.zip"; $d = "$env:TEMP\cleverer-dsh-install"
Invoke-WebRequest $u -OutFile $z
Expand-Archive $z $d -Force
pwsh -File "$d\cleverer-dsh-1.2\install.ps1"
Remove-Item $z, $d -Recurse -Force

⚠️ Pick ONE install method. Installing both applies every plugin twice (duplicated behavior, premature denials). Uninstall one before switching to the other.

Uninstall (Option 2)

# 1. Restore the config backup install auto-created (if you had no
#    cordis.patch.yml before, the backup is an empty [] patch = pre-install state)
$dshHome = Join-Path $HOME '.dsh'
if (-not (Test-Path $dshHome)) { Write-Host "Not found: $dshHome — aborting"; exit 1 }
$bak = Get-ChildItem "$dshHome\cordis.patch.yml.bak-cleverer-*" |
       Sort-Object LastWriteTime -Descending | Select-Object -First 1
if ($bak) { Copy-Item $bak.FullName "$dshHome\cordis.patch.yml" -Force }

# 2. Remove ONLY the files cleverer-dsh installed (explicit list — your own
#    plugins/skills in the same folders are left untouched)
$plugins = @('_shared','anti-stuck','discipline-hub','dsh-cordis-discipline','dsh-discipline',
             'dsh-env-check-tool','dsh-env-triage','dsh-fast-locate','dsh-memory',
             'dsh-plan-discipline','dsh-skill-loader','dsh-skill-provider','skill-evolver')
foreach ($p in $plugins) { Remove-Item "$dshHome\plugins\$p.mjs" -ErrorAction SilentlyContinue }
$skills = @('debug-by-root-cause','dsh-error-protocol','dsh-error-triage','dsh-fast-lookup','local-first','plan-before-execute')
foreach ($s in $skills) { Remove-Item "$dshHome\skills\$s.md" -ErrorAction SilentlyContinue }
Remove-Item "$dshHome\discipline-board.cordis.yml", "$dshHome\tools-board.cordis.yml" -ErrorAction SilentlyContinue
Remove-Item "$dshHome\scripts\dsh-env-check.mjs" -ErrorAction SilentlyContinue

# 3. Restart DSH

All deletions are scoped to $HOME\.dsh (your own user directory, never a system path), and only the files listed above are touched.


Plugins

PluginProblem it solvesWhen it triggers
anti-stuckstubbornly retrying the same failing command≥2 same-arg fails → deny; ≥3 turn fails → remind; ≥5 → force reflection
dsh-env-triageparam-tweaking loops, going in circles≥2 schemes fail → trace card; ≥3 → stop & report
dsh-plan-disciplinetodo tool ignoredmulti-step task without plan → remind; ≥3 fails & stale plan → refresh
dsh-memorymemory bloat, force-write abusededup before write + 60s window dedup
skill-evolverjunk skills being savedgeneralization gate before persisting
dsh-disciplineempty system promptinjects 11 execution rules every turn
dsh-skill-loaderskills installed but never usedavailable-skills reminder at task start + keyword summoning
dsh-cordis-disciplinedynamic-plugin misuseprecondition checks (no run before define, no undefine before stop)
discipline-hubplugins each doing their own thing, reminder spamunified failure log + reminder throttle
dsh-fast-locateslow file lookupone call, parallel multi-directory scan
dsh-env-check-toolguessing at environment issuesone-shot 9-point env health check

Built-in skills

SkillPurpose
dsh-error-protocol6-step error handling (classify → diagnose → decide → verify → distill)
dsh-error-triageerror lookup table: which error maps to which command
dsh-fast-lookupfast file lookup methodology
debug-by-root-causefind the root cause first, don't blindly retry
local-firstverify locally before guessing online
plan-before-executeplan before acting, keep the plan updated

Known limitations

  • Verified on Windows + PowerShell only; Linux/macOS untested (plugins are cross-platform, install scripts are PowerShell)
  • Never modifies DSH source code; only config injection and skill injection
  • Headless mode: some features limited (no web server → some web-dependent features skipped)

License

MIT © 2026 cleverer-dsh contributors