DeepSeek Harness plugin

dsh-desktop-win32

DSH web plugin: a Windows desktop launcher (custom .ico shortcut) that wakes the dsh web service and opens the browser.

Jump to install

Source facts

Repository
xiaohaozi12138/dsh-desktop-win32
Latest update
Aug 18, 2026
Category
Tools & Capabilities
GitHub stars
1
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/xiaohaozi12138/dsh-desktop-win32
Plugin: dsh-desktop-win32
Author: xiaohaozi12138

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

<img width="1534" height="1533" alt="大肥鱼" src="https://github.com/user-attachments/assets/443adeb8-78a8-4c9f-90fe-bdc7493bbcaa" />

dsh-desktop-launcher-win32

> DSH web 插件:Windows 桌面启动器。在桌面生成一个小鲸鱼ico 图标的 .lnk 快捷方式,双击后唤醒 dsh web 服务并自动打开浏览器。(需启动一次dsh才能出现快捷启动器)

仅支持 Windows(非 Windows 自动跳过)。

功能

  • 加载后在桌面创建 dsh-web-launcher.cmd 启动脚本 + 带图标的 .lnk 快捷方式
  • 双击快捷方式:

1. 检测 127.0.0.1:3080 是否已监听 2. 未监听则启动 dsh webnode <dsh>/lib/bin.js web) 3. 轮询等待端口就绪(最多约 2 分钟) 4. 自动打开默认浏览器访问 WebUI

  • 图标默认直接使用打包在 assets/dfy.ico,无需任何操作,也不会弹框打扰
  • 换图标方式:

- 在 profile patch 层通过 iconPath 指定任意 .ico(优先级最高) - 或设置 askIconOnStart: true,插件加载时弹出 Windows 文件选择框自选(选择会被记住,之后不再弹) - 或手动改 ~/.dsh/dsh-desktop-launcher-icon.txt(记住的选择,删除后重新弹框)

安装(作为 bundle 加载)

# 把插件目录链接进 profile(路径替换为你自己的)
dsh plugin --profile web add link:C:/dsh/dsh-desktop-win32

或手工在 profile package.jsondependencies 添加:

"dsh-desktop-launcher-win32": "link:C:/dsh/dsh-desktop-win32"

并在 dsh.profile.bundles 追加 "dsh-desktop-launcher-win32"

配置(cordis.patch.yml)

- id: dsh-desktop-launcher-win32
  config:
    launcherName: "DSH Web 启动器"   # .lnk 名称
    iconPath: "C:/path/to/my.ico"    # 自定义图标(留空 = 默认 dfy.ico,不弹框)
    askIconOnStart: false            # true = 加载时弹 Windows 选择框自选图标
    port: 3080                       # 服务端口
    url: "http://127.0.0.1:3080"     # 打开地址