DeepSeek Harness plugin

plugin

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.

Jump to install

Source facts

Repository
zhu168/dsh-save-money
Latest update
Aug 18, 2026
Category
Usage & Billing
GitHub stars
31

Install

Start with a prompt that asks an agent to read the source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to read the page and repository first.

Do not install anything yet. Read this DeepSeek Harness plugin and explain what it does, which files, networks, or credentials it can access, and how to install and remove it.

Plugin page: https://deepseekplugins.org/plugins/zhu168/dsh-save-money~23plugin
GitHub: https://github.com/zhu168/dsh-save-money/tree/main/plugin
Plugin: dsh-save-money#plugin
Author: zhu168
Install command: dsh plugin --profile web add dsh-save-money

Do not run the install command until I confirm.

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer1 file
package.jsonSource · read only
{
  "name": "dsh-save-money",
  "version": "1.4.3",
  "description": "DSH save-money plugin — time-window auto pause/resume for peak/off-peak API pricing (no requests sent while paused).",
  "repository": {
    "type": "git",
    "url": "https://github.com/zhu168/dsh-save-money.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "index.js",
    "cordis.patch.yml",
    "client.js"
  ],
  "type": "module",
  "main": "index.js",
  "scripts": {
    "build": "node ../scripts/build.js && node ../scripts/make-plugin.js",
    "prepare": "node ../scripts/build.js && node ../scripts/make-plugin.js"
  },
  "dsh": {
    "bundle": {
      "patch": "./cordis.patch.yml"
    },
    "client": {
      "platform": "web"
    }
  },
  "license": "MIT",
  "exports": {
    ".": "./index.js",
    "./client": "./client.js",
    "./package.json": "./package.json"
  }
}