DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Plan Toggle — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
P

@dsh-external/dsh-plan-toggle

Plan Toggle

DSH Web 客户端插件:在 composer 工具栏中提供持久的计划模式切换按钮——将随附的仅在激活时显示的“Plan x”徽章替换为双状态切换按钮(关闭时为 Plan,开启时为 Plan x),使用相同的 conversation.input.plan 位置、/plan 和 /plan off 命令通道以及计划投影

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Nanmu-del/dsh-plan-toggle#ae7bf351a310c731c4d3e714823850f1eecb0016
README兼容性版本

兼容性与来源证明

Plan Toggle 以 @dsh-external/dsh-plan-toggle 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

1.0.0stable
2026/9/8

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Pet@linxin666/dsh-pet适用于 dsh Web GUI 的多宠物伴侣插件:由注册表驱动的浮动宠物,可响应模型活动,支持为每只宠物命名、抚摸/喂食互动以及亲密度评分

README

dsh-plan-toggle

A DeepSeek Harness (DSH) web client plugin: a persistent plan-mode toggle button in the composer tool row.

The shipped Plan × badge only shows while plan mode is already active. This plugin replaces it with a two-state toggle that is always visible, so you can turn plan mode on or off in one click without typing commands.

English · 中文


English

What it does

  • Replaces the show-only-when-active Plan × badge with a persistent two-state chip:
    • Plan (off state) → click to turn plan mode on
    • Plan × (on state) → click to turn plan mode off
  • Drives the same /plan and /plan off command channel and the official plan projection, so it stays in sync with plan mode everywhere.
  • Keeps its own locale namespace (plan-toggle), avoiding a dictionary collision with the official plan namespace.

Install

Add the package as a dependency and to the bundle list of your profile's package.json:

// package.json (profile)
{
  "dependencies": {
    "@dsh-external/dsh-plan-toggle": "github:Nanmu-del/dsh-plan-toggle#<commit>"
  },
  "dsh": {
    "profile": {
      "bundles": [
        // ...other bundles
        "@dsh-external/dsh-plan-toggle"
      ]
    }
  }
}

Then:

pnpm install
# restart dsh web

Structure

PathRole
lib/index.jsHost half (no host-side behavior; the toggle is a pure client surface)
lib/client.jsClient bundle: the toggle button + locale dictionaries
cordis.patch.ymlBundle patch that inserts the host entry

Usage

Click the toggle chip in the composer tool row, or use the equivalent commands:

  • /plan — turn plan mode on
  • /plan off — turn plan mode off

License

MIT


中文

功能

  • 用一颗常驻的两态按钮替代官方「仅开启时才显示的 Plan × 徽章」:
    • Plan(关闭态)→ 点击开启 plan mode
    • Plan ×(开启态)→ 点击关闭 plan mode
  • 复用官方 /plan、/plan off 命令通道和 plan 投影,与 plan mode 全局保持一致。
  • 使用独立 locale 命名空间(plan-toggle),避免与官方 plan 命名空间词典冲突。

安装

在 profile 的 package.json 里加入依赖和 bundle:

// package.json (profile)
{
  "dependencies": {
    "@dsh-external/dsh-plan-toggle": "github:Nanmu-del/dsh-plan-toggle#<commit>"
  },
  "dsh": {
    "profile": {
      "bundles": [
        // ...其它 bundle
        "@dsh-external/dsh-plan-toggle"
      ]
    }
  }
}

然后:

pnpm install
# 重启 dsh web

结构

路径职责
lib/index.js宿主半区(无宿主侧行为;按钮是纯客户端表面)
lib/client.js客户端 bundle:切换按钮 + 词典
cordis.patch.yml插入宿主条目的 bundle patch

使用

点击 composer 工具行的切换按钮,或使用等效命令:

  • /plan — 开启 plan mode
  • /plan off — 关闭 plan mode

License

MIT