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 快速启动与管理的用户。
설치
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:songer522/dsh-launcherConfiguration
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"
}
| Field | Meaning |
|---|---|
repo | working directory the command runs in |
command | the launch command; {port} is substituted |
port | the port to watch, and to substitute into the command |
browser | app name to open, or "" for the system default |
logFile | where 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.