cordis.patch.yml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. # The dsh-web-app bundle patch: the browser surface over the dsh-base layer.
  2. # Applied after dsh-base's insert; rows here override base rows by id, with
  3. # the profile's own cordis.patch.yml and any --patch overlays still to come.
  4. #
  5. # A patch replaces the targeted row's whole `config`, so each row below
  6. # restates every key it owns.
  7. #
  8. # The web-startup plugin injects `cmdlineArgs` and provides `webStartup` as an
  9. # ordinary Cordis service. Rows configured from flags inject that service, so
  10. # Loader resolves their expressions only after it exists. The web runtime then
  11. # provides bind-dependent `webRuntime` values to the trust fence.
  12. # `dsh --profile web --help` provides neither service, so no server binds.
  13. # ── surface-specific values the base deliberately omits ─────────────────────
  14. - id: system-prompt
  15. config:
  16. persona: >-
  17. You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.
  18. # TODO: Re-enable shared HMR for Web after its reload lifecycle is tested.
  19. - id: hmr
  20. disabled: true
  21. # Web content search runs on an ephemeral in-memory index. The service
  22. # activates at boot, while first-search defers the node:sqlite import and
  23. # in-memory handle so Node 22 startup stays quiet until content search
  24. # actually uses SQLite. That search then reconciles this boot's sources.
  25. - id: session-query-sqlite
  26. config:
  27. path: ':memory:'
  28. openAt: first-search
  29. - id: tools
  30. config:
  31. # TEMPORARY workaround: DSH_TOOLS_MODE (native|code|both) opts a whole dsh
  32. # process into Code Mode while per-session tool-mode selection is being
  33. # designed; unset keeps the schema default (native). Remove the env seam
  34. # once the web UI owns the choice per session.
  35. mode: !!js process.env.DSH_TOOLS_MODE
  36. # ── web-only host rows, the transport layer, and the browser roster ─────────
  37. # `dsh.client` rows are the browser roster the modules node half scans into
  38. # window.__DSH_BOOT__; the modules row is simultaneously a host row.
  39. - insert:
  40. - id: code-runtime
  41. name: '@deepseek-ai/dsh-code-runtime-worker'
  42. - id: storage
  43. name: '@deepseek-ai/dsh-storage'
  44. - id: storage-json
  45. name: '@deepseek-ai/dsh-storage-json'
  46. config:
  47. root: !!js dshHomePath('storages')
  48. - id: storage-domain
  49. name: '@deepseek-ai/dsh-storage-domain'
  50. config:
  51. backend: json
  52. - id: message-feedback
  53. name: '@deepseek-ai/dsh-message-feedback'
  54. config:
  55. maxNoteBytes: 8192
  56. - id: workspace
  57. name: '@deepseek-ai/dsh-workspace'
  58. - id: session-projection-cache
  59. name: '@deepseek-ai/dsh-session-projection-cache'
  60. config:
  61. writeEveryEvents: 200
  62. writeIntervalMs: 5000
  63. # Resolve bind host, SSH launch, and display once at boot, then mount the
  64. # matching dual-face directory picker. Mount -native or -browse directly in
  65. # an overlay to pin the interaction.
  66. - id: directory-picker
  67. name: '@deepseek-ai/dsh-host-directory-picker-auto'
  68. # The API gateway: the transport-agnostic dispatch face every client shape
  69. # shares. The base layer's agent-default-model service owns the default model.
  70. - id: api-gateway
  71. name: '@deepseek-ai/dsh-host-apiproxy'
  72. # Ordinary provider for the parsed Web flags. Its plugin-level injection
  73. # waits for cmdlineArgs; no launcher metadata or special row kind is needed.
  74. - id: web-startup
  75. name: '@deepseek-ai/dsh-web-app/startup'
  76. # ── layer 2: transport/service ──────────────────────────────────────────────
  77. # Plain route-registration carrier; host and port come from the app's
  78. # webStartup provider, with these deployment fallbacks. The dist is served by
  79. # the web-runtime row below through the fallback seat.
  80. - id: webserver
  81. name: '@deepseek-ai/dsh-host-webserver'
  82. inject: [webStartup]
  83. config:
  84. host: !!js ctx.webStartup.host ?? '127.0.0.1'
  85. port: !!js ctx.webStartup.port ?? 3080
  86. # Web glue owned by this bundle: resolves the built frontend dist (an
  87. # assembly fact of dsh-web-app, never user config), mounts the
  88. # frontend-static fallback owner, registers the web-surface prompt
  89. # section and the bash runtime variable, and prints the URL line. The
  90. # webStartup provider supplies invocation-only values; after the server
  91. # binds, this row samples LAN trust once and provides `webRuntime`. A
  92. # complete agent-preset persona suppresses the prompt section for that
  93. # agent while retaining the host-owned shell variable.
  94. - id: web-runtime
  95. name: '@deepseek-ai/dsh-web-app'
  96. inject: [webStartup]
  97. config:
  98. printUrl: true
  99. surfaceContext: true
  100. trustedHosts: !!js ctx.webStartup.trustedHosts
  101. # The client-plugin reload chain, always mounted: it is idle until a
  102. # rebuild watcher (pnpm run dev:web) actually rewrites client bundles. It
  103. # is a row rather than a child of web-runtime because its node half is a
  104. # client-side package, which a host-side bundle cannot import.
  105. - id: client-hmr
  106. name: '@deepseek-ai/dsh-client-hmr'
  107. # ── browser plugin roster (dsh.client rows; node halves are layer-2 hosts) ──
  108. # Dual-face: the node half scans this tree, composes window.__DSH_BOOT__,
  109. # and serves /plugins/<id>/client.js; the browser half is the module table
  110. # the shell kernel constructs before cordis exists (adopted as a plugin
  111. # entry by the kernel, never fetched).
  112. - id: modules
  113. name: '@deepseek-ai/dsh-client-modules'
  114. # Owns both ends of the web transport: node half binds the gateway to the
  115. # webserver under /api; browser half is the fetch/SSE client.
  116. - id: connection
  117. name: '@deepseek-ai/dsh-client-connection'
  118. inject: [webRuntime]
  119. config:
  120. # LAN literals derived from the active bind plus --trusted-host extras.
  121. # A deployment adding authorities keeps this expression and concatenates
  122. # its literals, for example: ['app.internal', ...ctx.webRuntime.trustedHosts].
  123. trustedHosts: !!js ctx.webRuntime.trustedHosts
  124. - id: api-remotes
  125. name: '@deepseek-ai/dsh-api-remotes'
  126. - id: client-runtime
  127. name: '@deepseek-ai/dsh-client-runtime'
  128. - id: ui-theme
  129. name: '@deepseek-ai/dsh-client-ui-theme'
  130. - id: locale
  131. name: '@deepseek-ai/dsh-client-locale'
  132. - id: ui-layout
  133. name: '@deepseek-ai/dsh-client-ui-layout'
  134. - id: ui-sidebar
  135. name: '@deepseek-ai/dsh-client-ui-sidebar'
  136. - id: ui-settings
  137. name: '@deepseek-ai/dsh-client-ui-settings'
  138. - id: ui-settings-general
  139. name: '@deepseek-ai/dsh-client-ui-settings-general'
  140. - id: ui-models
  141. name: '@deepseek-ai/dsh-client-ui-models'
  142. - id: ui-conversation
  143. name: '@deepseek-ai/dsh-client-ui-conversation'
  144. # Tool call tree, generic fallback, and keyed business Tool views.
  145. - id: ui-tool
  146. name: '@deepseek-ai/dsh-client-ui-tool'
  147. # Durable workflow lifecycle as an independent Chat node after the
  148. # existing generic workflow tool row.
  149. - id: ui-workflow-run
  150. name: '@deepseek-ai/dsh-client-ui-workflow-run'
  151. # Turn tail: the produced-files row under each closing assistant message.
  152. # Remove this entry to turn the surface off; the tail hole renders empty.
  153. - id: ui-deliverables
  154. name: '@deepseek-ai/dsh-client-ui-deliverables'
  155. - id: ui-workspace
  156. name: '@deepseek-ai/dsh-client-ui-workspace'
  157. # Input triggers: the '/' | '@' pipeline (ui-slash), the command surface over
  158. # it (ui-command), and the two reference sources (ui-skill / ui-subagent).
  159. - id: ui-slash
  160. name: '@deepseek-ai/dsh-client-ui-slash'
  161. - id: ui-command
  162. name: '@deepseek-ai/dsh-client-ui-command'
  163. - id: ui-skill
  164. name: '@deepseek-ai/dsh-client-ui-skill'
  165. - id: ui-subagent
  166. name: '@deepseek-ai/dsh-client-ui-subagent'
  167. # Background tasks: the session-header list over the tasksBySession mirror.
  168. - id: ui-task
  169. name: '@deepseek-ai/dsh-client-ui-task'
  170. # Goal surface: GoalBar in the input dock over the goal session projection.
  171. - id: ui-goal
  172. name: '@deepseek-ai/dsh-client-ui-goal'
  173. # Model selection: the /model popupSelect + composer seat over session.models.
  174. - id: ui-model
  175. name: '@deepseek-ai/dsh-client-ui-model'
  176. - id: ui-permission
  177. name: '@deepseek-ai/dsh-client-ui-permission'
  178. # The agent-preset row in General settings: the default preset for
  179. # sessions created later. Absent a roster it renders nothing.
  180. - id: ui-agent-preset
  181. name: '@deepseek-ai/dsh-client-ui-agent-preset'
  182. # Plugin configuration: the host-plane sections a user owns, as expandable
  183. # cards. A namespace this deployment does not expose renders nothing.
  184. - id: ui-plugin-config
  185. name: '@deepseek-ai/dsh-client-ui-plugin-config'
  186. # Plan control: the composer plan seat over the plan projection + /plan channel.
  187. - id: ui-plan
  188. name: '@deepseek-ai/dsh-client-ui-plan'
  189. - id: ui-question
  190. name: '@deepseek-ai/dsh-client-ui-question'
  191. - id: ui-trajectory
  192. name: '@deepseek-ai/dsh-client-ui-trajectory'
  193. # ── the agent plane moves behind agent presets ─────────────────────────────
  194. #
  195. # Every row below composes what ONE agent contributes to the host registries:
  196. # its tools, its prompt sections, its delegation backends. The base keeps them
  197. # for the TUI, which is single-session and composes its agent process-wide; the
  198. # Web surface disables them here and lets each session mount a preset instead.
  199. #
  200. # Disabling rather than deleting is deliberate: the base is shared, and a row
  201. # absent from a surface overlay would silently reappear the day someone reorders
  202. # the composition.
  203. # `bash-env` STAYS in the host plane: `apps/cli/src/web.ts` injects it to
  204. # publish `DSH_WEB_URL`/`DSH_WEB_MODE`, and a host row that injects a service is
  205. # the criterion for host-plane ownership — injection resolves before any session
  206. # exists, so there is no agent to key by. Behind a preset realm those variables
  207. # would never reach the model's shell at all.
  208. - id: tool-bash
  209. disabled: true
  210. # The background-task REGISTRY stays on the host plane; only the model-facing
  211. # `task_*` controls move. Its producers — `tool-bash` here, `tool-pty` and a
  212. # non-continuable `tool-subagent` elsewhere — are preset rows that resolve it
  213. # with `ctx.get`, and an entry-local realm around the registry is invisible to
  214. # every sibling row outside that realm, so `run_in_background` answered
  215. # "background tasks unavailable" while the controls sat in the catalog. That is
  216. # the `goals` criterion read from inside the preset: a Service a row outside its
  217. # realm READS belongs to the plane both can see. The registry is keyed by owning
  218. # agent, so one host instance serves every session exactly as before presets.
  219. - id: tool-tasks
  220. disabled: true
  221. - id: tool-fs
  222. disabled: true
  223. - id: tool-fs-search
  224. disabled: true
  225. - id: tool-str-replace-editor
  226. disabled: true
  227. # The `skill` REGISTRY stays in the host plane. It is host+per-scope layered
  228. # (the tools-registry shape): deployment-level providers — repository plugins,
  229. # a host skill-local row — register into its global layer, while a preset's
  230. # `skill-local` registers into that preset's layer, and each agent reads the
  231. # merged catalog its scope chain selects. Only the per-agent rows move behind
  232. # presets: the base host `skill-local` row is disabled here (presets own local
  233. # discovery), and `tool-skill` is what a preset mounts to give its agent the
  234. # catalog and loader at all.
  235. - id: skill-local
  236. disabled: true
  237. - id: tool-skill
  238. disabled: true
  239. # The goal SERVICE, its session driver, and the `/goal` command STAY on the
  240. # host plane; only the model-facing tool moves. The Gateway serves the goal
  241. # domain as Remote endpoints, and a Remote method picks its receiver Service
  242. # from a generated descriptor — it resolves `goals` on the host, so a
  243. # per-session realm would answer `service-unavailable` for every browser call.
  244. # That is the `bash-env` criterion read from the other side: injection is not
  245. # the only host relationship a Service can have. The registry is keyed by
  246. # session, so one host instance serves every session exactly as before presets.
  247. - id: tool-goal
  248. disabled: true
  249. - id: plan-mode
  250. disabled: true
  251. # The token METER stays on the host plane; only the compaction backend that
  252. # reads it moves. It owns the context-meter projection units, and that table is
  253. # process-wide, so preset ownership would make the meter a function of which
  254. # presets happen to be mounted rather than a per-session fact. Same criterion as
  255. # `tasks` and `goals`; the reasoning has one home in
  256. # `.agents/notes/implemented/architecture/2026-08-10-host-plane-ownership-after-presets.md`.
  257. - id: compact-basic
  258. disabled: true
  259. - id: command-compact
  260. disabled: true
  261. - id: tool-result-prune
  262. disabled: true
  263. # The subagent registry and its backends STAY in the host plane. `subagents` is
  264. # a process singleton with a cross-session query surface (`listChildren`,
  265. # `followup`) that the host api-proxy serves to the browser, and a provider
  266. # registers under a globally unique name, so a per-session copy would both
  267. # starve that host row and collide on the second session. What a preset
  268. # chooses is which delegation TOOLS its agent sees, below.
  269. - id: tool-subagent-control
  270. disabled: true
  271. - id: tool-subagent-list-agents
  272. disabled: true
  273. - id: tool-subagent
  274. disabled: true
  275. - id: tool-subagent-fork
  276. disabled: true
  277. # `tool-subagent-report` is host-plane for the same reason as the registry, not
  278. # because a preset may not want it: it registers a CONTINUABLE SETUP on that
  279. # singleton rather than a tool this agent calls, and the setup list is not
  280. # scope-aware — one copy per mounted preset means every child gets `report`
  281. # registered once per live session, which throws on the second.
  282. - id: workflow-workerthread
  283. disabled: true
  284. - id: tool-workflow
  285. disabled: true
  286. - id: tool-ralph
  287. disabled: true
  288. - id: workspace-context
  289. disabled: true
  290. - id: tool-todo
  291. disabled: true
  292. - id: tool-web
  293. disabled: true
  294. # The preset roster. `config/agent-presets/` ships with the deployment and is
  295. # read-only (its entries carry `system` trust);
  296. # `$DSH_HOME/.agent-presets` is where a person — or an agent — authors their own, and
  297. # carries the same trust as shell access because a preset IS a composition.
  298. # `roots` is an assembly fact, not user config: the shipped preset directory
  299. # ships beside this file, so AppCLIEntry resolves it and patches it in — the
  300. # same treatment `distIndex` gets on the webserver row.
  301. - insert:
  302. - id: agent-presets
  303. name: '@deepseek-ai/dsh-agent-presets'
  304. config:
  305. default: standard