AlfredChaos/dsh-usage-panel

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

DeepSeek Harness 消耗统计插件:设置页Token用量KPI、半年活跃热力图、按模型堆叠柱状图与模型环形图(dsh-plugin)

项目介绍Project Overview

dsh-usage-panel 是 DeepSeek Harness 的只读使用统计插件,在网页端“Settings → Usage”页面展示 Token 用量。核心能力:通过 session-projection 增量聚合持久化日志,呈现累计计费、缓存命中率、活跃热力图、每日堆叠柱、Top 会话、Provider 与模型分布,并支持 JSON/CSV 导出。适用场景:需要审计、回顾或导出多模型/多 Provider 消耗的用户。注意事项:数据按 UTC 自然日分桶,热力图仅覆盖最近六个月。

dsh-usage-panel is a read-only statistics plugin for DeepSeek Harness, surfacing token usage under Settings → Usage in the web UI. Core capability: it incrementally aggregates persisted session logs via a session projection, presenting cumulative billing, cache hit rate, activity heatmap, daily stacked bars, top sessions, per-provider and per-model breakdowns, plus JSON/CSV export. Use it when auditing, reviewing, or exporting consumption across models and providers. Caveat: day buckets and exports follow UTC calendar days, and the heatmap covers only the last six months.

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

命令行安装CLI Install

dsh plugin --profile web add dsh-usage-panel

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

READMEREADME

dsh-usage-panel

Token usage statistics for DeepSeek Harness, shown as a page under Settings → Usage in the web GUI. The plugin aggregates persisted session logs (incrementally, via the session-projection mechanism) and never writes anything back.

简体中文 · npm npm downloads CI dsh-plugin Mentioned in Awesome DeepSeek Harness

dsh-usage-panel v0.2 demo: loading, KPI count-up, heatmap entrance wipe, hover tooltips and range switching

What it shows

  • Cumulative totals (all time) — billed input / output tokens, session count (with the grand total of session records and the main/subagent usage split beneath it), and the most-used model with its share.
  • Cache hit ratecache read ÷ (uncached input + cache read + cache write), with the read/write magnitudes.
  • Activity heatmap — the last six months in a GitHub-contribution layout (weeks as columns, weekdays as rows). Days are colored by quartile over non-zero usage.
  • Daily stacked bars — per-model token usage, switchable between the last 7, 14, or 30 days.
  • Top sessions — the 10 most token-hungry sessions with their folded titles, each tagged main or subagent by delegation depth.
  • Providers — per-provider token totals as horizontal bars (shown when more than one provider route is in use).
  • Model donut — all-time share per model, with the top 5 listed beside it; each row carries a per-model cache hit rate column, color-coded to its segment.
  • Export — full JSON, daily CSV and per-model CSV (formula-injection guarded, RFC 4180, UTF-8 BOM).

Hovering a bar, heatmap cell, or donut segment shows the exact breakdown:

Bar tooltip Overview (KPI + heatmap) Sessions & providers
Bar hover tooltip KPI cards and heatmap overview Session ranking and provider breakdown

Install

The plugin ships as a bundle: dsh plugin add appends it to the profile's bundle list, and the patch row activates the host half.

# from npm (recommended)
dsh plugin --profile web add dsh-usage-panel

# or from GitHub
dsh plugin --profile web add github:AlfredChaos/dsh-usage-panel

# or from a local checkout
dsh plugin --profile web add ./dsh-usage-panel

Restart dsh --profile web and open Settings → Usage. The npm package ships prebuilt JavaScript under lib/ with no install scripts; GitHub installs need no pnpm build allowance either, because the same files are committed to the repository. To remove it:

dsh plugin --profile web remove dsh-usage-panel

Where the numbers come from

The host half aggregates persisted session logs:

  • Primary path (incremental): a session projection (registered through ctx.sessionProjections, stateVersion-checked) folds every committed event into four disjoint buckets — uncached input, output, cache read, cache write — plus per-model, per-provider and per-day (UTC) maps. Checkpoints are durable, so restarts and keep-warm passes cost almost no replay.
  • Fallback path (full rescan): when the projection services are unavailable, the same reducer replays every session log through the read-only sessionQuery service.

Accounting rules: request/header and request/context events record the model (context base, header override); the step's assistant/message usage replaces streamed provisional usage (a retried same-step message never double-counts); llm/retry events are counted as retries, not tokens; compaction/summary usage is attributed to its own model and reported separately; reasoning tokens are already inside output and are never added again.

Fork dedup: events that precede the last session/end-seed marker (fork/resume/replay seed history) are never counted, so forked sessions do not double-bill their parents' usage.

Timezone declaration: day buckets and exports use UTC calendar days (YYYY-MM-DD); the heatmap subtitle declares the scope ("last 6 months · UTC").

Because nothing is written back, statistics survive restarts and cover sessions from before the plugin was installed.

Loading behavior

The first scan starts as soon as the plugin loads, so the page usually renders straight from cache. A payload is considered fresh for 10 minutes; older ones are returned immediately with a stale flag (the page shows "updating in background") while a rescan refreshes the cache. A keep-warm timer rescans every 10 minutes, and the refresh button always forces a synchronous scan. The browser additionally keeps the last successful payload in localStorage (versioned and structure-validated), so a page refresh renders instantly; a failed refresh keeps the cached numbers and says so instead of faking freshness.

Units

zh interface: 亿 (10⁸) and (10⁴); en interface: K / M / B.

Implementation

Source is TypeScript (strict) in src/, built with esbuild; the lib/ outputs are committed so installs need no build step.

File Role
src/host/index.tslib/index.js Host half (Cordis plugin): projection registration, aggregation, cached RPC with warm-up, fail-soft fallback
src/host/projection.ts Pure per-session projection reducer (four buckets, fork dedup, retry/compaction semantics, UTC days)
src/host/aggregate.ts Cross-session merge → overview payload
src/client/*lib/client.js Client half (./client export, __ModuleLoader__ bundle): settings-page UI in TSX, --dsw-* tokens, zh/en i18n
src/shared/contract.ts Host↔client wire contract (single source of truth)
cordis.patch.yml Bundle patch: inserts the usage-stats row into the profile composition

The host serves an overview endpoint through ctx.connection.rpc.handle('/usage-stats', …, { authority: 'loopback' }); the browser calls it via rpc.call('/usage-stats', 'overview', …). The overview carries coverage (session-record totals and the main/subagent usage split, shown beneath the sessions KPI), topSessions, providers, plus the v0.1.0-shaped days / totals / byModel / allTime. Developed against DeepSeek Harness 0.1.0-rc.6. Tests run on the Node built-in test runner (npm test); CI runs typecheck + build + test + the pack gate.

License

MIT

上一个 Prev dsh-forge 下一个 Next deepseek-harness-codex-bridge