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.

Tui Subagents — DSH Plugin for DeepSeek Harness
← Plugins
T

dsh-tui-subagents

Tui Subagents

Read-only live subagent viewer for dsh-TUI: /subagents lists a session's subagents and opens a full-screen, real-time trajectory view.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:FUSU123fusu/dsh-tui-subagents#934f2ca3a50c2b69c3218cd1dd4ad6b4172c035a
READMECompatibilityVersions

Compatibility and provenance

Tui Subagents is published as dsh-tui-subagents 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
any
Release source
github
Registry updated
8/28/2026

Versions

0.1.0stable
8/28/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
any
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-tui-subagents

dsh-TUI 的子 agent 会话视图:/subagents 列出当前会话的子 agent,Enter 进入全屏轨迹视图,实时跟着子 agent 的思考、工具调用和回复滚动;对**可续(continuable)**子 agent 可以直接发消息纠偏、中断当前轮。对应上游 issue dsh-TUI#223。

English below.

用法

/subagents            " 列出当前会话的子 agent,选择后进入轨迹视图
/subagents a1b2       " 按 id 前缀直接进入某个子 agent 的轨迹

轨迹视图按键:

键作用
↑ / ↓滚动(滚动后退出跟随模式)
PgUp / PgDn翻页
e展开/收起思考
i给可续子 agent 发消息(排入其下一个 turn)
x中断运行中子 agent 的当前轮(3 秒内按两次确认)
G跳到末尾并恢复实时跟随
← / →在兄弟子 agent 间循环切换
Esc返回列表(列表里再按退出)

一次性(one-shot)子 agent 保持只读,与官方 Web 端行为一致。

列表视图:↑/↓ 选择 · Enter 查看 · r 刷新 · Esc 退出。

原理

  • 子 agent 与会话事件走同一个 cordis 事件树:插件在根作用域监听 session/event,按 session id 过滤出目标子 agent 的事件流(assistant/chunk 逐 token、tool/call、tool/result、思考流全有)。
  • 历史回填:子 agent 存活时读 live session 快照;已归档时走 sessionPersistence.inspect() 非破坏读取(不会 resume 子 agent)。
  • 发消息走 ctx.subagents.followup(parent, childId, blocks)(用户身份 source,排队不抢断当前 turn);中断走 ctx.subagents.interrupt(childId, { kind: 'user', parentSessionId })。
  • UI 走 dsh-TUI 的 scene 注册缝(tuiScenes),全屏展示,崩溃只关界面不拖垮 TUI;流式渲染 50ms 帧对齐节流。
  • 机制层零改动:全部走 dsh 本体既有宿主服务(in-process cordis)。

宿主不支持 scene(web、headless)时退化为文本列表,和内置 /agents 一致。

安装

暂未发布到 npm,从源码打包安装:

git clone https://github.com/FUSU123fusu/dsh-tui-subagents.git
cd dsh-tui-subagents
npm pack
dsh plugin --profile <你的profile> add file:dsh-tui-subagents-0.1.0.tgz

开发

node --test              " 单元测试(事件折叠、列表解析、视口切片)
node scratch/replay-real-log.mjs <session目录>   " 用真实 session 日志冒烟

English

A subagent session view for dsh-TUI. /subagents lists the current session's subagents; Enter opens a full-screen trajectory that backfills from the persisted log and follows the child live — reasoning, tool calls, and replies as they stream. Continuable subagents accept follow-up messages (i) and turn interrupts (x); one-shots stay read-only, matching the official Web UI. Implements dsh-TUI#223.

  • Realtime via the cordis session/event feed (child-scope events bubble up the scope tree), 50ms frame-aligned re-renders.
  • Backfill via the live session snapshot or a non-mutating sessionPersistence.inspect() (never resumes the child).
  • Messaging via ctx.subagents.followup; interrupts via ctx.subagents.interrupt with user authority.
  • Full-screen UI through the host's tuiScenes seam; degrades to the plain text list on hosts without it.
  • Zero mechanism-layer change: everything rides existing dsh host services.

MIT