在用户自定义时间窗口内自动暂停长任务与模型请求,让 DeepSeek 等分时计价 API 高峰时段零扣费;支持余额显示与 10 分钟粒度消费柱状图。
ⓘ 此插件是大仓库 zhu168/dsh-save-money 的子包,星数与活跃度统计的是整个仓库。
- 语言
- JavaScript
- License
- MIT
- 分支
- main
安装
$ dsh plugin --profile web add github:zhu168/dsh-save-money/plugin在终端中运行以上命令,通过 dsh CLI 安装此插件。可在右上角切换 Profile。 第一次用 dsh?看这篇新手教程
对话式安装
帮我安装 DeepSeek Harness 插件 zhu168/dsh-save-money/plugin:先查看仓库 https://github.com/zhu168/dsh-save-money.git 确认安全性,然后执行安装命令并验证插件加载成功。
把这段指令粘贴给 DSH Web GUI 里的助手,由它代你完成安装与验证。
一句话定位
在用户自定义的时间窗口内自动暂停正在运行的 DSH 长任务与所有向模型的请求,窗口结束后自动恢复,让 DeepSeek 等分时计价 API 在高峰时段不产生任何费用;并附带可选的官方账户余额显示与近 8 小时消费柱状图。
核心能力
- 自定义多组暂停 / 继续窗口,支持跨午夜(如 23:00–08:00)与按星期过滤
- 到点自动暂停:正在运行的任务被安全"冻住"(进度原样保留),窗口结束自动恢复,没有任务在跑就不暂停
- 请求层闸门:暂停期间 AI 不向模型服务发出任何新请求,零扣费,手动交互始终放行
- 按模型档位决定是否省钱:官方 flash / pro、opencode flash / pro 共 4 个独立开关;无法识别的模型(旧名
chat/reasoner、第三方等)一律豁免 - 一次性"结束本次省钱模式"按钮:只跳过当前暂停窗口,"启用"总开关不受影响,下个窗口照常生效
- 顶部浮动横幅(即将暂停浅黄 / 已暂停浅红)+ 会话头部常驻彩色状态文字(颜色随状态实时变化),10 种语言 UI(zh / zh-TW / en / de / fr / es / it / pt / ja / ko,自动跟随浏览器)
- 可选 DeepSeek 官方账户余额显示 + 近 8 小时每 10 分钟粒度的消费柱状图(外部消费以警示色区分)
- 配置持久化到工作区
save-money.config.json,卸载 / 重装 / 重启不丢失;首次安装自动写到仓库目录而非污染 DSH 安装目录
技术实现
- 语言: TypeScript(源),构建产物为 ESM JavaScript(
scripts/build.js把src/*.ts内联成单文件plugin/index.js与plugin/client.js) - 关键依赖:
@deepseek-ai/dsh-client-ui-primitives(运行时探测,缺失时回退自绘按钮);DSH 内置服务(timer/slots/agents/goals/fs/sandboxPolicy/webServer/tools/credentials/settings/subprocess);无第三方运行时依赖 - 架构模式: dual-half 宿主插件(Host + Client),源码 → 官方 bundle 三种安装形态同源(
--patchoverlay / tgz bundle / link+HMR)- Host 半边 (
src/host.ts):通过ctx.on('llm/stream', ...)在请求层拦截所有模型调用(闸门),通过ctx.get('goals')+ctx.get('agents')冻结/恢复长任务,ctx.timer.interval每 30 秒驱动状态机(NORMAL → WARN → PAUSED),动态子模块src/config.ts/src/state.ts/src/host-goals.ts/src/balance-host.ts/src/gate.ts/src/host-tools.ts/src/host-http.ts在构建时内联 - Client 半边 (
src/client.ts):注入conversation.session.header.utilities槽(唯一常驻入口:彩色状态文字)+settings.section槽(系统设置"省钱插件"分节)+shell.overlay(浮动横幅);i18n 来自src/i18n/*.ts(10 个语言字典在构建时内联) - 挂载声明:
plugin/package.json#dsh.bundle.patch(cordis overlay)+plugin/cordis.patch.yml(插入插件行id: save-money)
- Host 半边 (
- 入口文件: Host 入口
src/host.ts(导出{ inject: ['timer'], apply(ctx) {...} },构建产物plugin/index.js);Client 入口src/client.ts(构建产物plugin/client.js);构建脚本scripts/build.js(TS → JS)+scripts/make-plugin.js(生成官方 bundle);快速试用 overlaycordis.patch.yml
适用场景
当用户在 DSH 中使用 DeepSeek 等有峰谷分时计价的模型服务,且希望高峰时段(北京时间 09:00–12:00、14:00–18:00)零扣费时:本插件到点把任务冻住、闸门合上、请求彻底不发;窗口结束自动恢复,对话与任务进度原样保留。也可推广到任何"某个时间段不想让机器干活"的场景(自定义电价、自定义带宽错峰)。同时希望看到最近 8 小时每 10 分钟的官方账户消费粒度,用于核对账单与其他设备的消费归因。
前置依赖与兼容性
| 依赖 | 最低版本 | 说明 |
|---|---|---|
| DeepSeek Harness (DSH) | 未声明 | 插件未在 manifest 中显式声明 DSH 最低版本;采用标准 ctx.on('llm/stream') + ctx.timer + ctx.get(...) 注入模式,需 DSH 官方插件形态支持(典型为 0.1.0-rc.6 及以上) |
| Node.js | 未声明 | 仓库内 package.json / plugin/package.json 均未声明 engines.node;package-lock.json 中唯一的 engines 字段来自 typescript 开发依赖(>=14.17) |
| 平台 | 跨平台 | 不引入原生模块;配置落盘走 DSH fs 服务(兼容 Node node:fs),余额历史走 ~/.dsh/ |
| 原生模块 | 无 | 不依赖 node-pty / node:sqlite 等原生绑定 |
安装方式
dsh plugin --profile web add github:zhu168/dsh-save-money/plugin
配置项
所有配置均可在 DSH 设置 → 省钱插件 或会话头部"省钱 · 🟢"状态文字展开的浮层里可视化编辑;以下字段同时可通过 AI 工具 save_money_configure 编程式修改(节选自 src/config.ts:26-58、src/host-tools.ts:31-66,变更后即时校验、自动落盘):
| 配置 | 类型 | 说明 | 默认值 |
|---|---|---|---|
enabled | boolean | 总开关:勾选后到点自动暂停、取消勾选立即恢复所有窗口 | false |
timezone | string(IANA 时区名) | 时间窗口使用的时区;浏览器首次启动自动探测,失败回退北京时间 | Asia/Shanghai |
warnMinutes | number | 距下个窗口还有多少分钟时进入"即将暂停"WARN 状态、显示浅黄横幅 | 5 |
windows | array | 暂停 / 继续窗口列表,每项为 { pauseAt, resumeAt, days?, timezone? }(HH:mm 字符串,days 为 1-7 数组表示周一到周日) | [] |
reconcileOnStart | boolean | 启动时若发现仍在暂停中的目标,是否自动恢复(避免重启后永远冻住) | true |
lang | enum | 界面语言:auto(跟随浏览器) / zh / zh-TW / en / de / fr / es / it / pt / ja / ko | auto |
showBalance | boolean | 在会话头部状态文字旁显示 DeepSeek 官方账户余额(仅官方 API 调用后才会显示) | false |
modelApply.official-flash | boolean | 暂停窗口内是否暂停官方 DeepSeek flash 模型(勾选 = 暂停省钱) | true |
modelApply.official-pro | boolean | 暂停窗口内是否暂停官方 DeepSeek pro 模型 | true |
modelApply.opencode-flash | boolean | 暂停窗口内是否暂停 OpenCode Go / Zen 的 flash 模型 | false |
modelApply.opencode-pro | boolean | 暂停窗口内是否暂停 OpenCode Go / Zen 的 pro 模型 | false |
常见问题
Q: 这个插件和 DSH 自带的"预算 / 费用"功能有什么区别?
A: 官方费用工具是被动记账、给"超支提醒";本插件是主动把闸门合上——到点不向模型发请求、不产生任何费用,并把正在运行的任务"冻住"等窗口结束再继续。
Q: 安装之后页面上看不到"省钱"状态文字怎么办?
A: 必须完全重启 DSH(Ctrl+C 停掉再启动)并强制刷新浏览器(Ctrl+Shift+R)——界面在启动时挂载。v1.2.5 之前的构建存在"启用勾不上 / 设置点不动"问题,请升级到最新版本。
Q: 暂停期间 AI 不回复是 bug 吗?
A: 不是 bug,是预期行为。暂停窗口内的设计就是"不发请求、不产生费用",运行中的任务被冻结、对话上下文保留;窗口结束自动全部恢复,或点「结束本次省钱模式」立即恢复。
Q: 配置文件存在哪里?卸载后会不会丢失?
A: 配置自动落到工作区的 save-money.config.json(已 .gitignore)。位置按 6 级候选自动解析:指针文件 ~/.dsh/save-money-config-path.json > 当前会话工作区 > 名为 dsh-save-money 的会话工作区 > DSH 启动目录 > 启动目录的同级 dsh-save-money 目录 > sandboxPolicy.workspaceRoot。卸载 / 重装不会动它,删除该文件即恢复默认。
Q: 「结束本次省钱模式」会把总开关关掉吗?
A: 不会。这个按钮是一次性的内存态操作,只结束当前触发的这一个暂停窗口;下一次窗口(今天或以后)照样生效,持久化的"启用"开关不会被改。想关掉所有窗口的省钱模式,手动取消勾选「启用」即可。
Q: 余额显示只支持 DeepSeek 官方吗?
A: 是的。余额与消费统计仅在最近一次模型请求跑在官方 DeepSeek 上时显示;其他厂商(硅基流动、中转等)的 Key 不会出现余额。余额历史按 API Key 指纹保存到 ~/.dsh/dsh-save-money-balance.json,换 Key 自动作废旧历史。
Q: 「一键 DeepSeek 分时计价策略」会自动启用吗?
A: 不会。一键策略只会把高峰窗口去重追加进配置(北京时 08:58–12:02、13:58–18:02,提前 2 分钟 / 延后 2 分钟留余量),「启用」开关需用户自己勾选——由你决定。
Q: 如何卸载?
A: dsh plugin --profile web remove dsh-save-money,然后重启 DSH。配置文件 save-money.config.json 与余额历史 ~/.dsh/dsh-save-money-balance.json 不会被删除,需要彻底清除可手动删除。
上手难度
入门 — 一行命令安装 + 重启 DSH + 在会话头部点开状态文字展开浮层勾选「启用」即可使用;进阶处是按需调整时间窗口、模型档位开关与时区。
已知问题与限制
- 安装 / 升级后必须完全重启
dsh web(Ctrl+C 停掉再启动)并强制刷新浏览器(Ctrl+Shift+R)才能看到界面,只刷新页面不会重新装载服务端插件(README.zh.md:298-306) - 余额与消费统计仅支持 DeepSeek 官方 API:其他厂商(硅基流动、中转等)的 Key 不会出现余额与柱状图(src/balance-host.ts:88-130)
- 暂停窗口期间 AI 不回复是预期行为,但可能让用户误判为"AI 卡住了";需配合横幅与状态文字的颜色变化判断当前是 NORMAL / WARN / PAUSED 中哪一种
- 任何无法识别的模型(旧名
chat/reasoner、其他第三方等)一律豁免暂停:如果你故意用旧名调用,会跳过闸门放行(src/host-tools.ts:33 / README.zh.md:28) - 配置文件自动落到工作区,但首次安装若当前目录是 DSH 安装目录,插件会优先写到仓库目录并通过
~/.dsh/save-money-config-path.json指针记录,避免污染 DSH 安装目录(src/config.ts:118-185) - v1.2.2 之前的构建存在
harness is not defined报错、v1.2.4 之前存在界面加载不全、v1.2.5 之前存在"启用勾不上"问题——务必升级到最新版本(README.zh.md:298-306) - 插件未在 manifest 中显式声明 DSH 与 Node.js 最低版本要求;升级 DSH 大版本后建议先验证兼容
Save-money plugin for DSH (DeepSeek Harness) — define your own "pause / resume" time windows; at pause time running long tasks are paused (not stopped) automatically, and they resume when the window ends. Built for LLM API peak/off-peak pricing (e.g. DeepSeek peak hours 9:00–12:00, 14:00–18:00 Beijing time, off-peak at half price), and equally useful for time-of-use electricity rates, bandwidth off-peak shifting, or any "I don't want the machine working during this period" scenario.
Status: ✅ Implemented, continuously maintained. 中文版
Interface

The colored status text in the top-right of the session header (Save · ⚪/🟢/🟡/🔴, color follows the state) is the single persistent entry — click it to open the settings popover. When a pause is upcoming or active, a reminder banner appears at the top of the page (with the End this save mode button).
With "Show balance" enabled, your official DeepSeek account balance appears next to the status text; clicking the balance opens the last-8-hours spend bar chart:

Each bar is a 10-minute window: the X axis shows whole-hour ticks, the Y axis key-point amount ticks (≤5, with gridlines), and hovering shows each window's exact time range and amount. Windows where the balance dropped without any local activity are marked in warning color (changes may come from another device).
Features
- Multiple time windows: add / remove pause-resume windows freely; supports midnight-crossing windows (23:00–08:00) and per-weekday filtering;
- Automatic pause on schedule: when the pause time arrives, running tasks are safely "frozen" (their progress is preserved exactly — nothing is interrupted or lost) and resume automatically when the window ends; if nothing is running, nothing is paused;
- No requests during the window (the saving core): inside a pause window the AI sends no new requests to the model service, so no cost is incurred; after the window ends (or on disable / end-this-window) everything resumes, with conversation context and in-flight tasks unaffected. The AI not replying inside a window (including new conversations) is expected — to resume right away, click the End this save mode button (takes effect directly, no AI involved);
- Per-model-tier save mode: decide per model tier which ones pause during windows. The settings panel shows two compact rows — Official API: flash / pro and opencode go·zen API: flash / pro — four toggles total. Checked = paused (saving money); unchecked = exempt (requests flow even during a window). Defaults: official flash + pro checked, opencode exempt; your changes are persisted and never reset. Any unrecognized model (legacy
chat/reasonernames, other third parties, anything else) is always exempt — it can never block your requests; - End this save mode (one-shot, current window only): the banner and settings-popover button end the currently active pause window only — if paused, tasks resume immediately and the gate opens; if a pause is upcoming, it is cancelled. The window is skipped until its resume time, then the state clears automatically. The next window (today or later) still takes effect, and the persistent Enable flag is never touched, so you cannot accidentally leave the feature disabled;
- UI reminders: top floating banner (light yellow for upcoming pause / light red for paused, with the End this save mode button) + the single persistent session-header entry (next to the Session log, "Save · 🟢 Working" colored status text; click to expand settings), colors follow the state in real time;
- Timezone support: IANA timezone dropdown, browser auto-detection with Beijing time (+8) fallback; UTC projection checked (Beijing 09:00 == UTC 01:00);
- One-click DeepSeek preset: dedupe-append the peak windows (08:58–12:02, 13:58–18:02, with a 2-minute boundary margin — pause 2 min early, resume 2 min late); it does not auto-enable — your call; legacy no-margin windows are upgraded automatically on one-click;
- Persistent config: all settings are saved automatically to the workspace file
save-money.config.json(gitignored); configuration survives browser refresh and plugin disable/re-activate, and is loaded on startup with optional reconciliation of paused goals; - Account balance display (optional): tick "Show balance" in settings and your official DeepSeek account balance appears next to the status text in the header (automatic currency symbol, theme-adaptive color). Off by default. With several model sources configured (official DeepSeek + SiliconFlow, relays, …) the balance follows the model actually in use: it is shown while the latest real request runs on the official provider and hidden otherwise (the sampled spend history is kept, so switching back to DeepSeek re-shows the balance immediately);
- Spend statistics: with the balance display enabled, the backend samples the balance every 5 minutes (288 points covering the last 24 hours). Hover the balance to see how much was spent in the last 1 hour / 10 minutes / 24 hours (balance increases from top-ups or refunds show as "+amount");
- Spend bar chart (last 8 hours, per 10 minutes): click the balance to open a chart of the last 48 ten-minute windows. External-spend attribution — a window where the balance dropped without any local model activity is marked with a warning color (hover: "no local activity in this window; change may come from elsewhere") instead of being reported as local consumption, so using the same API key from another machine never looks like a one-second spend explosion. Balance top-ups (recharges / refunds) are never drawn as bars and never stretch the Y axis — the axis stays spend-only; a hidden top-up window shows a "balance recovered (recharge / refund), not counted in spend analysis" note on hover;
- Persistent balance history: sampled history is saved to
~/.dsh/dsh-save-money-balance.json(account-level, shared across projects) and survives plugin updates/restarts. The file is keyed by a fingerprint of the API key — changing the key discards the old history automatically; - Non-intrusive by design: no screen lock, no overlay blocking, no user action prevented — only the automatic continuation of goals is paused; manual interaction always flows.
How it works
stateDiagram-v2
direction TB
[*] --> Disabled
Disabled : Disabled ⚪ — nothing pauses, no money saved
Working : Working 🟢 — normal use, requests flow
Pausing : Pausing soon 🟡 — yellow banner reminder
Paused : Paused 🔴 — requests suspended, no cost
Disabled --> Working : check "Enable"
Working --> Pausing : a window starts within 5 minutes
Pausing --> Paused : pause time reached
Paused --> Working : window ends, auto-resumes
Paused --> Working : "End this save mode" — resume now
Pausing --> Working : "End this save mode" — cancel this pause
Working --> Disabled : uncheck "Enable"
Pausing --> Disabled : uncheck "Enable"
Paused --> Disabled : uncheck "Enable"
- When a pause window starts, running tasks are frozen (progress preserved) and the AI stops replying — that is normal: the machine is saving you money. Everything resumes automatically when the window ends;
- See the yellow "pause in X min" banner but don't want to pause right now? Click End this save mode to cancel this window only;
- Paused and want to continue immediately? Click End this save mode (red button) — it resumes right away, skips only the current window, and never turns off Enable: the next window (today or later) still saves money as usual. If you ever want every window to take effect again, uncheck and re-check Enable.
Install
The official DSH plugin form is a module exporting apply + cordis.yml mounting (see the DSH official tutorial). You can install from npm (one command, recommended) or build from this repository (three options below: --patch quick try, distributable bundle, or the link + HMR development workflow). Every official form ships the full plugin: Host logic (scheduling, gate, goal freeze, tools, HTTP endpoints) and the browser UI (status text, banner, settings page), which loads automatically — no AI-assisted setup needed.
Install from npm (recommended)
The plugin is published to npm — one command installs it into your Web profile:
First-time install
npx @deepseek-ai/dsh plugin --profile web add dsh-save-money
Remove
npx @deepseek-ai/dsh plugin --profile web remove dsh-save-money
After installing, fully restart DSH (Ctrl+C, start again) and hard-refresh the browser (Ctrl+Shift+R) — the "Save" status text appears top-right in the session header.
Source install (build from this repo)
Using ~/app/ as an example directory (each step assumes the previous one succeeded):
cd ~/app/
git clone https://github.com/zhu168/dsh-save-money.git
cd dsh-save-money
npm install
cd plugin
npm pack # runs the build automatically; produces the plugin tarball
ls # check the tarball name, e.g. dsh-save-money-1.4.3.tgz
cd ~/app/deepseek-harness # change to your harness directory (clone it first if missing — see "0." below)
pnpm dsh plugin --profile web remove dsh-save-money # only if you installed it before; skip if you haven't
pnpm dsh plugin --profile web add ../dsh-save-money/plugin/dsh-save-money-1.4.3.tgz # use the name from `ls` above
pnpm dsh --profile web # starts DeepSeek Harness — the plugin appears top-right in the session header
Two notes: ① the tarball name on the
addline must match whatlsprinted (1.4.0is just an example); ② if your harness runs via npx, replace everypnpm dshabove withnpx @deepseek-ai/dsh(install commands too).
0. Run DSH itself first
The plugin runs inside DSH, so DSH must run before anything below. Two ways:
A. Installed CLI (easiest, needs Node.js):
npx @deepseek-ai/dsh web # starts the Web UI at http://127.0.0.1:3080
B. From source (e.g. on a Raspberry Pi; dsh is NOT a global command — you must run pnpm dsh inside the checked-out deepseek-harness directory):
git clone https://github.com/deepseek-ai/deepseek-harness.git
cd deepseek-harness
pnpm install
pnpm run build
pnpm dsh web # inside this directory only
In source mode, never type bare
dsh ...— it is not on PATH (command not found: dsh). Usepnpm dsh ...from thedeepseek-harnessdirectory, or./node_modules/.bin/dsh ....
Path 1: --patch quick try (official, loads local source)
Good for trying the plugin on the same machine where you keep this repository.
-
(Optional) Rebuild the latest plugin module — a fresh clone needs the build deps first:
npm install # first clone: installs typescript and friends npm run prepare # one step: src/*.ts -> dist/*.js -> plugin/index.js + plugin/client.js -
Edit
cordis.patch.yml, replacing<REPO_ROOT>with the repository's absolute path (it is the only placeholder in the file — use your editor's "replace all"):- insert: - id: save-money name: '<REPO_ROOT>/plugin/index.js'Examples — Windows:
name: 'D:/git/github/dsh-save-money/plugin/index.js'; Linux / macOS / Pi:name: '/home/pi/dsh-save-money/plugin/index.js'.If your profile already has the plugin installed via bundle / link, skip Path 1 (stacking
--patchwould register the plugin twice). -
Start with the overlay:
dsh web --patch ./cordis.patch.yml # globally installed dsh npx @deepseek-ai/dsh web --patch ./cordis.patch.yml # npx-launched (Step 0, option A) # from source: pnpm dsh web --patch ./cordis.patch.yml -
Open the browser at the printed URL (default http://127.0.0.1:3080) — the "Save" status text appears in the session header top-right. No extra step needed.
Path 2: bundle + dsh plugin add (official, distributable — recommended for another machine / the Pi)
The bundle is a small .tgz that you build once and install anywhere. You do not clone this repository on the target machine — DSH installs the plugin into its own profile (~/.dsh/profiles/web/node_modules/).
Step 1 — build & pack the bundle (on any machine with this repository):
cd dsh-save-money
npm install # first clone only (typescript dev dependency)
cd plugin
npm pack # runs the prepare build automatically; produces dsh-save-money-1.4.3.tgz
plugin/ is the standard bundle layout: package.json declares dsh.bundle.patch + dsh.client, cordis.patch.yml inserts the plugin row, index.js is the Host module and client.js the browser UI bundle.
Step 2 — copy the tgz to the target machine (scp / USB stick / however you move files; run this on the build machine, one directory above the repository, adjusting the path to yours):
scp dsh-save-money/plugin/dsh-save-money-1.4.3.tgz pi@<pi-ip>:~/
Step 3 — install into a profile (on the target machine; first run initializes the profile with @deepseek-ai/dsh-base):
# DSH run from source (inside the deepseek-harness directory):
pnpm dsh plugin --profile web add ~/dsh-save-money-1.4.3.tgz
# npx-launched (Step 0, option A) or globally installed dsh: works from any directory
npx @deepseek-ai/dsh plugin --profile web add ~/dsh-save-money-1.4.3.tgz
Both commands do the same thing: install the tgz into
~/.dsh/profiles/web/node_modules/. Use whichever matches how you start DSH.
Git install also works: dsh plugin --profile web add github:you/dsh-save-money#<sha> (git install requires prepare builds and allowBuilds, see the DSH publish tutorial).
Step 4 — verify the layer mounted, then start (fully restart DSH, don't just refresh the page):
pnpm dsh --profile web --dump-config # the output should show a dsh-save-money layer (its plugin rows)
pnpm dsh --profile web # Ctrl+C to stop an already-running instance first
Step 5 — open the browser at http://127.0.0.1:3080 and hard-refresh (Ctrl+Shift+R). The "Save" status text appears in the session header; click it for the settings. You can also confirm the plugin is live from a conversation (save_money_status).
Upgrading to a newer version (e.g. 1.3.0 → 1.4.0):
The commands below use
pnpm dsh; if you launched DSH via npx, replacepnpm dshwithnpx @deepseek-ai/dsh.
# on the build machine:
cd dsh-save-money && git pull && cd plugin && npm pack # fresh dsh-save-money-<new>.tgz
scp dsh-save-money/plugin/dsh-save-money-1.4.3.tgz pi@<pi-ip>:~/
# on the target:
pnpm dsh plugin --profile web remove dsh-save-money
pnpm dsh plugin --profile web add ~/dsh-save-money-1.4.3.tgz
pnpm dsh --profile web # restart, then hard-refresh the browser
Your settings survive upgrades (they live in save-money.config.json, untouched by remove/re-add).
Uninstalling:
pnpm dsh plugin --profile web remove dsh-save-money
Path 3: development workflow (what this repository actually uses: link install + HMR hot reload)
Changes take effect immediately — no DSH restart and no tgz needed. This is the form used while developing the plugin: dsh plugin add link: links the plugin/ directory straight into the profile, and a cordis-plugin-hmr hot-reload plugin watches the build output. Save the source → npm run prepare → the running DSH hot-swaps the new plugin; hard-refresh the browser to see the client UI.
One-time setup (on the development machine):
-
Build and link-install:
cd dsh-save-money npm run prepare # src/*.ts -> plugin/index.js + plugin/client.js pnpm dsh plugin --profile web add link:D:/git/github/dsh-save-money/plugin # use your repository's absolute path -
Configure hot reload: edit
~/.dsh/profiles/web/cordis.patch.yml(create it if missing) and replacerootwith your repository'splugindirectory absolute path:- insert: - id: save-money-hmr name: '@deepseek-ai/cordis-plugin-hmr' config: root: ['D:/git/github/dsh-save-money/plugin'] ignored: ['**/node_modules', '**/.*'] debounce: 100 -
Start DSH (
pnpm dsh web/npx @deepseek-ai/dsh web) and open the browser (default http://127.0.0.1:3080).
Daily dev loop:
# after editing src/*.ts, run once:
npm run prepare # rebuild -> writes plugin/index.js + plugin/client.js
DSH hot-replaces the plugin within ~0.1s (look for [hmr] logs in the terminal) — no restart; hard-refresh the browser (Ctrl+Shift+R) to see client-side changes.
Note:
link:and the Path 2 bundle install are mutually exclusive — if you installed the bundle before, runpnpm dsh plugin --profile web remove dsh-save-moneyfirst, thenadd link:.
Config persistence (all forms)
The plugin writes its settings to save-money.config.json (excluded by .gitignore, never committed): loaded automatically at startup, persisted immediately on every change. The config file location is resolved at runtime by walking a candidate list — the first directory that actually contains a config file wins:
- the directory recorded by the pointer file
~/.dsh/save-money-config-path.json(the last real location, so a restart resolves the same file even when no session matches); - the current session's workspace directory;
- every session workspace whose path ends in
dsh-save-money(the newest one wins when several exist); - the DSH startup directory itself (
process.cwd(), official install form); - a
dsh-save-moneydirectory sibling to the DSH startup directory (the README quick-install layout:~/app/deepseek-harnessnext to~/app/dsh-save-money); - final fallback:
sandboxPolicy.workspaceRoot(the DSH install dir).
On a fresh install (no config anywhere) the plugin prefers to write the config into the repo directory (the dsh-save-money dir matched by step 4/5) instead of polluting the DSH install dir, and records a pointer in ~/.dsh/ so every later restart loads the same file. Deleting the config file resets all settings.
Troubleshooting
| Symptom | Cause & fix |
|---|---|
zsh: command not found: dsh / dsh: command not found | You are running DSH from source — dsh is only available inside the deepseek-harness directory as pnpm dsh ... (or ./node_modules/.bin/dsh). Never use bare dsh outside it. |
Plugin fails to load with ReferenceError: harness is not defined | You are running a build older than v1.2.2 — the official form was fixed in v1.2.2. Rebuild (npm run prepare), re-pack, reinstall, and restart. |
| Installed but no status text / banner / settings page | Fully restart DSH (Ctrl+C, start again) and hard-refresh the browser (Ctrl+Shift+R) — the Client half is discovered at startup. If it still does not appear, you are running a build older than v1.2.4 — upgrade. |
| UI shows but the Enable checkbox (and other settings) do nothing | You are running a build older than v1.2.5 — the plugin used to start before the Web server was ready, so UI requests could not reach it. Upgrade to ≥ v1.2.5 and restart. |
| Where is my config file? | Resolved automatically from the 6-step candidate list above (session workspace / repo dir preferred; ~/.dsh/save-money-config-path.json records the last location). Deleting it resets all settings. |
Quick start
The steps below apply to every install form — Path 1 / Path 2 / Path 3 all ship the same settings UI. You can also configure through the tools in a conversation (
save_money_configure,save_money_status).
- After install and activation, click the "Save · 🟢 Working" status text in the top-right of the session header (next to the Session log) to open settings (the single persistent entry); or use the system settings page (sidebar → Settings → Save-money);
- Click One-click DeepSeek peak/off-peak savings → the peak windows are added automatically (08:58–12:02, 13:58–18:02 Beijing time, with the 2-minute boundary margin);
- Check "Enable" (the one-click does not auto-enable);
- Save the window settings — the plugin starts watching: tasks pause automatically at the window start and resume when it ends.
Entries
| Entry | Where |
|---|---|
| Status text (single persistent entry) | Session header top-right (next to the Session log) "Save · 🟢 Working", click to open the settings popover |
| System settings page | Sidebar → Settings → Save-money |
| Floating banner | Top capsule when a pause is upcoming / active + End this save mode button (one-shot: ends only the current window, future windows unaffected) |
Dynamic tools (Host)
| Tool | Purpose |
|---|---|
save_money_status | Query state / gate state (gate: open|closed) / window / pause record / UTC projection |
save_money_configure | Configure (enabled / timezone / warnMinutes / windows) |
save_money_end_window | End save mode for the currently active window only (one-shot, in-memory): resume now / cancel the upcoming pause; next windows still take effect |
save_money_debug_tick | Dev tool: manually advance the state machine |
Docs & License
- Repository layout:
src/holds the TypeScript plugin sources (single source of truth, every file ≤ 400 lines):core.ts/state.ts/config.ts(pure logic: time helpers, state machine, config controller),balance-history.ts/balance-bars.ts/balance-host.ts/balance-client.ts(balance history, model classification + spend bars, balance transport, balance UI helpers),host-goals.ts/gate.ts/balance-tracker.ts/host-http.ts/host-tools.ts(host sub-modules wired byhost.ts),i18n/*(10 locale dictionaries + aggregator),ui/*(client components wired byclient.ts).tests/(unit tests,npm test),scripts/build.js(TS → JS plugin bodies),scripts/typecheck.js(type check),scripts/make-plugin.js(official bundle generator),plugin/(bundle:package.json+cordis.patch.yml+index.js+client.js),cordis.patch.yml(quick-try overlay),package.json/tsconfig.json(build & type config),dist/(build output, gitignored),save-money.config.json(runtime config, gitignored) - i18n: UI strings live in
src/i18n/*— one dictionary per language (zh.ts,zh-TW.ts,en.ts,de.ts,fr.ts,es.ts,it.ts,pt.ts,ja.ts,ko.ts); the language is auto-detected from the browser locale, manually selectable (Auto + 10), and the choice persists in the config - License: MIT (see
LICENSE)
收录徽章
[](https://deepseek-plugin.org/plugins/zhu168/dsh-save-money/plugin)把这段 markdown 粘贴到你的 GitHub README,链接回本插件详情页。徽章只声明已被本站收录,不代表安全认证。