DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Terminal Startup Bar — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
T

dsh-terminal-startup-bar

Terminal Startup Bar

DeepSeek Harness(dsh)的终端启动状态栏:显示启动过程正在加载哪个插件、已耗时多久以及进度如何。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:fishOfOUC/dsh-terminal-startup-bar#6fcb377c64f1ae7528145c8fe8f48a3e5c204e7a
README兼容性版本

兼容性与来源证明

Terminal Startup Bar 以 dsh-terminal-startup-bar 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/9/11

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Pet@linxin666/dsh-pet适用于 dsh Web GUI 的多宠物伴侣插件:由注册表驱动的浮动宠物,可响应模型活动,支持为每只宠物命名、抚摸/喂食互动以及亲密度评分

README

dsh-terminal-startup-bar

A terminal startup status bar for DeepSeek Harness (dsh).

A booted dsh profile mounts dozens of plugin rows and loads them concurrently. On a cold start with a large composition that means the terminal sits silent for ten or twenty seconds with no way to tell whether anything is happening. This plugin turns that silence into one line:

⠋ 正在加载 @deepseek-ai/cordis-plugin-timer…  3.2s  36/140
⠹ 正在加载 @deepseek-ai/dsh-session-projection-cache…  7.2s  130/142
⠸ 正在加载 @deepseek-ai/dsh-workspace…  8.3s  136/142
⠸ 正在加载 @daweifu/capability-menu/policy…  8.4s  141/142
✔ 启动完成 (8.7s)

The line names the plugin that has been outstanding longest, how long the boot has been running, and how many plugin rows are up. It is replaced by a completion line when the Loader settles, and it is erased — never left behind — on failure or teardown.

Install

A local dsh plugin lives at $DSH_HOME/local-plugins/<name> and is wired into a profile as a link: dependency plus one entry in dsh.profile.bundles. That is how dsh finds an out-of-tree plugin without going through a registry.

1. Clone it into the local-plugins directory

git clone https://github.com/fishOfOUC/dsh-terminal-startup-bar \
  "$DSH_HOME/local-plugins/dsh-terminal-startup-bar"

$DSH_HOME resolves to ~/.dsh unless the environment sets it.

2. Declare it in the profile

In $DSH_HOME/profiles/<profile>/package.json, append the name to dsh.profile.bundles and add the dependency. Bundle order is application order, so listing it last is enough — the row it inserts has no dependencies on other plugins.

{
  "dsh": {
    "profile": {
      "bundles": ["@deepseek-ai/dsh-base", "@deepseek-ai/dsh-web-app", "dsh-terminal-startup-bar"]
    }
  },
  "dependencies": {
    "dsh-terminal-startup-bar": "link:/absolute/path/to/.dsh/local-plugins/dsh-terminal-startup-bar"
  }
}

3. Link it into the profile's node_modules

pnpm install in the profile directory creates this from the link: dependency. To do it by hand:

ln -s "$DSH_HOME/local-plugins/dsh-terminal-startup-bar" \
      "$DSH_HOME/profiles/<profile>/node_modules/dsh-terminal-startup-bar"
New-Item -ItemType Junction `
  -Path "$env:DSH_HOME\profiles\<profile>\node_modules\dsh-terminal-startup-bar" `
  -Target "$env:DSH_HOME\local-plugins\dsh-terminal-startup-bar"

Confirm the wiring without booting anything — the row must appear in the composed tree:

dsh web --dump-config | grep -A1 terminal-startup-bar

From a registry instead

dsh plugin --profile web add dsh-terminal-startup-bar

Then add "dsh-terminal-startup-bar" to dsh.profile.bundles as above. The package ships cordis.patch.yml, so no patch file of your own is needed.

As a row in a profile's own patch layer

To mount the plugin from a package that is already a dependency, without listing it as a bundle, put the row in $DSH_HOME/profiles/<name>/cordis.patch.yml yourself:

- insert:
    - id: terminal-startup-bar
      name: dsh-terminal-startup-bar
      config:
        label: Loading

From a checkout, without installing

--patch overlays resolve a relative plugin name against the overlay file's directory, so a working tree can be mounted directly. examples/local.patch.yml does exactly that:

dsh web --patch ./examples/local.patch.yml --port 3081

Configuration

Every key is optional. An unknown key, or a value of the wrong type, throws at load with the key named rather than being ignored.

KeyTypeDefaultMeaning
enabledbooleantrueKeep the package installed but silent.
stream'stderr' | 'stdout''stderr'Which standard stream the bar paints on.
intervalMsinteger ≥ 1680Milliseconds between repaints.
framesstring[]⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏Spinner frames, cycled in order.
labelstring正在加载Text before the plugin being loaded.
readyLabelstring正在完成启动Text used once every plugin is active but the launcher has not committed readiness.
doneLabelstring启动完成Text on the closing line.
showElapsedbooleantrueShow elapsed seconds.
showProgressbooleantrueShow done/total plugin rows.
showCompletionbooleantruePrint the closing line on a successful boot.
forcebooleanfalsePaint even when the target stream is not a terminal.

An English composition:

- id: terminal-startup-bar
  config:
    label: Loading
    readyLabel: Finishing startup
    doneLabel: Ready

The bar writes nothing at all when its stream is not a TTY, unless force is set. That is what keeps spinner frames out of CI logs, captured output, and supervisor pipes.

How it works

  • Where the numbers come from. The plugin reads the Cordis Loader's entry tree through ctx.get('loader'). total counts enabled plugin rows; group rows, disabled rows, and nested-tree carriers (the root cordis:include, whose duration is the whole boot by construction) are excluded. done counts rows whose fiber reached the active state, and the named subject is the first row that has not, in composition order.
  • Why the subject is "longest outstanding". The Loader mounts every row of a group with one Promise.allSettled, so rows start concurrently; there is no single row that is "the one loading". Naming the longest-outstanding row is the reading that stays truthful under that concurrency, and it advances as earlier rows finish.
  • Where the clock comes from. loader.envData.startTime is stamped before the first profile row mounts, so elapsed time covers the whole boot. A missing, non-numeric, or future stamp falls back to the moment the row applied.
  • When it stops. The Loader settling ends the load phase, which is before a surface such as the Web app prints its URL; the bar clears there so the URL line is never overwritten. The launcher's appReady signal is a second stop for compositions whose Loader settles differently. The row's own effect owns the repaint timer, so disposal — a failed boot, a signal, an HMR reload — always erases the line.
  • No dependencies. The plugin is plain ESM with no runtime imports, not even @deepseek-ai/cordis: it reads the two facts it needs — the entry list and one fiber state — structurally. A loading indicator that pulls in its own module graph would be measuring a startup it slowed down.

Known limitations

  • Another writer can collide with the line. The bar repaints in place on the current terminal line. If some other plugin writes to the same terminal during a boot, the next repaint erases that text. dsh boots quietly in practice, and the bar stops at Loader settle — before the Web app prints its URL — but a row that logs during startup can still be clipped.
  • Rows waiting on a service are counted as loading. A row whose fiber is pending on an injected service is reported as outstanding, exactly like a row still importing its module. The line says how far the boot got, not why a particular row is waiting.
  • The fiber state is read numerically. readProgress compares against FiberState.ACTIVE's numeric value rather than importing the enum, which is what keeps the plugin dependency-free. A future Cordis release that renumbers the enum would need this constant updated.

Development

npm test      # node --test, no dependencies and no install step

The suite covers the pure formatter, the Loader tree reader, config validation, the bar's paint/erase lifecycle under an injected clock and timer, and the plugin's wiring against a context double.

License

MIT