cordis.yml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. # dsh web — the full web-shape composition: host runtime (layer 1), the
  2. # transport/service layer (layer 2), and the browser plugin roster (dshClient
  3. # rows the modules node half scans into window.__DSH_BOOT__). Row order
  4. # carries no load semantics (activation is service-availability driven); the
  5. # grouping below is for readers. `--dev` appends the dsh-client-hmr row in
  6. # code (AppCLIEntry) — prod and dev differ by exactly that one row.
  7. # AppCLIEntry patches this tree before boot: profile json + CLI flags +
  8. # distIndex land as config patches over the rows below (yaml = engineering
  9. # defaults, json = user config, user wins per field).
  10. # ── layer 1: runtime ────────────────────────────────────────────────────────
  11. - id: timer
  12. name: '@cordisjs/plugin-timer'
  13. - id: llm
  14. name: '@deepseek-ai/dsh-llm'
  15. - id: session
  16. name: '@deepseek-ai/dsh-session'
  17. # Projection registry: drives every registered domain unit over committed
  18. # session events and serves finished values (history-tail projections block +
  19. # session/projection frames). Without this row every domain's optional unit
  20. # injection stays silent — no block, no frames, no titles/todos on the web.
  21. - id: session-projection
  22. name: '@deepseek-ai/dsh-session-projection'
  23. - id: session-title
  24. name: '@deepseek-ai/dsh-session-title'
  25. config:
  26. fallbackMaxWords: 5
  27. fallbackMaxBytes: 40
  28. maxTitleBytes: 80
  29. # Model-made titles on the first-message cadence (the web sidebar renders
  30. # session/title). Same values as the TUI composition.
  31. - id: session-title-llm
  32. name: '@deepseek-ai/dsh-session-title-first-message-llm'
  33. config:
  34. targetWords: 5
  35. targetCjkCharacters: 10
  36. maxInputBytes: 4096
  37. maxOutputTokens: 64
  38. timeoutMs: 60000
  39. - id: system-prompt
  40. name: '@deepseek-ai/dsh-system-prompt'
  41. config:
  42. persona: ''
  43. - id: tools
  44. name: '@deepseek-ai/dsh-tools'
  45. config:
  46. # TEMPORARY workaround: DSH_TOOLS_MODE (native|code|both) opts a whole dsh
  47. # process into Code Mode while per-session tool-mode selection is being
  48. # designed; unset keeps the schema default (native). Remove the env seam
  49. # once the web UI owns the choice per session.
  50. mode: !!js process.env.DSH_TOOLS_MODE
  51. # Code Mode substrate for the row above. Mounted unconditionally because
  52. # Loader metadata is static (no conditional rows): a native-mode boot only
  53. # registers the service — a worker thread spawns per run_code execution.
  54. - id: code-runtime
  55. name: '@deepseek-ai/dsh-code-runtime-worker'
  56. - id: user-interaction
  57. name: '@deepseek-ai/dsh-user-interaction'
  58. - id: agent
  59. name: '@deepseek-ai/dsh-agent'
  60. - id: tasks
  61. name: '@deepseek-ai/dsh-tasks-local'
  62. - id: agent-loop
  63. name: '@deepseek-ai/dsh-agent-loop'
  64. config:
  65. agents: []
  66. # The native DeepSeek adapter; reads the key/base-url the boot's layered
  67. # .env loading (cwd then $DSH_HOME) left in the environment.
  68. - id: llm-deepseek
  69. name: '@deepseek-ai/dsh-llm-deepseek'
  70. config:
  71. apiKey: !!js process.env.DEEPSEEK_API_KEY
  72. baseURL: !!js process.env.DEEPSEEK_BASE_URL
  73. # Transient-failure recovery around the loop's model calls (same policy as
  74. # the TUI's agent-spine composition; defaults: 2 retries, 500ms→10s backoff).
  75. - id: llm-retry
  76. name: '@deepseek-ai/dsh-llm-retry'
  77. # Session store root. AppCLIEntry resolves the engineering default to a
  78. # global dir under the Harness home ($DSH_HOME, else ~/.dsh): sessions live
  79. # in one place across every cwd, not a project-local ./.sessions. The
  80. # persistenceRoot profile key (user config) still overrides this per field.
  81. - id: session-persistence-jsonl
  82. name: '@deepseek-ai/dsh-session-persistence-jsonl'
  83. config:
  84. root: './.sessions'
  85. - id: storage
  86. name: '@deepseek-ai/dsh-storage'
  87. - id: storage-json
  88. name: '@deepseek-ai/dsh-storage-json'
  89. config:
  90. root: './.storages'
  91. - id: storage-domain
  92. name: '@deepseek-ai/dsh-storage-domain'
  93. config:
  94. backend: json
  95. - id: workspace
  96. name: '@deepseek-ai/dsh-workspace'
  97. # Persisted projection cache: durable per-session checkpoints of every
  98. # registered projection unit (json backend → ./.storages/session_projcache.json,
  99. # beside workspace.json), throttled between the two mandatory points
  100. # (turn/end + detach), serving cold listings without full-log loads.
  101. - id: session-projection-cache
  102. name: '@deepseek-ai/dsh-session-projection-cache'
  103. config:
  104. writeEveryEvents: 200
  105. writeIntervalMs: 5000
  106. # Managed child-process groups for the bash executor (spawn/kill/output plumbing).
  107. - id: subprocess
  108. name: '@deepseek-ai/dsh-subprocess-local'
  109. - id: bash-local
  110. name: '@deepseek-ai/dsh-bash-local'
  111. - id: tool-bash
  112. name: '@deepseek-ai/dsh-tool-bash'
  113. - id: tool-todo
  114. name: '@deepseek-ai/dsh-tool-todo'
  115. - id: tool-tasks
  116. name: '@deepseek-ai/dsh-tool-tasks'
  117. # fs cwd stays the package default (process.cwd()) — the same value the
  118. # gateway injects into session.cwd, so paths and sessions agree.
  119. - id: fs-local
  120. name: '@deepseek-ai/dsh-fs-local'
  121. - id: fs-policy
  122. name: '@deepseek-ai/dsh-fs-policy'
  123. - id: tool-fs
  124. name: '@deepseek-ai/dsh-tool-fs'
  125. - id: tool-fs-search
  126. name: '@deepseek-ai/dsh-tool-fs-search'
  127. - id: workspace-context
  128. name: '@deepseek-ai/dsh-workspace-context'
  129. config:
  130. maxBytes: 65536
  131. - id: skill
  132. name: '@deepseek-ai/dsh-skill'
  133. - id: skill-local
  134. name: '@deepseek-ai/dsh-skill-local'
  135. - id: tool-skill
  136. name: '@deepseek-ai/dsh-tool-skill'
  137. # Host command registry: the single source of truth behind command.list /
  138. # command.execute; the web '/' menu is a pure projection of this registry.
  139. - id: commands
  140. name: '@deepseek-ai/dsh-commands'
  141. # Goal service + automatic same-session continuation + the /goal command.
  142. # The GoalService registers the 'goal' session projection unit; the web
  143. # GoalBar reads it through useProjection.
  144. - id: goal
  145. name: '@deepseek-ai/dsh-goal'
  146. - id: goal-session
  147. name: '@deepseek-ai/dsh-goal-session'
  148. - id: command-goal
  149. name: '@deepseek-ai/dsh-command-goal'
  150. # Plan mode registers /plan (the first real command on the web surface).
  151. # Section text mirrors examples/tui-agent/cordis.yml (the reference
  152. # deployment); plan-mode throws at load on an empty section.
  153. - id: plan-mode
  154. name: '@deepseek-ai/dsh-plan-mode'
  155. config:
  156. section: |
  157. You are in plan mode. Stay in plan mode until exit_plan_mode succeeds or the user switches the session mode. Imperative language to implement changes means plan the implementation, not execute it. A user's conversational agreement — including an answer confirming something you asked — approves nothing and does not end plan mode; fold the confirmed decision into the plan and submit it through exit_plan_mode.
  158. Explore first. Use non-mutating reads, searches, static analysis, and checks to ground the plan in the actual repository. Do not edit or write files, change configuration, run formatters or code generation that rewrites tracked files, commit, or otherwise carry out the plan. Prefer existing functions and patterns over new machinery.
  159. The tool catalog stays the same across modes for request-cache stability. These plan-mode rules override any later tool description or guidance that suggests using mutation tools; those tools remain listed only to keep the request shape stable. Do not use todo_write to track this planning phase: it tracks implementation after an approved plan, while the plan itself belongs in exit_plan_mode.
  160. Resolve discoverable facts by inspection. Use ask_user_question only for user-owned choices or material ambiguity that inspection cannot answer. Do not ask the user where code lives or how current behavior works when you can find out.
  161. Make the plan decision-complete: state the goal and success criteria; group implementation changes by subsystem; identify public API, schema, and data-flow changes; cover edge cases, failure modes, tests, acceptance criteria, and explicit assumptions. Keep it concise enough to review but detailed enough that another engineer can implement it without making design decisions.
  162. When ready, call exit_plan_mode with the complete plan markdown, starting with a # title. Make exit_plan_mode the only and final tool call in that assistant response: it presents the plan for approval, and implementation begins only in a later step after approval. Do not paste the final plan as a plain reply or ask "should I proceed?" through prose or ask_user_question. If review rejects it, incorporate the feedback and present again. If the review channel is unavailable or aborted, stay in plan mode and ask the user to switch modes manually; do not proceed with implementation.
  163. # token-meter rejects unknown config keys — keep this row bare.
  164. - id: token-meter
  165. name: '@deepseek-ai/dsh-token-meter'
  166. - id: compact-basic
  167. name: '@deepseek-ai/dsh-compact-basic'
  168. - id: subagent
  169. name: '@deepseek-ai/dsh-subagent'
  170. - id: subagent-spawn
  171. name: '@deepseek-ai/dsh-subagent-spawn'
  172. config:
  173. providerName: spawn
  174. - id: subagent-fork
  175. name: '@deepseek-ai/dsh-subagent-fork'
  176. config:
  177. providerName: fork
  178. - id: tool-subagent
  179. name: '@deepseek-ai/dsh-tool-subagent'
  180. config:
  181. provider: spawn
  182. toolName: subagent
  183. - id: tool-subagent-fork
  184. name: '@deepseek-ai/dsh-tool-subagent'
  185. config:
  186. provider: fork
  187. toolName: subagent_fork
  188. - id: workflow-workerthread
  189. name: '@deepseek-ai/dsh-workflow-workerthread'
  190. config:
  191. provider: spawn
  192. - id: tool-workflow
  193. name: '@deepseek-ai/dsh-tool-workflow'
  194. - id: timeout-policy
  195. name: '@deepseek-ai/dsh-timeout-policy'
  196. - id: spill-local
  197. name: '@deepseek-ai/dsh-spill-local'
  198. # Omitting maxInlineBytes makes the whole policy a silent no-op — always
  199. # state it explicitly.
  200. - id: spill-policy
  201. name: '@deepseek-ai/dsh-spill-policy'
  202. config:
  203. maxInlineBytes: 50000
  204. # The API gateway: the transport-agnostic dispatch face every client shape
  205. # shares. provider/model are the host default routing — the profile json's
  206. # mapping target (user config overrides these engineering defaults).
  207. - id: api-gateway
  208. name: '@deepseek-ai/dsh-host-apiproxy'
  209. config:
  210. provider: deepseek
  211. model: deepseek-v4-flash
  212. # ── layer 2: transport/service ──────────────────────────────────────────────
  213. # Plain route-registration carrier. distIndex is an assembly fact, not user
  214. # config — AppCLIEntry resolves the frontend dist and patches it in; host and
  215. # port arrive as CLI-flag patches over these defaults.
  216. - id: webserver
  217. name: '@deepseek-ai/dsh-host-webserver'
  218. config:
  219. host: 127.0.0.1
  220. port: 3080
  221. # ── browser plugin roster (dshClient rows; node halves are layer-2 hosts) ──
  222. # Dual-face: node half scans this very tree for dshClient rows, composes
  223. # window.__DSH_BOOT__, serves /plugins/<id>/client.js; browser half is the
  224. # module table the shell kernel constructs before cordis exists (§4.7 —
  225. # adopted as a plugin entry by the kernel, never fetched).
  226. - id: modules
  227. name: '@deepseek-ai/dsh-client-modules'
  228. # Owns both ends of the web transport: node half binds the gateway to the
  229. # webserver under /api; browser half is the fetch/SSE client.
  230. - id: connection
  231. name: '@deepseek-ai/dsh-client-connection'
  232. - id: client-runtime
  233. name: '@deepseek-ai/dsh-client-runtime'
  234. - id: ui-theme
  235. name: '@deepseek-ai/dsh-client-ui-theme'
  236. - id: locale
  237. name: '@deepseek-ai/dsh-client-locale'
  238. - id: ui-layout
  239. name: '@deepseek-ai/dsh-client-ui-layout'
  240. - id: ui-sidebar
  241. name: '@deepseek-ai/dsh-client-ui-sidebar'
  242. - id: ui-settings
  243. name: '@deepseek-ai/dsh-client-ui-settings'
  244. - id: ui-settings-general
  245. name: '@deepseek-ai/dsh-client-ui-settings-general'
  246. - id: ui-models
  247. name: '@deepseek-ai/dsh-client-ui-models'
  248. - id: ui-conversation
  249. name: '@deepseek-ai/dsh-client-ui-conversation'
  250. - id: ui-workspace
  251. name: '@deepseek-ai/dsh-client-ui-workspace'
  252. # Input triggers: the '/' | '@' pipeline (ui-slash), the command surface over
  253. # it (ui-command), and the two reference sources (ui-skill / ui-subagent).
  254. - id: ui-slash
  255. name: '@deepseek-ai/dsh-client-ui-slash'
  256. - id: ui-command
  257. name: '@deepseek-ai/dsh-client-ui-command'
  258. - id: ui-skill
  259. name: '@deepseek-ai/dsh-client-ui-skill'
  260. - id: ui-subagent
  261. name: '@deepseek-ai/dsh-client-ui-subagent'
  262. # Goal surface: GoalBar in the input dock over the goal session projection.
  263. - id: ui-goal
  264. name: '@deepseek-ai/dsh-client-ui-goal'
  265. # Model selection: the /model popupSelect + composer seat over session.models.
  266. - id: ui-model
  267. name: '@deepseek-ai/dsh-client-ui-model'
  268. # Plan control: the composer plan seat over the plan projection + /plan channel.
  269. - id: ui-plan
  270. name: '@deepseek-ai/dsh-client-ui-plan'
  271. - id: ui-question
  272. name: '@deepseek-ai/dsh-client-ui-question'
  273. - id: ui-trajectory
  274. name: '@deepseek-ai/dsh-client-ui-trajectory'