songer522/dsh-launcher0

dsh-menubar-launcher

Host plugin for DSH Launcher: publishes the running server's port, PID and tokenized URL as a runtime descriptor.

AI 分析

作为 DSH Launcher 的 Host 端插件,发布运行中服务器的端口、PID 和带 Token 的 URL。适合配合 macOS 客户端进行 DSH 快速启动与管理的用户。

パッケージ
dsh-menubar-launcher
バージョン
1.3.0
ライセンス
MIT
最終更新
2026/09/08

インストール

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

ドキュメント

README 全文を読む ↗

Configuration

On first run the app looks for a DeepSeek Harness checkout in the usual places (~/Workspace, ~/Projects, ~/Developer, ~/src, ~/code, ~). If your project lives elsewhere, or you want to launch something entirely different, open Preferences (⌘,).

Settings are stored as JSON at ~/.config/dsh-launcher/config.json:

{
  "repo": "/Users/you/Workspace/deepseek-harness",
  "command": "pnpm dsh web --no-open --port {port}",
  "port": "3080",
  "browser": "Google Chrome",
  "logFile": "/tmp/dsh-web.log"
}
FieldMeaning
repoworking directory the command runs in
commandthe launch command; {port} is substituted
portthe port to watch, and to substitute into the command
browserapp name to open, or "" for the system default
logFilewhere the server's stdout/stderr is written

Because it is just a command in a directory, it happily runs npm run dev, vite, python -m http.server, or anything else.

Why a launch flag matters

The stock command uses --no-open because DSH otherwise opens the URL in the system default browser. Suppressing that and opening the browser here is what lets you use Chrome while Safari remains your system default.