ingleav626-art/dsh-native-launcher0

dsh-native-launcher

dsh plugin (Windows): desktop shortcut that launches dsh web silently (hidden console) and auto-opens the browser; port-aware reconnect; settings UI section.

AI 分析

核心用途是提供 Windows 平台下的无缝启动体验。适合希望 DSH 后端在后台静默运行、通过托盘图标管理的 Windows 用户。

パッケージ
dsh-native-launcher
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/15

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ingleav626-art/dsh-native-launcher

ドキュメント

README 全文を読む ↗

配置

cordis.patch.yml(或 profile 的 patch 层覆盖):

- id: native-launcher
  config:
    # 快捷方式双击后执行的启动命令(cmd 中运行,依赖 PATH 里的 dsh)
    launchCommand: dsh --profile web
    # 是否自动打开浏览器(仅快捷方式启动且带 DSH_LAUNCHER=1 时)
    autoOpen: true
    # 快捷方式名称(不含扩展名)
    shortcutName: DSH WebUI
    # 快捷方式已存在时是否强制覆盖
    force: false
    # 端口探测端口(需与 webserver 端口一致)
    port: 3080
    # 是否启用系统托盘
    tray: true
    # 打开方式:app(--app 独立窗口,默认)| new-window(独立窗口)| default(浏览器默认行为)
    openMode: app