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 — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@huxy/dsh-proxy

Proxy

Provides proxy services for access from a local area network or via Cloudflared Tunnel, Tailscale, and similar tools, with email verification code authentication to secure external access. Suitable for lightweight authentication in internal systems, admin panels, or team collaboration scenarios.

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

npx -y @deepseek-ai/dsh plugin --profile web add @huxy/dsh-proxy@0.1.3
READMECompatibilityVersions

Compatibility and provenance

Proxy is published as @huxy/dsh-proxy and currently resolves to version 0.1.3. 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.1.3stable
9/20/2026
0.1.2stable
9/19/2026
0.1.1stable
9/19/2026
Show 10 more versionsCollapse versions
0.1.0stable
9/19/2026
0.0.9stable
8/22/2026
0.0.8stable
8/22/2026
0.0.7stable
8/20/2026
0.0.6stable
8/20/2026
0.0.5stable
8/19/2026
0.0.4stable
8/19/2026
0.0.3stable
8/19/2026
0.0.2stable
8/19/2026
0.0.1stable
8/19/2026

Related plugins

Loading related plugins…

Latest
0.1.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
6.7 kB
Files
5
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
510
Security scan
✓ v0.1.3 scan passed
Last push
8/22/2026
View source ↗Project homepage ↗
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

@huxy/dsh-proxy

  • 局域网浏览器 HTTP 暴露 crypto.randomUUID。
  • 基于 huxy-node-server 代理服务的 dsh 插件。提供代理服务供局域网或 Cloudflared Tunnel、Tailscale 等访问,添加邮箱发验证码鉴权 huxy-node-server/codeAuth ,保障外网安全性。适用于内部系统、管理后台或团队协作场景的轻量级身份验证。

dsh

实现

export function apply(ctx, {port, authHosts, authConfig} = {}) {
  ctx.effect(async () => {
    const {httpServer} = await startServer({
      port,
      proxys: [{
        target: 'http://localhost:3080',
      }],
      logger: console,
      serverLogger: (_, logger) => logger.info(`代理服务运行在 ${_.port} 端口`),
    }, null, (_, app) => {
      app.use((req, res, next) => {
        if (authHosts && !authHosts.includes(req.hostname)) {
          req.trustedAuthHost = true;
        }
        next();
      });
      codeAuth(authConfig, app);
    });

    return () => {
      httpServer.close();
      console.log('[huxy-dsh-proxy] 代理已关闭');
    };
  });
};

login

安装

dsh plugin --profile web add @huxy/dsh-proxy

dsh plugin --profile web add github:ahyiru/dsh-proxy

源码安装

pnpm dsh plugin --profile web add @huxy/dsh-proxy

pnpm dsh plugin --profile web add github:ahyiru/dsh-proxy

卸载

dsh plugin --profile web remove @huxy/dsh-proxy

配置

编辑 ~/.dsh/profiles/web/cordis.patch.yml


- id: huxy-dsh-proxy
  name: '@huxy/dsh-proxy'
  config:
    port: 8030
    authHosts:
      - 'prod.host.com'
      - '192.168.0.111'
    authConfig:
      session:
        secret: 'your-secret'
        maxAge: 30
      code:
        ttl: 300000
        len: 6
        maxAttempts: 5
      mail:
        host: 'smtp.gmail.com'
        port: 465
        secure: true
        auth:
          type: 'OAuth2'
          user: 'xxx@gmail.com'
          clientId: 'xxx'
          clientSecret: 'xxx'
          refreshToken: 'xxx'
        from: 'XX <xxx@gmail.com>'
        subject: 'XX 访问验证码'
      allowedEmails:
        - 'xxx@gmail.com'
        - 'xxx@qq.com'
      page:
        title: 'XX 团队'
        tips: '请使用 XX 团队电子邮件验证!'
        footer: '仅供 XX 团队使用。'

  • port: 代理端口
  • authHosts: 需要开启鉴权的站点,默认所有站点都开启鉴权
  • authConfig: 鉴权页面详细配置

详细配置可参见:

  • huxy-node-server
  • huxy-node-server/codeAuth

dsh-plugin