精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
Calculate the real-time cost of DeepSeek API calls made by DeepSeek Harness.
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
Calculate the real-time cost of DeepSeek API calls made by DeepSeek Harness.
待人工精选——以下事实来自源码仓库。
Calculate the real-time cost of DeepSeek API calls made by DeepSeek Harness.
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:bobcat848/dsh-calculator 作者没有声明支持的平台。
GET /user/balance) - 第三方模型不计费 — only deepseek-official routes are billed; any other provider/model is listed as unbilled - 峰谷计价 — after 2026-08-17 the plugin automatically prices events by the Beijing peak/off-peak schedule (peak 09:00–12:00 & 14:00–18:00, off-peak = half price); before that date it uses the current flat rates - 中英文界面 — the panel follows your browser language (zh / en) --- ## 安装 DSH is a Cordis application. The plugin has a host half (event accounting + balance fetching) and a browser half (top-right overlay card). Install it into the web profile: ### 一条命令在线安装(推荐,无需克隆仓库) 直接在你的机器上执行(脚本会从 GitHub 下载插件文件并完成安装): bash # macOS / Linux curl -fsSL https://raw.githubusercontent.com/bobcat848/dsh-calculator/main/install.sh | bash # Windows PowerShell irm https://raw.githubusercontent.com/bobcat848/dsh-calculator/main/install.ps1 | iex ### 本地克隆安装 或者克隆仓库后运行脚本(安装脚本会自动识别本地模式,从仓库内复制文件): bash git clone https://github.com/bobcat848/dsh-calculator.git cd dsh-calculator # macOS / Linux bash install.sh # Windows PowerShell .\install.ps1 两种方式等价:都会把插件装进 ~/.dsh/profiles/node_modules/dsh-calculator 并在 ~/.dsh/profiles/web/cordis.patch.yml 追加 loader 行(幂等:重复执行安全, 已有行不会重复添加)。 ### 手动安装 bash # 1. copy the package into the profile's hoisted node_modules mkdir -p ~/.dsh/profiles/node_modules/dsh-calculator cp -r lib package.json ~/.dsh/profiles/node_modules/dsh-calculator/ # 2. append the loader row to the web profile patch (once) # edit ~/.dsh/profiles/web/cordis.patch.yml and add: # - insert: # - id: dsh-calculator # name: 'dsh-calculator' # config: {} ### 重启生效 Plugins are discovered at boot, so restart DSH web after installing (cordis.patch.yml 改动也会被 DSH 的用户层 HMR 热更新,通常无需重启): bash dsh web --port 3080 Open (or refresh) http://127.0.0.1:3080, and you should see the DeepSeek API 费用 card in the top-right corner; click × to collapse it into a pill, click the pill to expand it again. > v1.2.0 适配说明:DSH 0.1.0-rc.6 的布局不再提供 aside 插槽(右侧栏), > 浏览器半改为注入框架级 shell.overlay 插槽(右上角浮层卡片),并移除了 > 不存在的 ctx.layout.closeAside()。host 半(记账 + 余额端点 > /dsh-calculator)保持不变。 --- ## 配置 The plugin needs no configuration beyond your DeepSeek API key, which DSH already stores through its credentials service (the Models page writes it to ~/.dsh/.credentials.yaml as DEEPSEEK_API_KEY, or you can export it in the launching environment). The balance feature reads that same credential. If the key is missing, the balance card shows a friendly error and the cost panel keeps working. ## 计价口径 Rates are the official DeepSeek prices (CNY per 1M tokens): | 模型 | 缓存命中输入 | 缓存未命中输入 | 输出 | |---|---|---|---| | deepseek-v4-flash(当前价) | ¥0.02 | ¥1.0 | ¥2.0 | | deepseek-v4-pro(当前价) | ¥0.025 | ¥3.0 | ¥6.0 | | 2026-08-17 起(峰谷) | 高峰半价 | 高峰价 | 高峰价 | - 输出 token 包含推理 token,与普通输出同价 - 费用为估算值,与官方账单可能存在差异(缓存命中 token 量大时尤其明显) ## 数据来源 - 费用:host 半订阅 DSH 会话事件(assistant/message 的 usage + message.source),按 (provider, model) 记账;fork 子会话的拷贝事件按 message.id 全局去重,避免重复计费 - 余额:GET https://api.deepseek.com/user/balance(30 秒缓存) ## 卸载 bash rm -rf ~/.dsh/profiles/node_modules/dsh-calculator # 并从 ~/.dsh/profiles/web/cordis.patch.yml 删除对应 insert 行 ## 免责声明 本项目与 DeepSeek 官方无任何关联,价格与余额为接口实时数据,费用为估算。不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。