DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
G

dsh-grok-auth

Grok Auth

DeepSeek Harness 插件,复用官方 Grok CLI 登录(SuperGrok / X Premium OAuth)以使用 xai LLM 路由

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Gyanano/dsh-grok-auth#193728e84fac7677570ef3e5895b66a1c7b343a1
README兼容性版本

兼容性与来源证明

Grok Auth 以 dsh-grok-auth 发布,当前版本为 0.1.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.2stable
2026/8/22

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题
Grok Auth — DeepSeek Harness 插件(DSH Plugin)

相关插件

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

Doctor@linxin666/dsh-doctorDSH 配置档案的事务性救援模式,配备受监督的启动器、隔离的恢复容器、确定性修复、健康监控以及本地 Web 恢复控制台Mobiledsh-mobileDeepSeek Harness 移动端适配与安全访问插件,支持局域网、远程连接、Android App 和手机浏览器。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Auto Reviewdsh-auto-review针对 DeepSeek Harness 审批请求的第二模型 AI 自动审查:只读审查子代理在审批应答链上决定允许或拒绝,并采用故障关闭回退机制和完整的会话日志审计。

README

dsh-grok-auth

English | 中文

A self-contained DeepSeek Harness Grok Auth plugin. It reuses the xAI OAuth login maintained by the official Grok CLI (~/.grok/auth.json, or $GROK_HOME/auth.json) for:

  • the xai LLM route (Grok 4.x models over api.x.ai, paid for by the SuperGrok / X Premium subscription instead of an xai-… API key);
  • one native Grok Auth Settings section with login status, best-effort weekly credit usage, and both login flows.

⚠️ Unofficial channel — personal development only. The account-gated subscription surface (auth.x.ai public CLI client, cli-chat-proxy.grok.com billing) is unsupported, revocable, and may be rate-limited or changed without notice. Do not rely on it for production workloads.

Features

Shared Grok Login State

  • Uses one Host-only auth coordinator for every authenticated operation.
  • Resolves credentials through version-bound auth-file snapshots, a short-lived in-memory cache, and proactive refresh ahead of the ~6-hour token expiry.
  • Coalesces concurrent refreshes in-process and uses short cross-process lock sections before and after OAuth network I/O; a reply is persisted only while the refresh-token lineage still matches. The DSH lock lives on a plugin-owned sibling (auth.json.dsh.lock) because the official CLI keeps a persistent lock file of its own at auth.json.lock.
  • Tolerates auth-file field aliases across Grok CLI versions (key/access_token, refresh_token/refresh, expires_at/expires) and writes back the spelling the file already uses.
  • Sends no token value over the plugin-owned, loopback-only /grok-auth Connection RPC channel.

Two login flows, one authority

  • Browser login spawns the official grok login; the CLI owns the whole PKCE flow and writes its own auth file.
  • Device-code login runs RFC 8628 against auth.x.ai inside the Host (same public client id the CLI ships) and shows the user code and verification link right on the settings card — no CLI required, works on headless machines. Approved tokens are folded into the CLI's own document.

LLM route

The xai route wraps the installed pi-ai xai catalog provider (https://api.x.ai/v1, OpenAI-compatible protocols). The subscription OAuth access token is injected per request as the Bearer credential — the same construction pi-ai's own xAI subscription login uses. Wire protocols, tool calls, and streaming all remain provider-owned.

Live model discovery

The installed pi-ai catalog is a static snapshot pinned by the harness's pi-ai version, so newly released Grok models are missing until pi-ai upgrades. With liveModels on (the default), the plugin overlays the account's real GET api.x.ai/v1/models listing: chat models the catalog does not ship (grok-4.6, the grok-4.20 family, …) are synthesized from a curated catalog template with live context windows and pricing, and the route re-announces itself when the discovered set changes. Curated entries are never modified, and grok-imagine-* media models are skipped.

Weekly usage

The settings card shows a best-effort weekly credit snapshot from the Grok proxy backend:

GET https://cli-chat-proxy.grok.com/v1/billing?format=credits

A failure of any kind degrades to dashes; it never blocks login or requests.

Requirements

  • DeepSeek Harness 0.1.1-rc.1 or a compatible later 0.1.x release.
  • Node.js ^22.19.0 or >=24.0.0.
  • A SuperGrok / X Premium subscription.
  • Either the official grok CLI on PATH (run grok login once), or use the device-code login from the Grok Auth card.

Install a prebuilt release (recommended)

The release package includes prebuilt Host and browser bundles, so no install-time build permission is required:

dsh plugin --profile web add https://github.com/Gyanano/dsh-grok-auth/releases/latest/download/dsh-grok-auth-latest.tgz

To pin a specific version, use its versioned asset from the releases page, e.g. releases/download/v0.1.2/dsh-grok-auth-0.1.2.tgz.

Restart dsh web, open Settings, and select Grok Auth.

Install from GitHub source

dsh plugin --profile web add github:Gyanano/dsh-grok-auth

Git dependencies are built by the package's prepare script, and pnpm 10+ blocks that script until explicitly allowed — so the first run is expected to stop with ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED. (pnpm's own hint mentions onlyBuiltDependencies; dsh reads the allowlist from allowBuilds instead.) Add this to ~/.dsh/profiles/web/pnpm-workspace.yaml:

allowBuilds:
  dsh-grok-auth: true

then run the same command again. Only grant this permission after reviewing the source. For a reproducible install, pin a release tag or commit:

dsh plugin --profile web add github:Gyanano/dsh-grok-auth#v0.1.2

Install a tarball

git clone https://github.com/Gyanano/dsh-grok-auth.git
cd dsh-grok-auth
pnpm install
pnpm pack
dsh plugin --profile web add ./dsh-grok-auth-0.1.2.tgz

Restart dsh web, open Settings, and select Grok Auth.

Host configuration

The bundle patch activates one Host row:

RowExportPurpose
llm-grok-authdsh-grok-authShared auth coordinator and the xai LLM route

All fields are optional. Set llmEnabled: false to keep the shared Login State coordinator available without owning an LLM route:

FieldDefaultMeaning
llmEnabledtrueRegister the xai LLM route
authJsonPath'' → $GROK_HOME/~/.grok/auth.jsonGrok auth file
credentialRefGROK_OAUTH_TOKENValue-free reference shown by the card
refreshLeadMs300000Refresh lead time in milliseconds (the CLI's own default)
grokCommandgrokCLI command used for browser login and version probing
displayNamexAI Grok (subscription)Provider label in model selectors
baseUrl''Endpoint override; empty keeps the catalog's api.x.ai/v1
timeoutMs120000Request timeout in milliseconds (0 disables it)
liveModelstrueOverlay the installed catalog with the account's live model listing

Do not also add an xai entry under llm-pi-ai.providers; duplicate route ownership is rejected with an explicit diagnostic.

Security and limitations

  • Token values never enter the browser, settings, logs, session events, or tool metadata. Only Host-side requests receive authorization headers.
  • Status may include the account email and auth mode recorded by the CLI; these are identity/status facts, not credentials.
  • Refresh writes preserve unknown fields and atomically replace the auth file with owner-only (0600) permissions.
  • The status/login RPC channel is restricted to loopback authorities.
  • The official CLI does not participate in the plugin's writer lock; the guarantee is fail-closed recovery (lineage checks, newer-state adoption) rather than absolute cross-client serialization.
  • The public OAuth client id belongs to the official Grok CLI; xAI has not promised its long-term availability to third parties.

Development

pnpm install
pnpm run check

pnpm run build emits:

  • lib/index.js — Auth / LLM Host plugin;
  • lib/invariant.js — invariant companion;
  • lib/client.js — loader-compatible browser plugin with inline CSS Modules;
  • lib/types/** — declarations.

See the architecture decision.

Acknowledgements

Architecture modelled on dsh-codex-auth; the device-code flow mirrors pi-ai's own xAI OAuth implementation.