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.

Clock — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-clock

Clock

Money-Saving Clock: To remind its owner not to use expensive APIs during peak hours (Beijing time 9:00–12:00 and 14:00–18:00), AI created this draggable, resizable floating clock. It flashes red during peak hours as a warning, and both the color and flashing can be customized.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-clock@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Clock is published as dsh-clock and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.2stable
8/15/2026
0.1.1stable
8/15/2026
0.1.0stable
8/15/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
23.9 kB
Files
7
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
62
Last push
8/15/2026
View source ↗Project homepage ↗
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

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 pluginsClient 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.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

English | 中文

dsh-clock — 省钱时钟 ⏰

主人为了省钱,让 AI 写了这个时钟:提醒他别在高峰时段(API 最贵的时候) 烧 token。高峰时时钟亮起闪烁红灯——看到红灯就收手,钱就省下来了 💸

给 DeepSeek Harness Web GUI 的浮动时钟插件: 可拖拽、可缩放,自动记住位置与大小;高峰时段(北京时间 9:00-12:00、14:00-18:00) 显示闪烁红灯,颜色与闪烁均可通过设置修改。

English (README.md)

✨ 功能

  • 🕐 浮动显示当前时间(HH:MM:SS + 日期 + 星期),每秒刷新
  • 🖱️ 按住时钟主体拖拽移动;拖拽右下角三角手柄放大/缩小(0.5× – 3×)
  • 💾 位置与大小自动记住(浏览器 localStorage)
  • 🔴 高峰时段(北京时间 9:00-12:00、14:00-18:00)亮起红灯,默认闪烁警示
  • 🎨 设置项:enabled 总开关 / color 时间颜色(任意 CSS 颜色代号)/ blinkPeak 闪烁开关

📦 安装

方式一:npm 快速安装(推荐)

dsh plugin --profile web add dsh-clock

然后重启 dsh web,刷新页面即可看到时钟。

方式二:手动安装

  1. 下载/克隆本仓库,或 npm pack 后解包;
  2. 编辑 web profile 的 package.json(~/.dsh/profiles/web/package.json):
// dependencies 加入
"dsh-clock": "^0.1.0"
// dsh.profile.bundles 末尾追加
"dsh-clock"
  1. 在 profile 目录执行 pnpm install,重启 dsh web。

方式三:本地目录直装(开发用)

dsh plugin --profile web add E:\工作区\dsh-clock

⚠️ 本地直装时若插件不在 profile 目录内,需在插件目录建 node_modules 链接指向 宿主包:@deepseek-ai 与 schemastery(见 README.md「解析说明」)。npm 安装版无需此步。

⚙️ 设置

GUI 设置 → 插件配置 → dsh-clock:

  • 显示时钟:总开关
  • 时间颜色:任意 CSS 颜色代号(#9aa0a6 / red / rgb(255,0,0))
  • 高峰时段闪烁红灯:关闭后高峰只亮不闪

⏰ 高峰时段规则

按**北京时间(UTC+8)**判断,与浏览器本地时区无关:

  • 上午 9:00 – 12:00(不含 12:00)
  • 下午 14:00 – 18:00(不含 18:00)

高峰时时钟右侧出现红点;blinkPeak 开启时红点以 1s 周期闪烁。

🗂️ 目录结构

文件作用
cordis.patch.ymlbundle patch:把插件行插入 web profile roster
lib/index.jshost 侧:注册 dsh-clock settings 命名空间
lib/client.js浏览器侧:浮动时钟 + 拖拽缩放 + 持久化 + 设置卡

🔧 开发

client bundle 是手写的 window.__ModuleLoader__.load(...) 格式(与 dsh-web-ui 全家桶插件一致),无需构建步骤;修改 lib/client.js 后刷新页面(dev)或 重启 dsh web(生产)生效。

📤 发布

npm publish          # 发布到 npm
git push origin main # 推送 GitHub

📄 License

MIT