DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-work-buddy

Work Buddy

Pixel desk buddy for the DSH Web GUI that keeps a ledger of your turns: slacks off when idle, thinks and types while a turn runs, asks for you when a choice is pending, throws confetti when a turn finishes, and reports completed turns plus token spend and estimated USD cost.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:AMC-tp/dsh-work-buddy#17736788b1f685605955231f2dfb57a818f27442
READMECompatibilityVersions

Compatibility and provenance

Work Buddy is published as dsh-work-buddy and currently resolves to version 1.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/20/2026

Versions

1.1.0stable
9/20/2026

Related plugins

Loading related plugins…

Latest
1.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/20/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
Work Buddy — DSH Plugin for DeepSeek Harness

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

dsh-work-buddy

DSH Web GUI 右下角的高密度像素小人 —— 同时是一本产出账本。 闲时摸鱼、干活时思考/敲代码、等你做选择时举手发文号、回合结束撒花,并把完成数、Token 消耗、估算费用记成账,按今日 / 本周 / 本月 / 年度汇总。

五个状态

状态小人触发条件(只读页面已公开的语义信号)
摸鱼中手枕着头,脚边一条鱼,头顶飘 z没有运行中的工具、也没有流式输出
思考中一手托腮,右上角冒思考气泡[data-streaming] 存在
写代码面前一台笔记本,双手在键盘上交替[data-tool][data-state="running"] 存在
等你选择双臂举起 + 粉色问号气泡(闪烁)ctx.uiSession.pendingInteractions 非空
完成!撒花双臂举起,满屏彩纸从忙碌回到空闲(忙够 0.9 秒才算一次)

鼠标移上去显示当前状态文字;点小人展开账本。

账本

点击后面板第一行是今日的三项:

完成 12      Token 3.42M      费用 $1.07

Token 数字很大,所以以百万(M)为单位显示。第二行是本周同样的三项,点「展开 本月 / 年度」再多出两行和计价模型选择。

  • 完成数:由状态机自己数(MIN_BUSY_MS 防抖,回到空闲连续 3 个采样才记账)。

  • Token:来自会话的持久化计费投影 binding.session.projections.faceOf('tokenUsage'),四个桶 uncachedInputTokens / cacheReadTokens / cacheWriteTokens / outputTokens。 我们记录的是增量:每个会话记住上次读到的值,只把新增部分记进当天的账,所以同一天跨会话切换也不会重复计。

  • 费用:按官方 DeepSeek 价目表(USD / 百万 token)估算,含高峰/非高峰两档:

    模型非高峰 (input / cacheRead / output)高峰
    deepseek-v4-flash0.22 / 0.007 / 0.660.44 / 0.014 / 1.32
    deepseek-v4-pro0.66 / 0.022 / 1.981.32 / 0.044 / 3.96

    高峰窗口是 Asia/Shanghai 周一至周五 09:00–12:00 与 14:00–18:00。

    ⚠️ 这是估算,不是账单。 计价档位取的是「增量落账那一刻」的时间,而不是每次请求自己的时间戳——投影只带 turn/step,不带时间。持续工作时两者几乎一致,但批量补账会有偏差。要精确对账请用 @ychris12138/dsh-usage-stats。

所有数据存在浏览器 localStorage 的 dsh-work-buddy/ledger/v2,卸载插件不删账本;面板里的「清零」只清账本、保留结算基线。

结构

  • lib/index.js —— host 半区,故意留空(这是纯浏览器端插件,但 loader 需要一行才能挂载)。
  • lib/client.js —— 浏览器半区,手写的 window.__ModuleLoader__.load({...}) 工厂,无构建步骤、无第三方依赖,只 get 官方客户端服务,不 require 任何外部模块。
  • cordis.patch.yml —— 往 profile 里插一行插件。

安装

dsh plugin --profile web add github:AMC-tp/dsh-work-buddy

或本地目录:

dsh plugin --profile web add link:D:\path\to\dsh-work-buddy

装完重启 dsh web。

卸载

dsh plugin --profile web remove dsh-work-buddy