DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

External Links — DSH Plugin for DeepSeek Harness
← Plugins
E

dsh-external-links

External Links

DSH desktop external link fix: clicking http/https links automatically opens them in the system default browser. Adds the missing webview link-click wiring in the shell and connects directly to the fixed native bridge shell.open-external (DSH desktop 5.3.6+, Windows).

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Lion-Li-git/dsh-external-links#9e5543f9c5a5b0bf1aad375236ee1c3d88c06566
READMECompatibilityVersions

Compatibility and provenance

External Links is published as dsh-external-links and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/3/2026

Versions

0.2.0stable
9/3/2026
0.1.0stable
8/30/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/3/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rPocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-external-links

DSH 桌面端(Deepseek Harness EAC,Windows WebView2 壳)外部链接修复插件。

点击应用里的 http/https 外链时,自动在系统默认浏览器中打开,而不是毫无反应。

为什么还需要它(v0.2.0)

  • DSH 桌面端 5.3.6 已修复壳层 shell.open-external 桥接(PR #251:cmd start → ShellExecuteW,实测返回 {ok:true})。
  • 但壳层只修好了"被调用时的打开动作",webview 里点击 <a target="_blank"> 外链 仍没有原生接线(壳注入的 BRIDGE_JS 与 webui 框架都没有锚点点击拦截)—— 实测 5.3.6 停用本插件后点链接依旧打不开。
  • 本插件补上这层缺失的"接线":拦截链接点击后直连已修复的原生桥。
点击链接 / window.open()
   ↓(客户端拦截器,capture 阶段)
window.dshDesktop.openExternal(url)     → 原生 ShellExecuteW → 默认浏览器
window.dshDesktop.openPath(path)        → file:// 解码为路径后默认应用打开

功能

  • http:// / https:// → 默认浏览器(原生桥,5.3.6+);
  • file:// → 解码为 Windows 绝对路径 → openPath 默认应用打开;
  • 应用内链(同源、127.0.0.1/localhost、#hash、下载、javascript:)不受影响;
  • 右键复制、中键点击不被破坏;
  • 无壳层(普通浏览器直接打开 webui)→ 自动回退 window.open 新标签页;
  • v0.2.0 起无宿主路由:不再依赖 PowerShell / webServer(上游已修复的部分已去掉)。

安装

方式 A:cordis.patch.yml 直装(推荐 —— 可在「插件管理」里开关)

在 ~/.dsh/profiles/web-desktop/package.json 的 dependencies 中加入:

"dsh-external-links": "github:Lion-Li-git/dsh-external-links"

执行 pnpm install,并在该目录 cordis.patch.yml 末尾追加:

- insert:
    - id: dsh-external-links
      name: 'dsh-external-links'

重启 DSH 桌面端。之后插件会像内置插件一样出现在设置 → 插件 列表,可直接开关 (停用 = 写入 disabled: true,下次启动不再加载)。

方式 B:bundle 安装(dsh plugin add,快捷但不可在插件管理页开关)

dsh plugin --profile web-desktop add github:Lion-Li-git/dsh-external-links

说明:bundle 方式(dsh.profile.bundles)安装的第三方插件,当前官方版本 在插件管理页不支持停用/移除(会提示"请在插件市场卸载")——这是上游对 所有市场/bundle 插件的一致限制,不是本插件的特例。想用开关就选方式 A。

验证

  • 重启后打开任意会话,点击消息里的外链 → 应在默认浏览器打开;
  • 应用内导航、设置页、下载等不受影响;
  • 停用插件后重启,链接会回到"点了没反应"(说明确实由本插件接线)。

版本历史

  • 0.1.0:壳层桥接损坏期方案 —— 自带 PowerShell 宿主路由(Start-Process)绕开 cmd start bug。
  • 0.2.0:适配 5.3.6 —— 桥接已修复,去掉宿主路由,改为直连 shell.open-external。

兼容性

  • 目标:DSH 桌面端 ≥ 5.3.6 Windows 版(dsh-eac-shell.exe);
  • 5.3.6 之前的版本请用 0.1.0(原生桥在那之前是坏的);
  • 纯客户端实现,无框架依赖、无需 PowerShell;
  • 插件装在用户 profile(~/.dsh),DSH 桌面端版本更新不会覆盖它。

License

MIT