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.

Pwsh Progress — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-pwsh-progress

Pwsh Progress

Real-time task progress in the conversation stream: displays status, elapsed time, progress bar, estimated time remaining, and a stop button for background tasks (pwsh/bash/subagent and other run_in_background tasks); tracks via non-consuming jobs.get without affecting model job_output.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:sssueason/dsh-pwsh-progress#ebaae5145855932e6c938e905dc02440574e7dfd
READMECompatibilityVersions

Compatibility and provenance

Pwsh Progress is published as dsh-pwsh-progress and currently resolves to version 0.2.3. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/28/2026

Versions

0.2.3stable
8/28/2026
0.2.1stable
8/26/2026

Related plugins

Loading related plugins…

Latest
0.2.3
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
8/28/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

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 Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundle

README

dsh-pwsh-progress

DeepSeek Harness(DSH)对话流实时任务进度插件:为后台任务(run_in_background)渲染进度卡片与常驻任务条——状态、耗时、进度条、预计剩余时间、停止按钮,无需刷新页面。

┌──────────────────────────────────────────────────────────┐
│ PWSH  1..25 | ForEach-Object { Write-Output "step $_/25" } │
│ ⏳ 运行中 · 已耗时 14.2s                                    │
│ [██████████████░░░░░░░░] 56%(14/25)                       │
│ 预计剩余 ~11s                                             │
│ [停止任务]                                                │
└──────────────────────────────────────────────────────────┘

功能

  • 实时状态:运行中 / 停止中 / 完成 / 已停止 / 失败,含耗时与 exit code
  • 进度条:从模型 job_output 已读输出解析 N/M、NN%
  • 预计剩余时间:输出进度估算;无进度时按同命令历史均值(标注「基于历史」)
  • 停止按钮:一键 jobs.kill
  • 通用覆盖:任何工具的后台任务(pwsh / bash / subagent / …)在每轮回复尾部显示活跃任务条;pwsh 另有就地进度卡片

安装

dsh plugin --profile web add "github:sssueason/dsh-pwsh-progress#main"

或 npm 发布后:npm add dsh-pwsh-progress && dsh plugin --profile web add dsh-pwsh-progress。重启 dsh web 生效。

原理

  • 宿主侧:tools/execute 旁路登记所有返回后台 jobId 的调用,用非消费式 jobs.get 跟踪状态——不调用 jobs.read,模型 job_output 不受影响;进度解析自模型已读的输出副本
  • 路由(仅回环 + 同源):POST /api/dsh-pwsh-progress/{state,list,kill}
  • 浏览器侧:tool.call.toolview(pwsh 卡片)+ conversation.chat.turnTail(活跃任务条),轮询刷新,失败降级不报错

限制

  • pwsh 卡片替换官方同名卡片(Slot 语义);其他工具仅任务条
  • 无输出 tail(输出仍经 job_output 呈现)
  • 历史估算在宿主进程内,重启即失

测试

node --test test/smoke.test.mjs

MIT © 2026 dsh-pwsh-progress authors