DSH Plugins Marketplace

DSH Plugins

Plugins

/

dsh-cost-guard

c

dsh-cost-guard

Discovered4

Live DSH cost estimates from actual token usage & configurable pricing. / 基于真实 Token 用量与可配置价格的 DSH 开销监控插件。

DSH Cost Guard — a diner discovers the cost while a blue-haired whale-maid presents the bill

Version Check License: MIT DSH plugin

dsh-cost-guard

Know what every DSH task costs while it runs. dsh-cost-guard is a local-only dynamic Cordis plugin for DeepSeek Harness that turns recorded token usage into a compact live cost HUD, per-model totals, and editable pricing.

It observes execution; it never blocks, reroutes, or changes the agent.

Visit the project website → — explore the HUD and pricing screenshots, switch between English and Chinese, and copy the installation prompt. Hosted on GitHub Pages, with automatic deployment from main. See website maintenance and publishing.

[!IMPORTANT] Token counts come from DSH usage events. Currency amounts are local estimates calculated from your configured rates, not authoritative billing data. Provider prices can change—always treat the provider invoice as the source of truth.

See it in action

One quiet HUD, all the useful numbers

The composer dock shows the current or most recent task, model, input/output/cache tokens, model-call count, task estimate, and session total without opening another panel.

Cost Guard idle HUD showing model, token usage, calls, and session total

Pricing and totals stay under your control

Edit model rates, add custom models, apply the official peak/off-peak schedule, inspect per-model totals, and export or import the configuration from Settings → Cost Guard.

Cost Guard settings with model pricing and session totals

The screenshots were captured from an earlier configured instance. Release v4.3.0 ships with the official DeepSeek V4 peak/off-peak schedule enabled by default and uses the current rates described below.

Why Cost Guard

  • Actual usage, not prompt-size guessing — reads inputTokens, outputTokens, cacheReadTokens, and cacheWriteTokens from DSH session events.
  • Live and glanceable — keeps task cost and token mix beside the composer where decisions happen.
  • Subagent-aware — rolls subagent usage into the active root-session turn.
  • Restart-resilient — replays persisted session events to rebuild historical totals when the plugin starts.
  • Pricing you can audit — all model rates and the peak/off-peak windows are visible and editable.
  • Bilingual UI — the HUD and settings page follow the DSH language setting (中文 / English) automatically.
  • Local-only — no telemetry, external service, account access, or API key collection.
  • Zero execution interference — no prediction gate, approval overlay, or model routing.

Quick start

Ask your DSH agent to install it

Paste this into a DSH conversation:

Install the dynamic Cordis plugin dsh-cost-guard from
https://github.com/chenzhiyong1994/dsh-cost-guard

Read docs/install.md in that repository and follow the online installation.
Before running it, use cordis_inspect_self and confirm both hasHostHalf and
hasClientHalf are true. Then activate it and report the installed plugin ID.

The agent fetches host.js and client.js, defines both halves, verifies the package, and activates it. No build step is required.

For the full online/offline prompt and update procedure, see Installation.

Requirements

  • DeepSeek Harness with the dynamic Cordis tools available.
  • DSH Web UI for the HUD and settings panel.
  • Tested against DSH 0.1.0-rc.6; internal APIs may change between DSH releases.

Pricing model

The v4.3.0 defaults match the official DeepSeek V4 peak/off-peak pricing that took effect on 2026-08-17 (verified against the DeepSeek API pricing page and the official announcement). Rates are CNY per 1M tokens, off-peak (valley) prices:

| Model | Input · cache miss | Output | Input · cache hit | | --- | ---: | ---: | ---: | | deepseek-v4-flash | ¥1.5 | ¥4.5 | ¥0.05 | | deepseek-v4-pro | ¥4.5 | ¥13.5 | ¥0.15 | | default fallback | ¥1.5 | ¥4.5 | ¥0.05 |

Peak hours are 9:00–12:00 and 14:00–18:00 Beijing time, billed at ×2 the off-peak price. Peak/off-peak pricing is on by default; toggle it and edit the windows from the settings page.

Cache-write tokens use the cache-miss input rate because the official table has no separate cache-write item. Legacy names are mapped for convenience: deepseek-chat → Flash and deepseek-reasoner → Pro.

How it works

flowchart LR
    A["agent/request<br/>capture model"] --> B["session/event<br/>record usage"]
    B --> C["Configured rates<br/>calculate estimate"]
    C --> D["Turn and model totals"]
    E["Startup replay<br/>persisted events"] --> D
    D --> F["Private Host RPC"]
    F --> G["Composer HUD<br/>Settings panel"]
  • Host half listens to agent/request and session/event, attributes usage to turns, rolls up subagents, and exposes private RPC handlers.
  • Client half registers the HUD in conversation.composer.dock and the configuration UI in settings.section.
  • Data flow stays inside the running DSH process. The plugin does not call a network endpoint.

Configuration

Open Settings → Cost Guard to manage:

| Section | Controls | | --- | --- | | Model pricing | Cache-miss input, output, and cache-hit input rates; custom models; restore defaults | | Peak/off-peak pricing | Official windows (9:00–12:00, 14:00–18:00 Beijing) at ×2; enabled by default | | Session totals | Settled tasks, estimated spend, exchange rate, and per-model totals | | Backup | Export or import the configuration as JSON |

The USD amount in the HUD is an approximate conversion using the editable CNY/USD rate. All UI text follows the DSH language setting (中文 / English).

Updating

Dynamic packages are replaced as a whole. Always submit both files when updating:

  1. Fetch the latest host.js and client.js.
  2. Run cordis_define with kind: "existing" and the installed plugin ID, providing both code.host and code.client.
  3. Run cordis_inspect_self; continue only when both halves are present.
  4. Run cordis_run in update mode.

Security and privacy

  • No outbound requests, telemetry, credential reads, or API key storage.
  • The Host observes DSH session usage events and replays persisted session events to reconstruct totals.
  • Imported configuration is validated before it replaces the active settings.
  • Review third-party plugin source before installing it, especially because DSH plugin interfaces are still evolving.

See SECURITY.md for reporting guidance.

Project layout

| Path | Purpose | | --- | --- | | host.js | Dynamic Cordis Host half | | client.js | Dynamic Cordis Web client half | | docs/install.md | Copy-paste online and offline installation prompts | | docs/index.html | Bilingual project homepage on GitHub Pages | | docs/website.md | Website preview, maintenance, and deployment | | scripts/check.js | Syntax and release-invariant checks | | CHANGELOG.md | Release history |

Development

npm run check

host.js and client.js are function-body fragments consumed by cordis_define, so the check compiles them with the JavaScript Function constructor instead of executing them as standalone Node.js programs.

Contributions are welcome—please read CONTRIBUTING.md. If the plugin saves you from token-bill surprises, consider starring the repository so other DSH users can find it.

Compatibility

This plugin depends on internal DSH services and UI slots (sessions, session/event, agent/request, conversation.composer.dock, settings.section, and private Host RPC). They are not guaranteed stable APIs. Include your DSH version when reporting compatibility problems.

License

MIT

Comments

Loading…

Similar plugins

dsh-token-billing

by 2006spy

DSH 实时 token 计费插件:官网人民币价直接计费、高峰/错峰自动切换、价格实时跟随官网、可视化自定义模型价格。Real-time token billing plugin for DeepSeek Harness (dsh web).

Tools & CapabilitiesTerminal & ClientsModels & ProvidersManifest valid

4

MIT

JavaScript

Sep 11, 2026

dsh plugin --profile web add dsh-token-billing

by Yvesgao

DSH 插件:回答前先预估 token 用量与 DeepSeek API 费用,回答后展示实际账单(Web 聊天内嵌行)

Tools & CapabilitiesManifest valid

3

MIT

JavaScript

Aug 30, 2026

dsh plugin --profile web add dsh-cost-estimate

by YZz-S

Community plugins for DeepSeek Harness (DSH) Web GUI: session token cost meter with official dynamic pricing, DeepSeek & Volcengine billing balance, and update checker. Plain JavaScript, no build requ

Tools & CapabilitiesModels & ProvidersManifest valid

3

MIT

JavaScript

Aug 15, 2026

dsh plugin --profile web add dsh-token-cost-meter

by Saikel-Orado-Liu

Cost tracking plugin for the DeepSeek Harness Web GUI — snapshot-anchored per-turn pricing, account balance, and live cost estimates.

Manifest valid

3

624/wk

MIT

TypeScript

Sep 10, 2026

dsh plugin --profile web add @gamegeek-saikel/dsh-cost-meter

by nonewind

Token usage & cost monitor for DeepSeek Harness — floating widget with multi-dimensional stats, time-series charts, auto-detected billing plans (Code/Token) and estimated spend.

Tools & CapabilitiesModels & ProvidersManifest valid

8

341/wk

MIT

JavaScript

Sep 7, 2026

dsh plugin --profile web add dsh-spend

by boNeXY226

DeepSeek Harness (dsh) 插件:/cost 查看每个会话花费 + 可拖拽的悬浮费用胶囊

Manifest valid

3

MIT

JavaScript

Aug 13, 2026

dsh plugin --profile web add dsh-cost-chip