DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Step Clock — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
S

@climber47/dsh-step-clock

Step Clock

DeepSeek Harness 网页 GUI 的实时分步骤耗时计时器:显示正在运行的步骤、正在运行的工具以及已运行时长。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:WsTe47/dsh-step-clock#b0a304325b032560713ca6365f8155e74bc41744
README兼容性版本

兼容性与来源证明

Step Clock 以 @climber47/dsh-step-clock 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/12

版本

0.1.1stable
2026/9/12

相关插件

正在加载相关插件…

最新版
0.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/12
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Whale Widgetdsh-whale-widgetDSH Web 界面右下角的 DeepSeek 余额小鲸鱼挂件:余额/今日已用/峰谷定价、自定义泡泡点击序列(文本/余额/今日/峰谷/图片/随机语句与并列加权选择)、逐行样式与字体、悬浮快捷编辑、音效与每轮消耗、自定义角色/动图/音效、吸附与翻转自定义Deepseek Idesigndeepseek-idesign作为原生 DeepSeek Harness 对话视图的 iPolloWork Design Studio 及其精选设计模板。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Genui@changfenhuang/dsh-genuiGenUI for DeepSeek Harness:通过 ```dsh-ui``` 代码围栏在助手回复中内嵌渲染交互式 UI 组件——布局、图表、绘图、表单、测验、mermaid、3D 场景,以及回传模型的操作事件循环。随附教授代码围栏的主机插件

README

dsh-step-clock

中文 | English

A live per-step elapsed-time bar for the DeepSeek Harness web GUI. It answers one question the built-in turn timer does not: how long has the step that is running right now been running?

● 正在执行 bash,已运行 1 分 12 秒    第 12 步   [bash]        1:12

and, once that step finishes, keeps the result on screen:

● 上一步(第 12 步)已完成,用时 3 分 45 秒                    3:45

The bar sits in the composer dock — the strip just above the input box, where the todo and goal bars live — with a second seat below the composer so a tall goal bar cannot push it out of view.

Why

The harness already shows a turn-level clock at the bottom of the conversation, but it only appears after 15 seconds and it measures the whole turn. When you are watching a long bash call you cannot tell whether it started two seconds ago or has been stuck for four minutes, and the turn clock cannot tell you either.

This plugin measures the current step, from the instant its activity actually started:

  • Tool steps are anchored to the tool call's own start time. An in-flight call exists in the live snapshot only while it is in flight, so 0:47 means the call itself has been running 47 seconds — not an estimate derived from the turn.
  • Thinking steps fall back to the step boundary, the closest honest anchor for model time.
  • The clock ticks from 0:00 with no delay threshold.

What it says

The bar states the situation in plain language rather than showing a bare number:

StateWording
Running a tool正在执行 <tool>,已运行 47 秒
Several tools at once正在执行 bash,另有 2 个工具并行,本步已运行 5 秒
Model streaming模型正在思考,本步已耗时 23 秒
Submitted, no output yet已提交,正在等待模型响应,已等待 3 秒
Finished step上一步(第 12 步)已完成,用时 3 分 45 秒
Nothing running空闲,等待下一步

Alongside it: the step number, a chip of the running tool names (up to 4, then +N, hover for all), and a compact m:ss clock at the right edge.

Durations read naturally — 47 秒, 1 分 12 秒, 2 分钟, 1 小时 3 分 — so 0:03 is never ambiguous. The wording is Chinese, matching the language of the session this was built for.

Why the finished step stays

A step is frequently over in well under a second, so a bar that exists only during a step is easy to miss. Holding the last step's duration until the next step replaces it means a slow step — a bash call that ran for four minutes, say — can be identified after the fact. The record is kept only when the step's own start and end timestamps are both present; when they are not, the bar reports itself idle rather than inventing a duration.

Install

dsh plugin --profile web add @climber47/dsh-step-clock

Then restart dsh web. The bar appears above the composer during the next running step.

How it works

A dsh bundle, mounted as one inserted row:

  • package.json declares dsh.bundle.patch, which is what makes the package installable, and dsh.client (platform: web), which is what serves the browser half.
  • cordis.patch.yml inserts the step-clock row.
  • lib/index.js is the (intentionally empty) host half. A bundle's row resolves the package root, so the package must be importable; this plugin has no host behaviour.
  • lib/client.js is the browser half, in the window.__ModuleLoader__.load({ id, factory }) registration shape a client bundle must have. React is taken from the module loader via require('react') rather than bundled.
  • It registers one additive entry in conversation.input.dock (replaceRisk: none, so every shipped todo / goal / queue entry is untouched) and injects its stylesheet by creating a tagged <style> element, removed when the plugin unloads.
  • The shipped bundle is generated from src/client/ by npm run build, so the readable source and the artifact cannot drift; npm test rebuilds and drives the bundle through its real loader contract.

It reads only facts the engine already publishes — the Chat timeline snapshot and the live running-call list — and polls nothing itself.

Requirements

  • dsh >=0.1.5-rc.1
  • React 18 (a peer dependency, provided by the harness shell)

Contributing

contrib/awesome-dsh-plugin-entry.yml is the single registry entry this package submits to the curated list, kept here so the entry and the code stay in one place. It is not part of the npm package.

License

MIT