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.

Proxy Router — DSH Plugin for DeepSeek Harness
← Plugins

@yangzhe1991/dsh-proxy-router

Proxy Router

DSH 插件:本地分流代理 + Web 设置页 —— 只有规则命中的被墙域名走上游代理,其余(国内/内网/未知)直连;上游地址、清单、超时等参数直接在设置里改,热生效、免重启,并带运行状态面板 | DSH plugin: local routing proxy with a Web settings page — only rule-matched (blocked) hosts use the upstream proxy, everything else goes direct; the upstream address, blocklists, timeouts and more are

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

npx -y @deepseek-ai/dsh plugin --profile web add @yangzhe1991/dsh-proxy-router@0.1.1
READMECompatibilityVersions

Description

DSH 插件:本地分流代理 + Web 设置页 —— 只有规则命中的被墙域名走上游代理,其余(国内/内网/未知)直连;上游地址、清单、超时等参数直接在设置里改,热生效、免重启,并带运行状态面板 | DSH plugin: local routing proxy with a Web settings page — only rule-matched (blocked) hosts use the upstream proxy, everything else goes direct; the upstream address, blocklists, timeouts and more are edited in Settings and applied live, with a built-in status panel

Compatibility and provenance

Proxy Router is published as @yangzhe1991/dsh-proxy-router and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/13/2026

Versions

0.1.1stable
9/13/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
333.8 kB
Files
11
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/13/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 ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-proxy-router

English | 中文

A routing-proxy plugin for DSH (DeepSeek Harness): only rule-matched blocked domains go through the upstream proxy — everything else (domestic sites, LAN addresses, unknown hosts) connects directly. Its settings live in the Web settings page.

The motivation is mundane: once you start dsh with export https_proxy=... http_proxy=... all_proxy=..., even api.deepseek.com and www.baidu.com take a detour through the proxy. This plugin turns "when should this go through the proxy" into a maintainable rule table, and "who is the upstream" into a setting you can change any time.


What it covers

Everything outbound first hits the plugin's local routing proxy, which then decides where it goes:

Outbound sourceNotes
Main-process fetch()LLM API (api.deepseek.com), web_search, MCP, plugin HTTP calls
web_fetch toolshares one policy with the main process via the host's proxyRouteFor()
bash subprocessescurl, git, npm/pnpm — inherit the same route through http_proxy + NODE_USE_ENV_PROXY

How it works

DSH main process fetch / web_fetch / bash subprocesses
        │  the plugin repoints the host's http(s) proxy at the local router
        ▼
Local routing proxy (built in, bound to 127.0.0.1:17890)
        ├── matches a proxy rule → upstream proxy (the address from the settings page)
        └── everything else (default) → direct connection

Three rule layers, first match wins:

  1. Local rules file (~/.dsh/proxy-router/rules.txt) — your own additions/removals, hot-reloaded
  2. Remote blocklists (default: Loyalsoldier/clash-rules gfw.txt + greatfire.txt via jsDelivr, cached, refreshed every 24h)
  3. Built-in seed list — ~140 high-frequency blocked domains, for a first offline start
  4. No match at all → defaultRoute (default: direct)

Loopback and LAN addresses always go direct (127.0.0.0/8, 10/8, 172.16/12, 192.168/16, 169.254/16, 100.64/10, IPv6 ULA/link-local, plus single-label hostnames such as nas) — they are never handed to the upstream proxy.

Install

dsh plugin --profile web add @yangzhe1991/dsh-proxy-router

Then restart dsh web.

For local development, install with link:: set "@yangzhe1991/dsh-proxy-router": "link:/path/to/repo" in ~/.dsh/profiles/web, run pnpm install, restart.

Settings page (the recommended way)

After the restart, open Settings → Plugins → Plugin configuration and expand the "代理分流 (proxy-router)" card:

FieldMeaning
Upstream proxye.g. http://192.168.3.47:12801; empty falls back to https_proxy / http_proxy from the launch environment
Route when nothing matchesdirect (recommended) or proxy
Remote blocklistsone URL per line; clear the box to load none
List refresh periodhours; 0 keeps whatever cache exists
Local router bind addresse.g. 127.0.0.1:17890
Connect timeoutmilliseconds; applies to connection setup only, never to streaming responses
Fall back to direct when the upstream failsretry directly when the proxied connection cannot be established
Log every routing decisionverbose per-request lines on the host's stderr

Below the fields sits a live status panel: bind address, upstream and where it came from, whether the host policy was taken over (and whether bash subprocesses are routed), rule counts, hit statistics, the local rules file path, and each remote list's size and refresh time.

Worth knowing:

  • Saving takes effect immediately — no dsh restart. Upstream, default route, timeout, fallback and debug are read per request; changing the bind address re-binds the listener and repoints the host policy at it.
  • Settings are written to the proxy-router: section of $DSH_HOME/settings.yaml (default ~/.dsh/settings.yaml). Each field has a "reset" action that removes the user-layer entry, falling back to the composition default.
  • A field counts as overridden purely by its presence in the user layer; concurrent writes are fenced by revision instead of silently overwriting each other.

⚠️ Once the upstream is configured here, stop exporting http_proxy / https_proxy / all_proxy in your launch command. The host freezes those values into a snapshot at boot and hands it to bash subprocesses, which take priority — so curl/git/npm would bypass the router and talk to your exported upstream directly. The plugin detects this, warns loudly in the log, and marks bash subprocesses as "direct to upstream (bypassing the router)" in the status panel.

Composition config (deployment defaults)

The settings page writes the user layer, which resolves above the profile's composition config (the deployment default). Put machine-wide defaults there:

# ~/.dsh/profiles/web/cordis.patch.yml
- id: proxy-router
  config:
    upstream: http://192.168.3.47:12801
    debug: false

Two path-shaped fields stay composition-only (they are deployment facts, not preferences):

FieldDefaultMeaning
stateDir~/.dsh/proxy-routercache and default rules file location
rulesFile<stateDir>/rules.txtlocal rules file path

Every settings field may also be written here as a default; in composition config lists accepts plain URL strings or { name, url, route } objects (the settings page flattens them to a URL list).

Local rules

The file lives at ~/.dsh/proxy-router/rules.txt; a commented template is created on first run. Edits take effect immediately — no dsh restart. The settings page shows the path and the current rule count, but editing happens in your editor.

# one rule per line, '#' starts a comment; first match wins
proxy: some-blocked-site.com     # this domain and all subdomains → upstream proxy
direct: cdn.example.cn           # this domain and all subdomains → force direct
example.com                      # a bare domain means proxy:
  • Local rules win over remote lists: if a remote list wrongly proxies a domestic site, one direct: line fixes it.
  • Accepted spellings: *.example.com, .example.com, +.example.com, DOMAIN-SUFFIX,example.com, DOMAIN,example.com (exact), DOMAIN-KEYWORD,ads — and dnsmasq's server=/example.com/114.114.114.114 for good measure.
  • Non-ASCII domains are converted to punycode before matching.

Debugging

The local router ships a loopback-only debug endpoint:

# overview: bind address, upstream, rule counts, hit stats, policy self-check
curl -s http://127.0.0.1:17890/__proxy-router/status

# ask how a host would be routed
curl -s "http://127.0.0.1:17890/__proxy-router/why?host=www.google.com"
# → {"host":"www.google.com","route":"proxy","reason":"list:gfw:google.com"}

# reload rules (local + remote)
curl -s http://127.0.0.1:17890/__proxy-router/reload

The settings card reads the same status snapshot through the host web server's same-origin read-only route GET /dsh-proxy-router/status.

You can also verify routing with curl directly:

curl -x http://127.0.0.1:17890 -sI https://www.google.com   # via upstream
curl -x http://127.0.0.1:17890 -sI https://www.baidu.com    # direct

The startup log prints the upstream and its source, the bind address, rule counts, the policy self-check result, the settings-page entry point, and whether bash subprocesses are routed too.

Robustness

  • No self-recursion: a request whose target is this proxy's own listen address is never forwarded (plain HTTP gets 421, /favicon.ico gets 204, / gets a human-readable hint). Without that guard, something as harmless as opening http://127.0.0.1:17890/... in a browser snowballs into a self-loop — 0.1.0 produced over a hundred million requests that way, so 0.1.1 rejects them outright.
  • An upstream pointing at itself is ignored: when the upstream equals this plugin's own listen address it is treated as "no upstream", with an explicit warning in the log and in the status panel, instead of CONNECTing back into itself.
  • Rate-limited warnings: one line per distinct failure every 5 seconds, with a suppressed-count summary, so no failure mode can flood your terminal.

Compatibility

  • Verified against dsh 0.1.5-rc.2 since 0.1.0 (the 0.1.1 self-loop fix is verified on that same version).
  • The host half depends only on the public exports of @deepseek-ai/dsh-http-proxy, @deepseek-ai/schemastery and undici, plus cordis' ctx.get / ctx.effect / ctx.inject; the browser half requires only react and no UI package.
  • The settings card uses the official settings system (ctx.settings.installSection + the settings.plugin.item slot). On a deployment without a settings provider the plugin falls back to its composition config and everything else keeps working.

Known limits

  • HTTP proxies only (http:// / https://). all_proxy=socks5://… is ignored with a warning; if your proxy also exposes a mixed port (mihomo/clash mixed-port), point the upstream at http://host:port.
  • No TLS interception: https is routed by the CONNECT hostname only, so URL-path rules are impossible by design.
  • Rules support domain suffixes, exact domains, keywords and IP literals — no regular expressions.
  • The local router binds 127.0.0.1 only; it is not exposed to the LAN, and the local rules file is not editable from the settings page (its path is shown there).

License

MIT