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.

Plugin Glm Balance — DSH Plugin for DeepSeek Harness
← Plugins
P

dsh-plugin-glm-balance

Plugin Glm Balance

DSH web plugin: GLM (bigmodel.cn) quota balance indicator beside the composer context meter, shown when the current provider is zai-coding-cn; token, provider id, and auto-refresh interval configurable in its own settings section.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:HoodyHuo/dsh-plugin-glm-balance#0c8b1904fae8b6332749cf9b7ab604a1b8dc79a4
READMECompatibilityVersions

Compatibility and provenance

Plugin Glm Balance is published as dsh-plugin-glm-balance and currently resolves to version 0.2.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
9/21/2026

Versions

0.2.0stable
9/21/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/21/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with a compact price glance card above the sidebar's Settings rowWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinCommandcode Provider@mars-sea/dsh-commandcode-providerUnofficial DeepSeek Harness LLM provider plugin for Command Code, ported from pi-commandcode-provider (MIT). Registers the 'commandcode' provider route with a Models-page card and live model catalog.Plugin Subscriptionsdsh-plugin-subscriptionsUse ChatGPT (Codex), Claude, Grok (X Premium), GitHub Copilot, and Google Antigravity subscriptions as DeepSeek Harness LLM providers, with OAuth login from the web Settings page

README

dsh-plugin-glm-balance

English | 中文

GLM (bigmodel.cn) quota balance indicator for the DeepSeek Harness web GUI.

A quota widget beside the composer's context meter — shown only when the session's current model provider matches the configured provider id (default zai-coding-cn).

Features

  • Two mini progress bars (hourly / weekly credit limits) with percentage and next-reset time, styled with the harness --dsw-* theme tokens (works with light/dark and third-party themes such as Dracula).
  • Polls on a configurable interval (default 30 minutes); click to refresh immediately, with a spinner while the request is in flight.
  • Right-click menu: open the usage page on bigmodel.cn, or refresh.
  • Auth-token states: no token / auth invalid (click shows how to fix) / upstream failure.
  • Its own "GLM Balance" settings section (Settings → GLM Balance) to paste the authorization header, configure the provider id, and set the auto-refresh interval.

Install

dsh plugin --profile web add dsh-plugin-glm-balance

Or straight from GitHub (no npm publish needed):

dsh plugin --profile web add https://github.com/HoodyHuo/dsh-plugin-glm-balance.git

Or install from source:

dsh plugin --profile web add E:\path\to\dsh-plugin-glm-balance

Restart dsh web afterwards (the host half registers proxy routes).

Update

git -C <repo-or-clone> pull                 # when installed from a clone
dsh plugin --profile web add https://github.com/HoodyHuo/dsh-plugin-glm-balance.git   # re-install = update

Then restart dsh web. The token file ~/.dsh/glm-balance.json is never touched by an update. See CHANGELOG.md for what changed in each version.

Configuration

The plugin proxies GET https://bigmodel.cn/api/monitor/usage/quota/limit through two same-origin host routes (avoiding browser CORS):

  • GET/POST /glm-balance/api/config — stored credentials
  • GET /glm-balance/api/usage — proxied quota query

The token persists in glm-balance.json under the harness home (~/.dsh/glm-balance.json by default):

{
  "authorization": "your bigmodel.cn authorization header value",
  "providerId": "zai-coding-cn",
  "refreshMinutes": 30
}

Edit the file, or use Settings → GLM Balance. No restart needed for token changes; the indicator picks them up on the next poll (or click).

Notes

  • The authorization value is whatever bigmodel.cn expects in the header — copy it from your browser's devtools request headers.
  • Quota unit mapping follows the observed API: 3 → hourly, 6 → weekly.
  • The token is stored in plain text inside the harness home, the same trust domain as the rest of the harness configuration.

License

MIT


DeepSeek Harness Web GUI 的 GLM(智谱 bigmodel.cn)套餐余额指示器插件。

在输入框上下文用量圆环旁显示额度条,仅当会话当前模型供应商匹配配置值 (默认 zai-coding-cn)时显示。

功能

  • 两条迷你进度条(5 小时 / 每周额度),含百分比与下次重置时间;颜色走 --dsw-* 主题 token,自动适配明暗与第三方主题(如 Dracula);
  • 可配置的自动刷新间隔(默认 30 分钟),点击立即刷新并显示加载动画;
  • 右键菜单:打开 bigmodel.cn 用量页面、刷新(点击其他位置关闭);
  • 认证状态提示:未配置 / 认证失效(点击提示修复方法)/ 获取失败;
  • 设置页独立分区「GLM 余额」:填写 authorization、供应商 ID 与自动刷新间隔。

安装

dsh plugin --profile web add dsh-plugin-glm-balance

或直接从 GitHub 安装(无需发布到 npm):

dsh plugin --profile web add https://github.com/HoodyHuo/dsh-plugin-glm-balance.git

或从源码安装(安装后需重启 dsh web,宿主半要注册代理路由)。

更新

git -C <克隆目录> pull          # 以克隆方式使用时
dsh plugin --profile web add https://github.com/HoodyHuo/dsh-plugin-glm-balance.git   # 重新安装即更新

然后重启 dsh web。更新不会触碰 token 文件 ~/.dsh/glm-balance.json。 各版本变更见 CHANGELOG.md。

配置

Token 存放在 harness 主目录下的 glm-balance.json(默认 ~/.dsh/glm-balance.json):

{
  "authorization": "bigmodel.cn 请求头里的 authorization 值",
  "providerId": "zai-coding-cn",
  "refreshMinutes": 30
}

可直接编辑该文件,或在 设置 → GLM 余额 分区填写;改完无需重启,下次轮询(或点击刷新)即生效。

说明

  • authorization 的值从浏览器 devtools 的请求头里复制;
  • 额度 unit 映射按实测 API:3 → 小时,6 → 每周;
  • token 以明文存于 harness 主目录,与 harness 其他配置同一信任域。

License

MIT