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.

Auth Gate — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

@dsh-login-gate/auth-gate

Auth Gate

Login gate + account settings for the DeepSeek Harness web UI. Host persists account/password (scrypt-hashed) to disk; browser adds a login overlay and an account-settings section.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:javaxiaov/deepseek-herness-login#09727e3a78737d3f5c98fc92aa1b6d75e1ede3db
READMECompatibilityVersions

Compatibility and provenance

Auth Gate is published as @dsh-login-gate/auth-gate and currently resolves to version 1.0.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
8/21/2026

Versions

1.0.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Not declared
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
8/15/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 consoleMobiledsh-mobileDeepSeek Harness mobile adaptation and secure access plugin, supporting LAN, remote connections, Android App, and mobile browsers.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

DeepSeek Harness 登录门禁插件 (auth-gate)

简体中文 · English


简体中文

一个为 DeepSeek Harness Web 界面提供登录门禁 + 账号管理的插件 bundle。

预览

登录页面

功能

  • 登录门禁:未登录时全屏登录页覆盖整个应用,无法操作任何功能。
  • 账号设置:系统设置里新增「账号设置」页面,可修改账号名和密码。
  • 退出登录:设置页头部和账号设置页均有红色「退出登录」按钮,点击后立即切回登录页(只退出账号,不影响应用)。
  • 多语言:跟随 DeepSeek Harness 界面语言自动切换(设置 → 外观 → 语言),支持中文与 English。
  • 安全存储:密码以加盐 scrypt 哈希持久化到本地文件,绝不保存明文。
  • 持久化:账号、密码修改重启应用后依然保留(默认账号 admin / 密码 admin123)。

安装

本插件作为 DeepSeek Harness 用户 profile 的 bundle 安装:

  1. 将 dsh-login-gate 目录(本仓库内容)放入 profile 的 bundles 目录,例如: ~/.dsh/profiles/web/bundles/auth-gate/

  2. 在 profile 的 package.json 中添加 bundle 引用:

    {
      "dsh": {
        "profile": {
          "bundles": [
            "@dsh-login-gate/auth-gate"
          ]
        }
      },
      "dependencies": {
        "@dsh-login-gate/auth-gate": "link:./bundles/auth-gate"
      }
    }
    
  3. 在 profile 目录执行 pnpm install 建立链接。

  4. 重启 DeepSeek Harness 应用。

结构

dsh/
  index.js           Host 端:HTTP 路由(登录/状态/退出/改密)
  account-store.js   Host 端:scrypt 哈希 + 本地持久化存储
  client.js          浏览器端:登录遮罩 + 账号设置页(lazy-CJS bundle)
cordis.patch.yml     插件装载配置
package.json         包声明(dsh.bundle / dsh.client)

数据文件

账号数据保存在 <profile 目录>/login-gate-accounts.json:

{
  "username": "admin",
  "password": "scrypt$16384$8$1$<salt>$<hash>",
  "sessionToken": null
}

接口

方法路径说明
GET/login-gate/status?token=...校验会话
POST/login-gate/login登录,返回 token
POST/login-gate/logout退出登录,清空会话
POST/login-gate/update修改账号名/密码(需当前密码)

许可证

MIT


English

A plugin bundle that adds a login gate and account management to the DeepSeek Harness web UI.

Preview

Login page

Features

  • Login gate: a full-screen login page covers the whole app until you sign in; nothing is operable without a session.
  • Account settings: a new "Account Settings" page in the system settings for changing the username and password.
  • Log out: red "Log out" buttons in the settings header and on the account settings page; clicking returns to the login page immediately (logs the account out only, never the app).
  • Multi-language: follows the DeepSeek Harness UI language automatically (Settings → Appearance → Language), supporting Chinese and English.
  • Secure storage: the password is persisted locally as a salted scrypt hash — plaintext is never stored.
  • Persistent: account and password changes survive app restarts (default account admin / password admin123).

Installation

Install the plugin as a bundle in your DeepSeek Harness user profile:

  1. Put the dsh-login-gate directory (this repository's contents) into the profile's bundles directory, e.g.: ~/.dsh/profiles/web/bundles/auth-gate/

  2. Add the bundle reference to the profile's package.json:

    {
      "dsh": {
        "profile": {
          "bundles": [
            "@dsh-login-gate/auth-gate"
          ]
        }
      },
      "dependencies": {
        "@dsh-login-gate/auth-gate": "link:./bundles/auth-gate"
      }
    }
    
  3. Run pnpm install in the profile directory to create the link.

  4. Restart the DeepSeek Harness app.

Structure

dsh/
  index.js           Host side: HTTP routes (login/status/logout/update)
  account-store.js   Host side: scrypt hashing + local persistent storage
  client.js          Browser side: login gate + account settings page (lazy-CJS bundle)
cordis.patch.yml     Plugin mounting config
package.json         Package declaration (dsh.bundle / dsh.client)

Data file

Account data is stored in <profile directory>/login-gate-accounts.json:

{
  "username": "admin",
  "password": "scrypt$16384$8$1$<salt>$<hash>",
  "sessionToken": null
}

API

MethodPathDescription
GET/login-gate/status?token=...Validate a session
POST/login-gate/loginSign in, returns a token
POST/login-gate/logoutLog out, clears the session
POST/login-gate/updateChange username/password (requires the current password)

License

MIT