Files
deepseek-harness/examples/tui-agent/composition.md
T

1.2 KiB

TUI Agent App Composition

The TUI agent reuses the coding-agent backend and tool composition while fixing the shared terminal app to the full-screen dsh-tui front door.

flowchart LR
  cfg["examples/tui-agent<br/>cordis.yml"]
  plugin_tui_base["base<br/>@deepseek-ai/dsh-stdio-demo"]
  cfg --> plugin_tui_base
  plugin_tui_base --> bundle_agent_core["@deepseek-ai/dsh-agent-spine-demo"]
  plugin_tui_base --> bundle_jsonl["@deepseek-ai/dsh-session-persistence-jsonl"]
  plugin_tui_base --> frontdoor_stdio["@deepseek-ai/dsh-tui<br/>pre-created main agent"]
  bundle_agent_core --> spine_llm["ctx.llm"]
  bundle_agent_core --> spine_sessions["ctx.sessions"]
  bundle_agent_core --> spine_tools["ctx.tools + tool-bash"]
  bundle_agent_core --> spine_loop["ctx.agents + ctx.agentLoop"]
Plugin id Package / module
base @deepseek-ai/dsh-stdio-demo

Source config: examples/tui-agent/cordis.yml.

Maintenance mode: hybrid: the leaf plugin list is parsed from its cordis.yml; app package expansion is curated from package source.