DeepSeek Harness Plugin

mrRisega/dsh-remote#dsh-remote-web

Stars ★ 53 Downloads (30d) 464 Category Remote & Mobile Added 2026-09-09 npm dsh-remote-web

Remote control for dsh web from a phone browser, from anywhere (no public IP needed): hosted cloud relay works over 4G, or self-host the router; one command installs the desktop bridge and this in-harness Settings panel (cloud/self-hosted tabs, account login, bridge start/stop, feedback); the tunnel data plane is end-to-end encrypted (E2EE phone↔desktop, with a QR / one-time-link desktop grant so you never re-type the password), with HTTP/WebSocket pass-through, access-key auth, a live device list and optional traffic quotas.

Install

# from npm (prebuilt)

dsh plugin --profile web add dsh-remote-web

# from a prebuilt release tarball

dsh plugin --profile web add "https://github.com/mrRisega/dsh-remote/releases/latest/download/dsh-remote-web.tgz"

# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)

dsh plugin --profile web add github:mrRisega/dsh-remote#path:/packages/dsh-remote-web

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 — pnpm blocks those until you allow them, so an install can stop with ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED or ERR_PNPM_IGNORED_BUILDS; dsh prints the exact key to add under allowBuilds in your profile’s pnpm-workspace.yaml, and the install works on the next run. Allowing a build is a trust decision: only install sources you trust, and pin a commit (github:owner/repo#sha).

README

This plugin publishes its README in Chinese only.

曾用名 dsh-remote-ui(≤0.4.9);2026-09 更名 dsh-remote-web —— 本插件是 dsh-remote 全家桶的 dsh web 插件半(远程控制宿主插件,不是纯 UI/皮肤插件), 名称与功能定位一致。旧名安装可由新版 dsh-setup.mjs 自动迁移/清理。

给 DeepSeek Harness(dsh web)一个「随时随地」的公网入口。 安装后在 dsh web 的设置页登录账号,即得到一个专属的加密远程地址:人在办公室外、 用手机流量或任意网络打开它,都能像坐在电脑前一样操作 dsh——继续对话、看工具执行、 审批授权、改设置。不要求手机和电脑在同一 WiFi/局域网,也不需要公网 IP、 路由器映射或自己搭服务器,开箱即用、全程加密。 懂技术的用户也可以把服务部署到自己的服务器上,数据与流量完全自控(普通用户无需关心)。

以下为面向开发者/维护者的实现说明:

Embeds the dsh-remote configuration UI into dsh web itself (the "everything is a plugin" model):

  • Entry point: the Settings page, via the official settings.section extension point (order: 30, below "Agent presets").
  • Inline configuration panel:
    • Connection-mode tabs: Cloud service (SaaS) / Self-hosted
    • Remote-control URL (from the relay public-config app_url, copyable)
    • Account: phone + password login/save, registration (with SVG captcha); signed-in state shows plan / upgrade / invite / feedback / sign out
    • Bridge service: launchd status (pid), start/stop switch; shows device id and autostart state — never exposes config paths or passwords
    • About dsh-remote card (for newcomers: SaaS convenience, bandwidth costs, self-hosting option)
    • User feedback card (submodule of the commercial edition): submit feedback (category + captcha anti-abuse) and track "my feedback" threads with admin replies; satisfaction popup ~10 minutes after first use
  • First-run hint: a red dot on the "Remote Control" entry (localStorage dsh-remote-seen-dot).
  • Config file: ~/.dsh-remote/.dsh-config.json by default (0600), overridable via the entry config relayDir or DSH_RELAY_DIR.

Architecture (dual-half plugin)

Half File Responsibility
Node half (host plugin) lib/index.js Injects webServer; same-origin /dsh-remote/* routes: status / config / start / stop / captcha / register / login / remote-url / feedback proxy; relay requests bypass system proxies (6s timeout)
Browser half (client plugin) lib/client.js Hand-written __ModuleLoader__.load({id, factory}) bundle (no build step); registers the settings.section entry + satisfaction popup; only requires react (seed module)

The browser half needs no Vite/tsdown rebuild: dsh-client-modules reads exports["./client"] at startup and serves it with index.html (restart dsh web after changes).

Install / Uninstall

npx @mrrisega/dsh-remote(一键安装)会自动把插件装进 dsh web 默认 profile。 也可以单独管理:

# 单独安装/重装(把插件装进 dsh web 默认 profile)
npx @mrrisega/dsh-remote plugin

# 卸载
npx @mrrisega/dsh-remote plugin --uninstall

What it does:

  • package.json dependency: "dsh-remote-web": "link:<包目录>/packages/dsh-remote-web"
  • cordis.patch.yml insert: { id: dsh-remote-web, name: 'dsh-remote-web', config: { relayDir: '~/.dsh-remote' } }
  • runs pnpm install (fallback npm install) in the profile

Restart dsh web afterwards. Manual alternative: edit the two files above and restart.

Note: a failing browser plugin blocks the whole web app from starting (framework constraint). Rollback = remove the patch entry and restart.

Development

# node half: restart dsh web (profile uses link: dependency, source is live)
# browser half: edit lib/client.js, restart dsh web (no build)
dsh --profile web --port 3090 --no-open   # verify on a separate port, 3080 untouched

Verify: / __DSH_BOOT__ contains dsh-remote-web; /plugins/dsh-remote-web/client.js 200; /dsh-remote/status returns JSON; panel renders in headless Chrome.

Known limitations

  • The entry uses the official Settings-page slot (settings.section, order: 30).
  • First-run red dot relies on DOM fallback injection (MutationObserver matching the nav cell class + "远程控制" text); if the hash/wording changes the dot simply won't show — the panel itself is unaffected.
  • Start/stop switches call launchctl (same bootstrap/bootout logic as dsh-setup.mjs).
  • Feedback API defaults to the account API base (cfg.api_url); self-hosted or compatible implementations can override with feedback_url in the config.

Content from the project README on GitHub ↗

Links

More in this category

View the whole category →

Community comments

Comments are public GitHub Discussions. Loading them connects to GitHub and Giscus; a GitHub account is required to post.