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.

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

dsh-subagent-progress

Subagent Progress

Live subagent progress dock for DeepSeek Harness: folds each child session's events into a subagentProgress projection (turn/step, last tool, latest assistant preview, notify_user updates) and renders a frosted-glass status dock above the parent conversat

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-subagent-progress@0.7.9
READMECompatibilityVersions
screenshot

Compatibility and provenance

Subagent Progress is published as dsh-subagent-progress and currently resolves to version 0.7.9. 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.7.9stable
9/16/2026
0.7.8stable
9/15/2026
0.7.7stable
9/14/2026
Show 15 more versionsCollapse versions
0.7.6stable
9/14/2026
0.7.5stable
9/14/2026
0.7.4stable
9/14/2026
0.7.3stable
9/11/2026
0.4.4stable
9/11/2026
0.4.3stable
9/10/2026
0.4.2stable
9/10/2026
0.4.1stable
9/10/2026
0.3.3stable
9/10/2026
0.3.2stable
9/10/2026
0.3.1stable
9/10/2026
0.3.0stable
9/9/2026
0.2.6stable
9/9/2026
0.2.5stable
9/9/2026
0.2.0stable
9/9/2026

Related plugins

Loading related plugins…

Latest
0.7.9
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
102.7 kB
Files
9
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
895
Security scan
✓ v0.7.9 scan passed
Last push
9/16/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 agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

dsh-subagent-progress

English | 中文

One-liner: Live progress for your subagents, right above the input box — what they're doing, how far along they are, whether they're stuck. No clicking into transcripts.

screenshot

What you see

  • One card per running subagent: label, turn/step, todo completion (1/3), the exact action in flight (bash: cargo build --release, not a bare tool name), and elapsed time.
  • Subagents report in their own words: one-sentence updates about progress, how long remains, and key discoveries — brand blue = progress, amber = ETA, green = finding (all sourced from DS theme variables, light/dark adaptive).
  • Stall alerts: a live subagent silent for 5+ minutes turns its status dot amber.
  • Failure actions: when a subagent's turn dies (e.g. a 429 overload), its card stays — red dot, the distilled error on one line (hover for the full text), and explicit actions: Retry queues a fresh turn for the child right from the card, Open jumps into its session; a running card likewise gets a Pause button that interrupts the active turn (handy during retry storms).
  • Aligned at any count: cards snap into an equal-width grid with a uniform four-row structure, so they line up perfectly whether there are two or ten; beyond two rows the panel scrolls instead of eating your screen.
  • Zero nagging: when a subagent finishes, its card lingers 30 seconds then disappears; important findings linger 3 minutes before disappearing too; every card has its own × to dismiss it individually, and the corner × dismisses the whole dock — either way, everything reappears on its own when new activity arrives.

Install

dsh plugin --profile web add dsh-subagent-progress

Then restart dsh web. Published on npm as dsh-subagent-progress. Requires dsh ≥ 0.1.2-rc.1 — see Compatibility.

Usage

  • Click a card → open that subagent's full session.
  • Hover the update area → a frosted popover shows the full update, markdown-rendered (lists and code blocks intact).
  • No configuration needed — install and it works.

How it works (30-second version)

Two channels, one outlet:

  • Passive observation: every subagent's session events (turns, steps, tool calls, assistant text) are folded into a small progress state that dsh's projection framework pushes to every browser automatically — so there is always progress on the card, even if the model never says a word.
  • Active reporting: every subagent gets a notify_user tool plus guidance to report in single sentences (and a gentle reminder after 6 consecutive tool calls without one). Each report is an ordinary event in the child's durable session log, carried out by the same channel — persistent and replayable by construction.

No dsh source is modified; the host half works in any deployment, the UI half renders only under dsh web.

Compatibility

Official dsh plugins declare their version contract as peerDependencies on the @deepseek-ai/* core packages they touch; this plugin follows the same convention. All core packages ship in lockstep release trains (0.1.x-rc), so one range covers the whole host.

Supported: dsh ≥ 0.1.2-rc.1, < 0.2.0. Developed and live-verified on 0.1.5-rc.1.

The floor is not arbitrary — it comes from the exact API surface this plugin uses, checked against the published tarballs of every core release:

API surface we useProvided byIntroduced
remote.subagents wire API (prompt / interruptByParent, mode: 'continuable') — the Retry/Pause buttons@deepseek-ai/dsh-api-remotes0.1.2-rc.1 (absent in 0.1.0-rc.8)
sessionProjections service (server-side event folding)@deepseek-ai/dsh-session-projection≤ 0.1.0-rc.8
systemPrompt service (reporting guidance section)@deepseek-ai/dsh-system-prompt≤ 0.1.0-rc.8
defineTool (notify_user registration)@deepseek-ai/dsh-tools≤ 0.1.0-rc.8
Client services sessions / slots / locale / remote@deepseek-ai/dsh-api-session-controller, @deepseek-ai/dsh-client-*≤ 0.1.0-rc.8

Because the web client declares remote.subagents in its cordis inject, the whole dock — not just the buttons — requires ≥ 0.1.2-rc.1. Versions 0.1.2 through 0.1.3 are expected to work by API surface but are not continuously tested; 0.1.5-rc.1 is the version every release is verified against.

One nuance on enforcement: npm semver cannot express "any prerelease train from X onward" — a range like >=0.1.2-rc.1 <0.2.0 only admits the 0.1.2-rc.* line under the same-tuple prerelease rule, and ^0.1.5-rc.1 pins a single train (which is why official plugins redeclare peers every train). Since neither expresses the real contract, this section is the authoritative statement; peerDependencies stays minimal (cordis, dsh-tools), matching the official client-plugin convention.

More

  • CHANGELOG — what changed in each version
  • Feedback: GitHub Issues
  • License: MIT