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.

Bsk Ws Bridge — DSH Plugin for DeepSeek Harness
← Plugins
B

dsh-bsk-ws-bridge

Bsk Ws Bridge

DSH plugin: expose the local bsk daemon WebSocket to remote browser extensions via a web-server upgrade route

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

npx -y @deepseek-ai/dsh plugin --profile web add github:kaixinguo360/dsh-bsk-ws-bridge#079bf9d6d99e94d8a6dca0641e108e7f500188c2
READMECompatibilityVersions

Compatibility and provenance

Bsk Ws Bridge is published as dsh-bsk-ws-bridge 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
any
Release source
github
Registry updated
8/26/2026

Versions

0.2.0stable
8/26/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
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/29/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-bsk-ws-bridge

DSH 插件:把本机 bsk daemon 的回环 WebSocket 暴露为 DSH web server 上的一个 WebSocket 端点(默认 /__bsk__),供配套的修改版 browser-skill 扩展接入——Agent 由此经 DSH 页面远程操控客户端浏览器。

bsk daemon 只监听本机回环(ws://127.0.0.1:52800),原本浏览器必须与它同机;经本插件暴露到 DSH web server 后,浏览器只要打得开 DSH 网页就能连上,Agent 跑在远端服务器也能使用这台浏览器。

本插件只提供数据链路,不为 Agent 提供浏览器操作能力;还需安装 dsh-plugin-browserskill 插件与配套修改版的 browser-skill 扩展(见「配套组件」)。

核心功能

  • WebSocket 端点:在 DSH web server 上注册 /__bsk__(路径可配置),将入站连接转发到本机 bsk daemon(默认 ws://127.0.0.1:52800)。
  • 透明转发:对 WebSocket 帧原样转发、不解析不改写,握手与会话语义全部交给真正的 daemon 处理;仅转发文本帧(bsk-protocol 为 JSON 行),关闭码双向透传。
  • Origin 伪装:daemon 只接受 chrome-extension:// 来源的握手,本插件连接 daemon 时按配置伪造该前缀的 Origin;upstream 只走本机回环。
  • 健康检查端点:GET /__bsk__/health 返回 JSON 探活信息。

配套组件

端到端的远程操控需要以下组件配合,本插件只承担其中的数据链路:

  • bsk(CLI/daemon):安装在 DSH 所在机器,其 daemon 是这条链路的另一端;
  • dsh-plugin-browserskill:BrowserSkill 官方的 dsh 插件,把 bsk 能力以 browser_* 工具的形式提供给 Agent——没有它,Agent 发起不了任何浏览器操作;
  • 修改版 browser-skill 扩展:与本插件配套的修改版 browser-skill 扩展,fork 自 Tencent/BrowserSkill,装在客户端浏览器里,打开任意 DSH 页面即自动接入本端点,真正执行页面操作。

安装

遵循标准 dsh 插件流程:

# 1. 加入 web profile(本地路径安装;发布到 npm 后可直接写包名)
dsh plugin --profile web add file:<本仓库路径>
# 2. 启动该 profile,端点随之注册
dsh --profile web
# 3. 验证
curl http://127.0.0.1:3080/__bsk__/health

配置

行内 config 定义于 cordis.patch.yml:

键默认值说明
enabledtruefalse 时整个插件不注册
path/__bsk__DSH 上的 WebSocket 端点路径(exact match,无尾斜杠)
upstreamws://127.0.0.1:52800本机 bsk daemon 的 WebSocket 地址
originchrome-extension://aab…连接 daemon 时伪造的 Origin 头