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.

Loopback Bridge — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
L

dsh-loopback-bridge

Loopback Bridge

Unlock DSH Web settings and credentials when you open the UI from a LAN IP or public hostname

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

npx -y @deepseek-ai/dsh plugin --profile web add github:johnhom1024/dsh-loopback-bridge#395a7554a0f991798bdaba0c8ec18604dcc8ba80
READMECompatibilityVersions

Compatibility and provenance

Loopback Bridge is published as dsh-loopback-bridge and currently resolves to version 1.0.1. 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/12/2026

Versions

1.0.1stable
9/12/2026
1.0.0stable
9/6/2026

Related plugins

Loading related plugins…

Latest
1.0.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/12/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

Related plugins

More verified plugins in security-access.

Doctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consoleDSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugin Subscriptionsdsh-plugin-subscriptionsUse ChatGPT (Codex), Claude, Grok (X Premium), GitHub Copilot, and Google Antigravity subscriptions as DeepSeek Harness LLM providers, with OAuth login from the web Settings pageMobiledsh-mobileDeepSeek Harness mobile adaptation and secure access plugin, supporting LAN, remote connections, Android App, and mobile browsers.

README

dsh-loopback-bridge

用局域网 IP 或公网域名打开 DSH,设置页也能改模型和 API Key

装完重启即可 · 不改官方源码 · 入口必须有鉴权

English · 中文


[!WARNING] 这个插件把「仅本机」的设置和凭据写入能力,开放给所有能打开这个 DSH 页面的人。家庭局域网自己看着办;挂公网就必须在前面加 authentik / oauth2-proxy 这类鉴权。接入前先备份,数据丢了概不负责。

这是什么

DSH 设置页只认地址栏是不是本机(127.0.0.1 / localhost)。用 192.168.x.x 或自己的域名打开时,页面会报 "settings are unavailable in this browser",模型 tab 改不了。

服务端从 0.1.2 起已经认 --trusted-host,RPC 本身能通。卡住的是浏览器里那一刀:设置页看见 hostname 不是回环,直接进只读,请求都不发。这个插件在页面加载时把连接标成本机,设置页就会正常工作。

✨ 特性

  • 远程能改设置 —— 局域网 IP、NAS 域名、公网域名打开,模型和凭据都能写
  • 不改官方包 —— DSH 随便升级;官方哪天认 trusted-host 了,卸掉就行
  • 装完即生效 —— dsh plugin add 之后重启 web,不用手改 nginx
  • 0.1.2 友好 —— 不要再把 Host 改写成 127.0.0.1,cookie 会对不上然后 401

🚀 快速开始

1. 确认服务端已经信任你的访问地址

dsh web 启动参数里要带上实际用来打开页面的 Host,例如:

dsh web --host 127.0.0.1 --port 3080 \
  --trusted-host 192.168.31.229 \
  --trusted-host dsh.example.com

2. 安装插件

dsh plugin --profile web add github:johnhom1024/dsh-loopback-bridge

本地开发:

dsh plugin --profile web add link:/path/to/dsh-loopback-bridge

3. 重启 dsh web

Docker 共享 netns 的栈不要只 restart 单个容器,整栈重建。装完刷新页面,远程打开设置 → 模型,应该能改了。

⚙️ 要求

项说明
DSH按 0.1.2-rc.1 验证,0.1.5+ 必用 1.0.1(旧版会把官方 __ModuleLoader__ 盖掉,浏览器报 bootstrap facade is missing)。更早版本服务端还要改 Host,不推荐
--trusted-host必须覆盖你实际访问用的 hostname / IP
反代不要把特权 API 的 Host 改写成 127.0.0.1(0.1.2 的 cookie 绑 Host,改了会 401)
鉴权LAN 信任模型可以裸奔;公网必须有反代鉴权

验证

打开远程地址的设置页,模型 tab 不再报 unavailable,能保存 API Key 就算成功。

命令行核对(可选)
# 脚本可达
curl -s -o /dev/null -w "%{http_code} %{size_download}B\n" http://<host>/loopback-bridge.js

# HTML 首包已注入
curl -s http://<host>/ | grep loopback-bridge

# 设置 RPC(0.1.2 路径是斜杠;要带着你的会话 cookie)
curl -s -o /dev/null -w "%{http_code}\n" -X POST \
  -H "Content-Type: application/json" \
  -d '{"type":"client-request","rpcId":"t","method":"settings/describe","payload":{"args":{}}}' \
  http://<host>/api/settings/describe

🔒 安全

插件只动客户端。谁能打开 DSH 页面,谁就能改设置、写 credentials.set。这在自家反代后面是正确语义,裸奔公网则不是。

上游如果改成由服务端下发 isLoopback,这个插件会一起失效,卸掉即可。

📄 License

MIT