DeepSeek Harness 插件

mrRisega/dsh-remote#dsh-remote-web

Star 数 ★ 53 下载量(近 30 天) 464 分类 远程与移动端 收录于 2026-09-09 npm dsh-remote-web

手机浏览器远程控制 dsh web,人在哪都能用(免公网 IP):官方托管中继 4G 即用,也可自建 relay;一条命令安装电脑端 bridge 与设置页「远程控制」面板(云端/自建切换、账号登录、bridge 启停、反馈);隧道数据面端到端加密(E2EE:手机↔电脑端正文与 WS 内容加密,中继只见路由元数据;支持扫码/一次性链接桌面授权,免重复输密码);HTTP/WebSocket 全量透传,访问密钥认证、实时设备列表、可选流量配额。

安装

# npm 包(预构建)

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

# Release 预构建包

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

# GitHub 源码(首次需按提示配置 allowBuilds 构建授权后重试)

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

装任何插件都等于在你的机器上跑第三方代码,权限和你本人一样大——能读你的文件、用你的凭据、访问网络,工具审批管不到它。GitHub 来源的插件还会在安装时执行构建脚本——pnpm 默认拦截,所以安装可能停在 ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWEDERR_PNPM_IGNORED_BUILDS;dsh 会打印出需要添加的确切键名,把它加进该 profile 的 pnpm-workspace.yamlallowBuilds 下,重跑一次即可装上。放行构建本身就是一次信任判断:请只安装可信来源,并尽量锁定 commit(github:owner/repo#sha)。

README

曾用名 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.

内容来自项目 README(GitHub)↗

链接

同类插件

查看整个分类 →

社区评论

评论公开保存在 GitHub Discussions。加载评论会连接 GitHub 和 Giscus;发表内容需要 GitHub 账号。