DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Fastgithub Accelerate — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
F

fastgithub-accelerate

Fastgithub Accelerate

通过 FastGithub 或自定义代理加速 DSH 的 GitHub 流量——注入 DSH 代理策略并添加 Composer 状态徽章。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:zijinggong/fastgithub-accelerate#c3bc3df7f313bea18fc558cc88a6a6b3a3005c25
README兼容性版本

兼容性与来源证明

Fastgithub Accelerate 以 fastgithub-accelerate 发布,当前版本为 0.3.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/24

版本

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

相关插件

正在加载相关插件…

最新版
0.3.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/24
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 security-access 分类下经过校验的插件。

Doctor@linxin666/dsh-doctorDSH 配置档案的事务性救援模式,配备受监督的启动器、隔离的恢复容器、确定性修复、健康监控以及本地 Web 恢复控制台DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Mobiledsh-mobileDeepSeek Harness 移动端适配与安全访问插件,支持局域网、远程连接、Android App 和手机浏览器。Plugin Subscriptionsdsh-plugin-subscriptions将 ChatGPT (Codex)、Claude、Grok (X Premium)、GitHub Copilot 和 Google Antigravity 订阅用作 DeepSeek Harness LLM 提供商,并通过网页设置页面使用 OAuth 登录

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