Usage dashboard for DeepSeek Harness with model, provider, workspace, token, cache, balance, aliases, and CSV insights.
Install
# from a prebuilt release tarball
dsh plugin --profile web add "https://github.com/ParticleLight/dsh-all-usage/releases/download/v1.0.4/dsh-all-usage-1.0.4.tgz"
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:ParticleLight/dsh-all-usage
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
This plugin publishes its README in Chinese only.
中文
DeepSeek Harness 全量用量看板:按模型、供应商、工作区和时间范围分析 Token、缓存与账户余额。
功能
- 热力图:53 周使用热力图;按工作区筛选并查看每日回合与 Token 明细
- 模型统计:支持混合查看、按模型合并、按供应商汇总三种维度,展示调用次数、各类 Token 与缓存命中率
- 摘要与工作区:Token 用量、缓存命中、账户余额、连续使用、工作区 Token 分布和明细
- 导出:按当前时间范围和模型聚合方式导出 CSV
- 时间范围:今日、近 30 天、近 90 天、全部
- 工作区别名:在侧栏入口打开看板后管理,持久化保存到 $DSH_HOME/storages 的 KV 单元
all-usage-aliases - 界面语言:在看板顶部切换中文与 English;选择会保存到浏览器本地
截图 / Screenshots


安装
本插件是标准的 DSH 社区插件包(声明 dsh.bundle manifest 与 Web Client),数据全部来自持久化会话日志,安装后自动回填历史。
官方插件命令(推荐)
dsh plugin --profile web add github:ParticleLight/dsh-all-usage
安装命令会装配 bundle;随后刷新浏览器页面以加载 Client,无需手动修改 profile。若当前 DSH 版本未动态装配新包,请按 DSH 的提示重载包或重启进程。
手动注册(本地包)
把本目录放入任意位置,并在 $DSH_HOME/profiles/node_modules/ 下创建指向本目录的符号链接(Windows 用 junction):
New-Item -ItemType Junction -Path (Join-Path $env:DSH_HOME 'profiles/node_modules/dsh-all-usage') -Target '<本目录绝对路径>'在 $DSH_HOME/profiles/web/cordis.patch.yml 添加一行:
- insert: - id: all-usage name: dsh-all-usage
用户 patch 层会被热重载:保存后刷新页面即可。
架构
- Host 端(
lib/index.js):扫描持久化会话日志聚合用量(turn/end+assistant/message.usage),监听session/event实时折叠;通过webServer服务注册数据路由:GET /api/all-usage— 统计快照GET /api/all-usage/balance?force=1— 账户余额(复用llm-deepseek的 API Key 配置)POST /api/all-usage/alias— 设置工作区别名
- Client 端(
lib/client.js):window.__ModuleLoader__工厂格式的浏览器 bundle,注册侧边栏「用量统计」入口(sidebar.footer.action槽位)。所有 API 仅接受本机 loopback 请求并拒绝显式跨域请求;余额读取与别名写入还要求插件启动时生成、仅在当前进程有效的令牌(余额 GET 兼容浏览器省略 Origin)。英文模式的日期分桶、范围筛选、连续使用、热力图和导出时间统一按 UTC;中文模式按本地时区。
数据说明
- 使用次数与 Token 全部来自 DSH 持久化会话日志,插件激活时会自动回填全部历史,插件卸载/重启后数据不丢
- 同一会话的同一
turn / step只保留一份最终 usage;重试或替换消息会替换旧贡献,不重复累计 - 看板中的总处理量 = 输入 + 输出 + 缓存读写 + 推理;缓存命中表示复用的上下文 Token,不等于新生成 Token 或实际费用
- 余额查询走 DeepSeek 官方
/user/balance接口;未配置 API Key 时卡片显示引导文案 - 仅统计能归属到已注册工作区(按会话 cwd 匹配)的会话
开发
- 修改
lib/client.js后刷新页面即可;修改lib/index.js后,需由 DSH 重载该包或重启进程,单纯刷新页面不会替换已运行的 Host 代码 - 插件包无第三方依赖:Host 端只使用 Cordis 服务,Client 端只使用 runtime 提供的 React 模块
English
A full usage dashboard for DeepSeek Harness. Analyze tokens, cache behavior, account balance, and activity by model, provider, workspace, and time range.
Features
- Heatmap: a 53-week activity heatmap with workspace filters and daily turn/token details
- Model analytics: mixed view, model-merged view, and provider summary with calls, token categories, and cache hit rate
- Summary and workspaces: processed tokens, cache hits, account balance, usage streaks, workspace distribution, and details
- CSV export: export data using the selected time range and aggregation mode
- Time ranges: today, last 30 days, last 90 days, or all time
- Workspace aliases: manage aliases from the sidebar dashboard; values persist in the $DSH_HOME/storages KV cell
all-usage-aliases - Interface language: switch between Chinese and English from the dashboard header; your choice persists locally in the browser
Installation
This is a standard DSH community bundle. It declares a dsh.bundle manifest and a web client, and backfills its data from persisted session logs after installation.
Official plugin command (recommended)
dsh plugin --profile web add github:ParticleLight/dsh-all-usage
The installation command assembles the bundle. Refresh the browser page to load the client; no manual profile edits are required. If your DSH version does not dynamically assemble newly installed packages, use its supported package reload or restart the process.
Manual local registration
Place this directory anywhere and create a symlink to it under $DSH_HOME/profiles/node_modules/ (use a junction on Windows):
New-Item -ItemType Junction -Path (Join-Path $env:DSH_HOME 'profiles/node_modules/dsh-all-usage') -Target '<absolute plugin path>'Add this entry to $DSH_HOME/profiles/web/cordis.patch.yml:
- insert: - id: all-usage name: dsh-all-usage
The profile patch layer hot-reloads; save the file and refresh the page.
Architecture
- Host (
lib/index.js): aggregates persisted session logs (turn/endandassistant/message.usage), folds livesession/eventupdates, and exposes data routes throughwebServer:GET /api/all-usage— usage snapshotGET /api/all-usage/balance?force=1— account balance using the configuredllm-deepseekAPI keyPOST /api/all-usage/alias— update workspace aliases
- Client (
lib/client.js): awindow.__ModuleLoader__browser bundle that registers the “Usage statistics” sidebar entry through thesidebar.footer.actionslot. All API routes accept loopback requests and reject an explicit cross-origin Origin; balance reads and alias writes also require a process-scoped token generated when the plugin starts (the balance GET tolerates browsers omitting Origin).
Data semantics
- All calls and tokens come from persisted DSH session logs; historical data is backfilled when the plugin activates and survives reloads or uninstall/reinstall cycles
- For each session and logical
turn / step, only the final usage contribution is kept; retries or replaced messages do not double-count - Processed tokens = input + output + cache read/write + reasoning; a cache hit means reused context, not newly generated tokens or actual cost
- Balance data comes from DeepSeek’s official
/user/balanceendpoint; the card shows guidance when no API key is configured - English mode uses UTC for date buckets, range filters, streaks, heatmap dates, and export timestamps; Chinese mode uses local time
- Only sessions that can be mapped to a registered workspace by their working directory are included
Development
- After editing
lib/client.js, refresh the page. After editinglib/index.js, reload the package through DSH or restart the process; a page refresh alone cannot replace running host code - The plugin has no third-party package dependencies: the Host uses Cordis services and the Client uses the runtime-provided React module
License / 许可证
MIT
Links
More in this category
bowenliang123/dsh-context★ 249
DSH context insight panel: Context dashboard + /context command + Context browser — one-stop context lifecycle management with categorized composition, content details, evolution trends, compaction/injection events, and stats.
zh667/TokenLedger★ 95
Sidebar usage panel that attributes tokens to the relay site that served each request, read from your existing provider config: today/month/all-time totals, per-site and per-model breakdowns, a year activity heatmap, and New API / Sub2API / DeepSeek balances.
Han-1413141/dsh-cost-meter★ 90
Per-session and daily API cost, budget with usage %, official balance, history dashboard, and one-click official price sync with peak/off-peak pricing.
Ychris12138/dsh-usage-stats★ 68
Multi-provider usage dashboard with provider/model token breakdowns, calendar drill-downs, account balances, and OpenCode Go / Z.ai subscription quota tracking.
feibi-mochi/deepseek-harness-control-center★ 31
DeepSeek Harness control center for official balance monitoring, per-session costs and tokens, third-party token totals, completion alerts, official recharge, flexible layouts, and agent-assisted session controls.
zhu168/dsh-save-money#plugin★ 31
Pause and resume tasks automatically during user-defined time windows to avoid peak-hour API costs; includes account balance display and 10-minute granularity spend bar chart.