DeepSeek Harness 插件

desktop-launcher-plugin

在设置页加入「桌面端」卡片,检测 DeepSeek Harness 桌面应用并一键唤起。

跳到安装方式

来源信息

GitHub 仓库
Ch0uHuaZ1/DeepSeek-Harness-Desktop
最近更新
2026年8月17日
分类
用量与账单
GitHub stars
3

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/Ch0uHuaZ1/DeepSeek-Harness-Desktop~23desktop-launcher-plugin
GitHub:https://github.com/Ch0uHuaZ1/DeepSeek-Harness-Desktop/tree/main/packages/desktop-launcher-plugin
插件名:DeepSeek-Harness-Desktop#desktop-launcher-plugin
作者:Ch0uHuaZ1
安装命令:dsh plugin --profile web add github:Ch0uHuaZ1/DeepSeek-Harness-Desktop#path:/packages/desktop-launcher-plugin

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-desktop-launcher

Detect and launch the DeepSeek Harness Desktop app from the DSH Web UI.

A cordis plugin for DeepSeek Harness that adds a "Desktop" card to the settings page. It shows whether the desktop app is running and offers a one-click launch button.

Features

  • Status detection — probes the web service port and the desktop app process on Windows.
  • One-click launch — starts the desktop app exe when found, otherwise falls back to opening

the Web UI in the default browser.

  • Bilingual UI — follows the DSH locale (中文 / English).

Verify

Once installed and restarted, check the HTTP API directly:

curl http://127.0.0.1:3080/api/desktop-launcher/status
# {"running":false,"pid":null,"port":3080,"serviceUp":true,"exePath":"...exe"}

curl -X POST http://127.0.0.1:3080/api/desktop-launcher/launch -H 'Content-Type: application/json' -d '{}'
# {"launched":true,"exePath":"...exe","method":"exe"}

Or open Settings → Desktop in the Web UI and click Launch Desktop.

A smoke test is included:

node packages/desktop-launcher-plugin/test/smoke.mjs 3080
# SMOKE TEST PASSED

Install

dsh plugin --profile web add dsh-desktop-launcher

Or clone this repository into ~/.dsh/profiles/web/node_modules/dsh-desktop-launcher and register it in ~/.dsh/profiles/web/cordis.patch.yml:

- insert:
    - id: desktop-launcher
      name: dsh-desktop-launcher

Then restart dsh web.

HTTP API

RouteMethodDescription
/api/desktop-launcher/statusGET{ running, pid, port, serviceUp, exePath }
/api/desktop-launcher/launchPOSTLaunch the desktop app (or open the browser)

License

MIT