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.

Quota Hub — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-quota-hub

Quota Hub

Unified real-time quota dashboard for DeepSeek Harness: OpenCodeGo windows, DeepSeek balance, OpenRouter credits, SiliconFlow and Moonshot balances in one collapsible panel — auto-detects configured credentials, no keys leave the host.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-quota-hub@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Quota Hub is published as dsh-quota-hub and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/8/2026

Versions

0.1.1stable
9/8/2026
0.1.0stable
9/1/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
567 kB
Files
11
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/8/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 models-usage.

Whale 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 editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.Ui Usage Billing@kenz1117/dsh-ui-usage-billingUsage billing dashboard for DeepSeek Harness: sidebar cost metrics plus a full dashboard modal, priced from a current multi-provider catalog with real usage aggregated from session logs.

README

dsh-quota-hub

English · 中文

Unified real-time quota dashboard for DeepSeek Harness.

One collapsible glass panel shows every provider quota/balance you care about — OpenCodeGo rolling/weekly/monthly windows, DeepSeek official balance, OpenRouter credits, SiliconFlow and Moonshot balances — refreshed on a timer, with a live health dot on the sidebar button. API keys stay on the host: the browser only ever receives parsed numbers.

Features

  • Auto-detect — built-in adapters appear as soon as the matching credential exists (OPENCODE_GO_API_KEY, DEEPSEEK_API_KEY, OPENROUTER_API_KEY, SILICONFLOW_API_KEY, MOONSHOT_API_KEY in DSH credentials / env). Unconfigured providers show collapsed as “未配置”.
  • Collapsible & compact — every provider card collapses to one line; “全部收起/展开” in one click; auto-refresh with per-card updated time.
  • Health colors — sidebar dot and progress bars turn green (>50% left), yellow (20–50%), red (<20%).
  • Custom providers — any HTTP endpoint with JSON quota fields can be added in ~/.dsh/dsh-quota-hub.json (dot-path field extraction).
  • Host-side only — all fetching happens in a host service; keys never cross the browser boundary.

Install

dsh plugin --profile web add dsh-quota-hub

Restart DSH afterwards. The 💰 额度 button appears in the sidebar footer.

Custom providers

~/.dsh/dsh-quota-hub.json:

{
  "refreshMs": 120000,
  "providers": [
    {
      "id": "my-relay",
      "label": "My Relay",
      "url": "https://relay.example.com/v1/usage",
      "credential": "MY_RELAY_API_KEY",
      "fields": [
        { "key": "used", "label": "已用", "path": "usage.used", "unit": "USD" },
        { "key": "percent", "label": "用量", "path": "usage.percent", "percent": true }
      ]
    }
  ]
}

credential names a DSH credential/env var (Bearer auth). Or drop credential and put a static headers object on the entry instead — note that stores the token in the config file in plain text.

How it works

Host: a top-level quotaHub Remote service resolves each adapter's credential via ctx.credentials, fetches the provider endpoint (10 s timeout, refreshMs cache, shared in-flight requests), and returns normalized snapshots. Client: the panel double-unwraps the transport envelope exactly like the core messageFeedback remote and renders provider cards.

License

MIT

Acknowledgements

Built for the DeepSeek Harness plugin ecosystem — thanks to the community on LINUX DO for feedback and testing.