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.

Power Launch — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-power-launch

Power Launch

Safe start/stop companion for dsh web: a bottom-right power dock in the Web UI that shuts the host down cleanly (response flush, port release, exit code 0) and reports the running dsh version.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:pwping/dsh-power-launch#73d0f0fd444dc03b3a6f2e756c8a103b9a1d45ae
READMECompatibilityVersions

Compatibility and provenance

Power Launch is published as dsh-power-launch 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
web
Release source
github
Registry updated
8/29/2026

Versions

0.1.0stable
8/29/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
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/29/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 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-power-launch(WEB UI 桌面启动器)

DeepSeek Harness(dsh web)的安全启动 + 一键关机伴侣插件(Windows)。

通过点击桌面快捷方式直接启动deepseek harness,不再需要每次手动打开终端输入命令启动 在WEB UI右下角显示退出按钮,防止关闭标签页导致端口冲突

安装后它做三件事:

  1. 桌面快捷方式(自动创建) —— 每次 dsh 启动时幂等地在桌面确保一个带官方鲸鱼图标的 DeepSeek Harness Web 快捷方式存在,指向随插件分发的启动器。

  2. Web UI 右下角电源按钮 —— 二次确认后让 dsh 宿主进程以退出码 0 干净退出(端口立即释放,下次启动不冲突),并自动关闭该浏览器标签页。

  3. 联网启动器 —— 点快捷方式即:关闭遗留端口 → 经国内镜像(npmmirror)检查 @deepseek-ai/dsh 新版本并按需更新 → 显示将要启动的版本 → 以隐藏后台进程启动 dsh web(无可见终端,不会被误关)→ 就绪后自动打开浏览器。

安装

# 从 npm(发布后)
dsh plugin --profile web add dsh-power-launch

# 从本地目录(开发调试)
git clone https://github.com/pwping/dsh-power-launch.git
dsh plugin --profile web add link:$(pwd)/dsh-power-launch

重启 dsh web 生效。之后日常使用只需双击桌面图标。

行为细节

  • 关机按钮:点击 → 弹出"确认退出?"→ 确认后 POST /dsh-power-launch/api/shutdown(要求自定义头 x-dsh-power-launch: confirm,防跨站触发)→ 宿主回 200 后 process.exit(0)。退出码 0 会被 dsh-doctor 监督器归类为"用户停止",不会触发自动重启。
  • 标签页关闭:脚本调用 window.close();浏览器只允许关闭"脚本自己打开"的标签页,若被拒绝则页面静默变为一块深色空白(不弹任何提示)。
  • 桌面快捷方式:目标为包内 launcher/dsh-launch.bat,图标为包内 assets/dsh-whale.ico。每次启动重写(自愈):删了会补回、被改会纠正;改名或移动则视为你的选择,不再干预。
  • 启动器窗口:检查/更新阶段全程可见(能看到版本与进度),Web UI 就绪后 5 秒倒计时自动关闭。启动失败时窗口保留并打印日志尾部(日志在 launcher/dsh-web.log)。
  • 联网失败:镜像查询超时/失败不阻塞,降级用本地已安装版本启动。

配置

项默认修改方式
端口3080快捷方式目标后加 -Port 3081,或命令行 dsh-launch.bat -Port 3081
npm 镜像https://registry.npmmirror.com编辑 launcher/dsh-launch.ps1 顶部参数
禁用自动建快捷方式启用环境变量 DSH_POWER_LAUNCH_SHORTCUT=0

卸载

dsh plugin --profile web remove dsh-power-launch

重启 dsh web 后手动删除桌面 DeepSeek Harness Web 快捷方式。

开发

npm install
npm run build      # tsc 类型声明 + tsdown 打包 lib/
npm run typecheck

结构:src/index.ts 宿主半区(cordis 插件:路由 + 快捷方式 ensure),src/client/* 浏览器半区(经官方 shell.overlay 槽注册,React 由宿主提供),launcher/ 与 assets/ 随包分发。

平台说明

启动器与快捷方式逻辑为 Windows 专用(PowerShell 5.1 + WScript);.bat 文件必须保持 CRLF 行尾 + 纯 ASCII,dsh-launch.ps1 必须保持 UTF-8 BOM,否则 cmd/PowerShell 解析会损坏。关机按钮的宿主/客户端半区本身跨平台可用。

License

MIT © pwping

See the LICENSE file for details.