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 Panel — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-subagent-panel

Subagent Panel

DSH plugin: render every subagent as a clickable card in the main conversation that opens the child as an ordinary session — OpenCode-style subagent visibility, without re-rendering the shell's session view.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:BiKing567/dsh-subagent-panel#91d750f145e8c340dd4ebf2963ef607f9ccb4421
READMECompatibilityVersions

Compatibility and provenance

Subagent Panel is published as dsh-subagent-panel and currently resolves to version 0.1.0. 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/31/2026

Versions

0.1.0stable
8/31/2026

Related plugins

Loading related plugins…

Latest
0.1.0
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/31/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 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

dsh-subagent-panel

Render every subagent as a clickable card in the DSH Web conversation that opens the child as an ordinary session — OpenCode-style subagent visibility, without re-rendering the shell's session view.

What you get

1. Inline card — the generic subagent / subagent_fork tool row becomes a card showing the delegated task, a live status badge (running / idle), the child id, elapsed time, and whether the child spawned nested subagents. Click it to navigate to that subagent's session.

2. Sidebar trigger — a floating pill (bottom-right) counting this session's subagents, with a dot while any are running. Click to list them all; click a row to navigate to that session.

Opening a subagent calls sessions.openSubagent(address) — the same navigation the session header's subagent catalog uses — so the child renders in the shell's own conversation view. This plugin draws no transcript of its own: the shell already renders a session better than a plugin can.

Install

dsh plugin --profile web add link:/path/to/dsh-subagent-panel
dsh web

link: keeps the install pointing at the source tree, so edits take effect after a rebuild and a page refresh.

You can also install straight from git:

dsh plugin --profile web add github:BiKing567/dsh-subagent-panel

Requirements

  • DSH with the Web client (developed against dsh 0.1.0-rc.6).
  • The client packages are optional peer dependencies — they are injected by the harness at runtime, not installed into this package. The plugin needs:
    • @deepseek-ai/dsh-client-runtime — for ctx.sessions and the subagent catalog
    • @deepseek-ai/dsh-client-locale — for the bilingual dictionaries
    • @deepseek-ai/dsh-client-ui-tool — for the tool.call.toolview slot
  • The APIs used (sessions.openSubagent, subagentsByParent, SubagentAddress) exist from @deepseek-ai/dsh-client-runtime 0.0.1-rc.1 onward. The peer range is ^0.1.0-0 || ^0.0.1-0 || >=0.2.0-0 rather than a plain ^0.1.0-rc.6, because node-semver only lets a prerelease satisfy a range when some comparator in it shares that version's exact major.minor.patch tuple and itself carries a prerelease tag. Both ^0.1.0-rc.6 and a broad-looking * therefore silently exclude 0.1.0-rc.6 — which is the version this plugin is developed against.

Build

npm run build     # src/client -> lib/client.js

The host half (lib/index.js) is plain ESM and needs no build.

Configuration

In the cordis row:

- id: dsh-subagent-panel
  name: 'dsh-subagent-panel'
  config:
    maxMessages: 500      # max rows rendered by the /subagents command

How it works

  • Inline card registers into tool.call.toolview keyed by wire tool name. The slot is keyed and subagent / subagent_fork are unclaimed, so this plugin owns those rows instead of shadowing anything.
  • Trigger registers into shell.overlay, the additive frame-wide floating layer.
  • Data comes from the catalog ctx.sessions already projects (subagentsByParent). The plugin defines no custom RPC and parses no session logs — the subagents service stays the single authority for parent/child association.
  • Card → child identity: once the call settles, the rendered text carries the id (started subagent <id>), which is matched against the catalog to find the entry (and its mode, which openSubagent validates). While the call is still running there is no catalog entry yet, so the card shows the task description and stays inert rather than guessing which child this call started.

Host command

/subagents lists the current session's direct children with status, mode, and label.