Files
deepseek-harness/examples/echo-agent/composition.md
T
2026-07-20 19:26:04 +08:00

1.7 KiB

Echo Agent App Composition

The echo demo swaps in a local mock LLM and teaching echo tool, then loads the headless one-shot app package.

flowchart LR
  cfg["examples/echo-agent<br/>cordis.yml"]
  plugin_echo_mock_llm["mock-llm<br/>./src/mock-llm.ts"]
  cfg --> plugin_echo_mock_llm
  plugin_echo_echo_tool["echo-tool<br/>./src/echo-tool.ts"]
  cfg --> plugin_echo_echo_tool
  plugin_echo_bash["bash<br/>@deepseek-ai/dsh-bash-local"]
  cfg --> plugin_echo_bash
  plugin_echo_fs_local["fs-local<br/>@deepseek-ai/dsh-fs-local"]
  cfg --> plugin_echo_fs_local
  plugin_echo_cli_agent["cli-agent<br/>@deepseek-ai/dsh-cli-demo"]
  cfg --> plugin_echo_cli_agent
  plugin_echo_cli_agent --> bundle_agent_core["@deepseek-ai/dsh-agent-spine-demo"]
  plugin_echo_cli_agent --> bundle_jsonl["@deepseek-ai/dsh-session-persistence-jsonl"]
  plugin_echo_cli_agent --> frontdoor_cli["one-shot driver<br/>format-pure stdout<br/>fresh top-level 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
mock-llm ./src/mock-llm.ts
echo-tool ./src/echo-tool.ts
bash @deepseek-ai/dsh-bash-local
fs-local @deepseek-ai/dsh-fs-local
cli-agent @deepseek-ai/dsh-cli-demo

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

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