Adds a Desktop card to the settings page that detects the DeepSeek Harness Desktop app and launches it with one click.
Install
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:Ch0uHuaZ1/DeepSeek-Harness-Desktop#path:/packages/desktop-launcher-plugin
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
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
| Route | Method | Description |
|---|---|---|
/api/desktop-launcher/status |
GET | { running, pid, port, serviceUp, exePath } |
/api/desktop-launcher/launch |
POST | Launch the desktop app (or open the browser) |
License
MIT
Links
More in this category
bowenliang123/dsh-context★ 249
DSH context insight panel: Context dashboard + /context command + Context browser — one-stop context lifecycle management with categorized composition, content details, evolution trends, compaction/injection events, and stats.
zh667/TokenLedger★ 95
Sidebar usage panel that attributes tokens to the relay site that served each request, read from your existing provider config: today/month/all-time totals, per-site and per-model breakdowns, a year activity heatmap, and New API / Sub2API / DeepSeek balances.
Han-1413141/dsh-cost-meter★ 90
Per-session and daily API cost, budget with usage %, official balance, history dashboard, and one-click official price sync with peak/off-peak pricing.
Ychris12138/dsh-usage-stats★ 68
Multi-provider usage dashboard with provider/model token breakdowns, calendar drill-downs, account balances, and OpenCode Go / Z.ai subscription quota tracking.
feibi-mochi/deepseek-harness-control-center★ 31
DeepSeek Harness control center for official balance monitoring, per-session costs and tokens, third-party token totals, completion alerts, official recharge, flexible layouts, and agent-assisted session controls.
zhu168/dsh-save-money#plugin★ 31
Pause and resume tasks automatically during user-defined time windows to avoid peak-hour API costs; includes account balance display and 10-minute granularity spend bar chart.