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.

Public Proxy — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-public-proxy

Public Proxy

A DeepSeek Harness plugin that exposes the DSH Web UI for LAN access

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-public-proxy@0.3.0
READMECompatibilityVersions

Compatibility and provenance

Public Proxy is published as dsh-public-proxy and currently resolves to version 0.3.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.3.0stable
9/3/2026
0.2.0stable
8/26/2026
0.1.0stable
8/24/2026

Related plugins

Loading related plugins…

Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
25.2 kB
Files
17
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
185
Security scan
✓ v0.3.0 scan passed
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

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 consolePocketdsh-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.Auto Reviewdsh-auto-reviewSecond-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent decides allow/deny on the approval answerer chain, with fail-closed fallback and full session-log audit.

README

dsh-public-proxy

一个 DeepSeek Harness 插件,用于将 DSH Web UI 暴露给局域网访问。

简体中文 | English

安装

dsh plugin --profile web add dsh-public-proxy@latest

使用方法

插件运行后,默认会在 3081 端口监听。局域网内的其他设备可以通过以下地址访问 Web UI:

http://<本机局域网IP>:3081

例如 http://192.168.1.100:3081

配置

可以在 $DSH_HOME/profiles/web/cordis.patch.yml 中配置参数(以下为默认值):

- id: public-proxy
  config:
    host: "0.0.0.0"
    port: 3081
    applyRandomUuidPatch: true
    applyIsLoopbackPatch: true
    accessKey: ""
    enableCookieAuth: false
    bypassLaunchToken: false

访问控制

默认情况下,代理不启用访问控制,局域网内任何人都可以访问。如果你需要保护代理,可以启用 Cookie 认证:

- id: public-proxy
  config:
    # ... 其他配置
    accessKey: "your-secret-key"
    enableCookieAuth: true

启用后,访问代理时会要求输入访问密钥。密钥通过 Cookie 存储,30 天内无需重复输入。

注意: 由于代理使用 HTTP 明文传输,访问密钥可能被网络监听者截获。仅在可信任的局域网环境中使用。

启动令牌绕过

DSH Web UI 默认通过启动令牌保护,访问时需要在 URL 中携带令牌。启用 bypassLaunchToken 后,客户端直接访问代理即可,无需在 URL 中携带令牌:

- id: public-proxy
  config:
    # ... 其他配置
    bypassLaunchToken: true

注意: 该选项会绕过 DSH 的启动令牌保护。建议与 enableCookieAuth 配合使用,通过访问密钥代替启动令牌来控制访问权限。

安全警告

DSH 本身拒绝绑定 0.0.0.0,会返回以下官方错误:

error: --host 0.0.0.0 is intentionally not supported yet for safety: it would expose remote code execution to the network; use 127.0.0.1 instead

本插件有意绕过此限制以实现局域网访问。监听 0.0.0.0 会将 Web UI 暴露给整个网络 —— 网络中的任何人都可以访问该机器。请仅在可信任的局域网中启用此功能,切勿将代理直接暴露到公网。

许可证

MIT — 详见 LICENSE。