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.

Fastgithub Accelerate — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
F

fastgithub-accelerate

Fastgithub Accelerate

Accelerate DSH's GitHub traffic via FastGithub or a custom proxy — injected DSH proxy policy and a composer status badge.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zijinggong/fastgithub-accelerate#c3bc3df7f313bea18fc558cc88a6a6b3a3005c25
READMECompatibilityVersions

Compatibility and provenance

Fastgithub Accelerate is published as fastgithub-accelerate 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
web
Release source
github
Registry updated
9/24/2026

Versions

0.3.0stable
9/24/2026
0.2.0stable
9/24/2026

Related plugins

Loading related plugins…

Latest
0.3.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/24/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.Mobiledsh-mobileDeepSeek Harness mobile adaptation and secure access plugin, supporting LAN, remote connections, Android App, and mobile browsers.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 page

README

fastgithub-accelerate

Make DSH's GitHub traffic accelerate automatically through either a local FastGithub install or any custom HTTP(S) proxy you configure — no manual proxy config, no browser extension, no rebuild.

Once installed, web_fetch / web_search, git / curl, and Node-side fetch all accelerate GitHub transparently, and a small badge in the composer shows the live status and which acceleration source is active.

Why

  • DSH rejects loopback-resolved hosts: dsh-web-fetch-http pins public IPs and refuses WEB_BLOCKED_URL for any host that resolves to a private/loopback address — unless the URL is routed through an installed proxy policy, where the pin is skipped and the proxy does the resolving.
  • Any accelerator that hands GitHub traffic to a faster path fixes this the moment it is wired into DSH's proxy policy.

This bundle wires an acceleration source into that policy — FastGithub when it is present, otherwise a custom proxy you configure.

How it works

  1. Host (index.js) picks the active acceleration source (status.source):
    • fastgithub — when FastGithub's DNS hijack is up, DSH traffic is routed through this plugin's loopback forward proxy (127.0.0.1:39467), whose DNS resolution lands on FastGithub's interceptors;
    • custom-proxy — when config.proxyUrl is set (and FastGithub is absent or mode says so), DSH traffic is routed straight to that upstream HTTP(S) proxy (a gh-proxy / Cloudflare-Workers accelerator, corporate proxy, VPN node, ...). No local FastGithub, no MITM cert needed.
  2. It loads @deepseek-ai/dsh-http-proxy from its canonical realpath (the same module instance the harness uses) and calls installProxyFromEnvironment with the active endpoint, so:
    • web_fetch / web_search tunnel through it — GitHub fetches that were previously blocked now work;
    • git, curl and other children inherit http(s)_proxy env;
    • undici's global dispatcher routes Node-side fetch.
  3. It probes every 60 s (FastGithub hijack + configured proxy) and serves GET /fastgithub/status for the badge.
  4. Client (client.js) renders a composer badge showing the active source (🚀 FastGithub 加速中 / 🚀 自定义代理加速中 / ⚠ no source). No browser request is ever rewritten — a browser speaks origin-form, which no forward proxy can serve.

A proxy exported at launch time always wins over the plugin's endpoint (the plugin never overrides a user's own proxy); the badge then reports the inherited policy.

Install

In the target DSH:

plugin_manager → action: install_bundle → target: <path-to>/fastgithub-accelerate

Or from a GitHub repo / npm once published:

dsh plugin --profile web add <owner>/<repo>

See INSTALL.md for prerequisites (FastGithub running, DNS hijack active, MITM root cert trusted) and verification steps.

Status

FieldMeaning
acceleratingproxy installed and an acceleration source is active
sourcefastgithub / custom-proxy / none
policyproxied / none
proxyUrlthe configured custom proxy (when source is custom-proxy)
fastgithub.dnsHijackgithub.com resolves to loopback
fastgithub.interceptor443FastGithub :443 interceptor is up
moduleok / unavailable (dsh-http-proxy import)
port / endpointthe plugin's loopback proxy

Config

The bundle exports a Config with two keys:

KeyDefaultMeaning
modeautoauto | fastgithub | custom-proxy. auto uses FastGithub when its DNS hijack is up, else falls back to proxyUrl when set.
proxyUrl(empty)http://host:port of an upstream HTTP(S) proxy to accelerate through when FastGithub is absent — e.g. a gh-proxy accelerator, a corporate proxy, or a VPN node.

Using a custom proxy (no FastGithub)

When the target machine has no FastGithub, configure a reachable upstream HTTP(S) proxy and it accelerates GitHub the same way:

# in the profile's cordis.patch.yml
- id: fastgithub-accelerate
  config:
    mode: auto        # auto | fastgithub | custom-proxy
    proxyUrl: http://<proxy-host>:<proxy-port>

mode: auto (recommended) uses FastGithub when its DNS hijack is up and falls back to proxyUrl otherwise; mode: custom-proxy forces the custom proxy and ignores FastGithub. Restart DSH after changing config in the profile.

After a restart, GET /fastgithub/status reports "source": "custom-proxy", "proxyUrl": "<your proxy>" and "accelerating": true; web_fetch and git then route GitHub traffic through it. No local FastGithub, no DNS hijack, no MITM root cert required.

⚠️ The proxy must reliably reach GitHub and be trustworthy — with a public gh-proxy accelerator, watch its stability and certificate policy.

Requirements

  • Either FastGithub running (fastgithub.exe start / FastGithub UI) with the FastGithub README setup (http.sslverify false, root CN=FastGithub in the trusted store) — or a reachable custom proxy passed via config.proxyUrl.
  • With neither, the plugin loads harmlessly but reports source: "none" and does not accelerate.

License

MIT