BeiZi6/dsh-opencodego-usage 预览 preview

BeiZi6/dsh-opencodego-usage

插件Plugin 原生Native ⭐ 7 MIT Web 界面Web UI

DSH Web GUI插件:OpenCodeGo配额呼吸灯 + 液态玻璃面板,带滚动/每周/每月进度条(作者:徐远山)

项目介绍Project Overview

为 DSH Web GUI 打造的 OpenCodeGo 剩余额度监控插件。输入框右下角的呼吸指示器按最低余量比例变色:>50% 绿、20–50% 黄、<20% 红,3.6 秒慢呼吸动画;点击展开液态玻璃面板,展示近 5 小时、近 7 天、近 30 天三个窗口的进度条、已用/剩余量与重置时间,每 2 分钟自动刷新。API Key 自动读取 DSH 凭据(仅 opencode-go 提供商生效),面板内也可临时手动覆盖。需 Node.js ≥ 22.19。

A DSH Web GUI plugin that monitors OpenCodeGo remaining quota. A breathing indicator at the bottom-right of the input box shifts color by the lowest remaining share across three windows (>50% green, 20–50% yellow, <20% red) with a 3.6 s breathing animation. Clicking opens a liquid-glass panel showing rolling (≈5 h), weekly (≈7 d), and monthly (≈30 d) progress bars, used/remaining amounts, and reset times, refreshing every 2 minutes. The API key is auto-resolved from DSH credentials when the provider is opencode-go, with a per-session manual override. Requires Node.js ≥ 22.19.

或使用命令行安装(适合开发者)Or use CLI install (for developers)

命令行安装CLI Install

dsh plugin --profile web add github:BeiZi6/dsh-opencodego-usage

BeiZi6/dsh-opencodego-usage 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

dsh-opencodego-usage

English · 简体中文

OpenCodeGo quota monitor for the DeepSeek Harness (DSH) Web GUI: a breathing indicator at the bottom-right of the input box shows your remaining quota at a glance; click it to open a liquid-glass panel with per-window progress bars and reset times.

Features

  • 🟢🟡🔴 Breathing indicator — color-coded by remaining quota (>50% green, 20–50% yellow, <20% red) with a gentle 3.6 s breathing animation
  • 📊 Three-window progress panelrolling (≈ last 5 h), weekly (≈ last 7 d) and monthly (≈ last 30 d) bars with used · remaining amounts and a reset time for each window
  • 🔑 Zero-config key handling — reads your API key from DSH credentials automatically (only when the provider is opencode-go); an in-panel override is available
  • 🪟 Liquid-glass panel — mouse-follow highlight, frosted blur and a window-style diagonal open animation
  • Auto-refresh — fetches fresh quota every 2 minutes

Installation

Requires DeepSeek Harness with the web profile enabled. Install from the official registry:

dsh plugin --profile web add github:BeiZi6/dsh-opencodego-usage

Restart dsh web for the plugin to take effect.

To remove:

dsh plugin --profile web remove dsh-opencodego-usage

Usage

  • The indicator sits at the bottom-right of the conversation input; its color reflects the lowest remaining share across the three windows:

    Remaining share Color
    > 50% 🟢 green
    20–50% 🟡 yellow
    < 20% 🔴 red
  • Click it to expand the panel:

    • rolling — quota used in roughly the last 5 hours
    • weekly — quota used in roughly the last 7 days
    • monthly — quota used in roughly the last 30 days
  • Each window shows the used percentage, the remaining share and the exact reset time.

  • A manual API key override can be entered in the panel for the current session; clearing it falls back to automatic resolution.

  • Data refreshes automatically every 2 minutes.

API key resolution

The plugin looks for a key in this order:

  1. Manual override entered in the panel (kept in a small state file under $DSH_HOME; the path can be moved with the OCG_STATE_PATH environment variable)
  2. DSH credentials — only when the active provider is opencode-go, the credential referenced by llm-pi-ai.providers.opencode-go.apiKeyEnv is resolved
  3. Process environment
  4. The state file

The key is only ever sent to the official OpenCodeGo quota endpoint over HTTPS.

How it works

  • Host half (index.js) — registers a same-origin route /opencodego-usage on the DSH web server. The route queries the official OpenCodeGo quota API (GET https://opencode.ai/zen/go/v1/usage, Bearer auth) and parses the window data:

    { "usage": { "rolling": { "status": "ok", "percent": 86, "resetsAt": "…" },
                  "weekly":  { "status": "ok", "percent": 34, "resetsAt": "…" },
                  "monthly": { "status": "ok", "percent": 17, "resetsAt": "…" } } }
    

    Older used / limit numeric pair shapes are tolerated as well.

  • Client half (client.js) — a web-shell module registered into the conversation.input.right slot; it polls the same-origin route every 2 minutes and renders the indicator and the panel.

Known limitations

  • The state file only stores a manually overridden key; deleting it never affects credential-based resolution.
  • Quota values and reset times are reported by the OpenCodeGo API as-is — no local estimation.

Compatibility

  • DeepSeek Harness Web GUI (dsh web)
  • Node.js >= 22.19
  • Peer dependencies: @deepseek-ai/cordis (^4), @deepseek-ai/dsh-host-webserver (^0.1.0-rc.6)

License

MIT © Xu Yuanshan

Links

中文简介

为 DSH Web GUI 打造的 OpenCodeGo 剩余额度监控插件:输入框右下角呼吸灯(>50% 绿 / 20–50% 黄 / <20% 红,3.6 秒慢呼吸),点击展开液态玻璃面板——近 5 小时 / 近 7 天 / 近 30 天三窗口进度条与重置时间,每 2 分钟自动刷新;API Key 自动读取 DSH 凭据(仅限 opencode-go 提供商),也可在面板内手动覆盖。

上一个 Prev dsh-plugin-pack-web 下一个 Next dsh-desktop-safe-market