DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Pi Ai Auth — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
P

@dingyiliao/dsh-pi-ai-auth

Pi Ai Auth

DeepSeek Harness pi-ai 的提供商卡片 OAuth 控制和备用命令

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

npx -y @deepseek-ai/dsh plugin --profile web add github:dingyiliao/dsh-bundle-pi-ai-auth#e4754cfc921ab393257de2f3c0d9fd828754570d
README兼容性版本

兼容性与来源证明

Pi Ai Auth 以 @dingyiliao/dsh-pi-ai-auth 发布,当前版本为 0.3.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.3.1stable
2026/9/19

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Auto Reviewdsh-auto-review针对 DeepSeek Harness 审批请求的第二模型 AI 自动审查:只读审查子代理在审批应答链上决定允许或拒绝,并采用故障关闭回退机制和完整的会话日志审计。Codex Subscriptiondsh-codex-subscription通过 OAuth 在 DeepSeek Harness 中使用 ChatGPT 和 Codex 订阅,支持配额管理、安全重置、网页搜索、图像和快速模式

README

dsh-bundle-pi-ai-auth

简体中文

Provider-card OAuth controls for DeepSeek Harness pi-ai, with /auth-* commands retained as a fallback.

The bundle does not implement provider OAuth protocols or store and refresh tokens itself. @deepseek-ai/dsh-llm-pi-ai registers the provider-owned authorization flows and credential records. This bundle adds the generic interaction surfaces around those flows.

Models settings UI

For every OAuth-capable pi-ai provider, the Models page shows its authorization state and the relevant action:

  • Sign in starts the provider flow, opens its sign-in URL in the system browser, and displays device codes or follow-up questions in a modal.
  • Sign out deletes the local provider credential while keeping the provider configured.
  • A provider that has not been saved yet shows that OAuth is available, but sign-in remains disabled until the built-in provider form is applied.

The browser extension uses the official settings.models.provider-card slot. Its Host RPC controller is also owned by this package, so installing it requires no OAuth-specific edits to the DSH repository.

State model

OAuth capability, enablement, and login are separate states:

  • OAuth-capable: the current llm-pi-ai/pi-ai installation registered an OAuth flow for the provider.
  • Enabled: llm-pi-ai.providers.<provider> exists, so the provider is a selectable model route.
  • Signed in: a provider-owned credential exists at records.llm-pi-ai/<provider>.

Installing this bundle does not automatically enable any provider. The user first adds a provider in Models settings (or with /auth-add), then signs in.

Fallback commands

  • /auth-list: list OAuth-capable providers with enablement and login state.
  • /auth-add [provider] [method]: add and sign in; omitting the provider opens a selection question.
  • /auth-login [provider] [method]: sign in to an enabled provider.
  • /auth-status [provider]: inspect one provider; without a provider it behaves like /auth-list.
  • /auth-logout [provider]: remove the local credential while keeping the provider enabled.
  • /auth-remove [provider]: remove a user-added provider and its local credential.

method defaults to oauth. A provider enabled by another bundle's base configuration cannot be removed with /auth-remove; update the owning bundle instead.

Requirements

  • DeepSeek Harness 0.1.6-alpha.1 or a compatible later 0.1.x release that provides settings.models.provider-card
  • A Web/Desktop composition containing authorization, credentials, settings, llm-pi-ai, the Remote gateway, and the Models settings UI
  • An account entitled to use the selected provider

OAuth itself works with the upstream 0.1.6-alpha.2 UI. That release can still show the generic API-key editor for an OAuth-only provider because it does not yet expose the adapter's apiKeyConfigurable capability. A DSH build carrying that generic capability hides the inapplicable API-key/Edit controls. This bundle deliberately does not patch or hide core UI with provider-specific CSS.

Install

Install the current GitHub version into a Web profile:

dsh plugin --profile web add github:dingyiliao/dsh-bundle-pi-ai-auth

The same package spec can be entered in Desktop's plugin manager. Restart the corresponding DSH app after installation, add an OAuth-capable provider under Settings → Models, and use the sign-in action on that provider card.

After an npm release is available, the registry form is:

dsh plugin --profile web add @dingyiliao/dsh-pi-ai-auth

The repository includes its built Host and Client entry files, so Git installs do not need to run a package build script.

Architecture

Models provider card
  -> bundle browser extension (settings.models.provider-card)
  -> bundle-owned piAiAuthorization Remote controller
  -> ctx.authorization.begin(llm-pi-ai/<provider>)
  -> provider-owned flow from llm-pi-ai / pi-ai
  -> browser, device-code, or follow-up prompt interaction
  -> provider-owned credential record
  -> llm-pi-ai reads and refreshes that record for requests

No temporary token environment variable is created. Logout removes the local record; it does not claim to revoke the grant at the remote provider.

License

MIT