cordis.patch.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  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. personaSuffix: Your working directory is {{cwd}}.
  17. personaPrefix: >-
  18. You are a coding agent powered by the {{model}} model.
  19. # Full-text session search is opt-in (the base row's `openAt: never`). This
  20. # restatement keeps the Web values on one ephemeral in-memory index; a
  21. # deployment enabling content search overrides `openAt` to `first-search` in a
  22. # later patch layer, which defers the node:sqlite import and in-memory handle
  23. # to the first search so Node 22 startup stays quiet.
  24. - id: session-query-sqlite
  25. config:
  26. path: ':memory:'
  27. openAt: never
  28. - id: tools
  29. config:
  30. # TEMPORARY workaround: DSH_TOOLS_MODE (native|ptc|both) opts a whole dsh
  31. # process into PTC mode while per-session tool-presentation selection is being
  32. # designed; unset keeps the schema default (native). Remove the env seam
  33. # once the web UI owns the choice per session.
  34. mode: !!js process.env.DSH_TOOLS_MODE
  35. # ── web-only host rows, the transport layer, and the browser roster ─────────
  36. # `dsh.client` rows are the browser roster the modules node half scans into
  37. # window.__DSH_BOOT__; the modules row is simultaneously a host row.
  38. - insert:
  39. # Host-owned opt-in sampled when a new Web session receives its preset
  40. # delegation tools. The Plugins page edits this settings namespace.
  41. - id: subagent-model-selection-settings
  42. name: '@deepseek-ai/dsh-tool-subagent/model-selection-settings'
  43. - id: code-runtime
  44. name: '@deepseek-ai/dsh-code-runtime-worker-thread'
  45. - id: message-feedback
  46. name: '@deepseek-ai/dsh-message-feedback'
  47. config:
  48. maxNoteBytes: 8192
  49. # Browser Session export: `/export` command plus the shared download dialog.
  50. - id: session-log-download
  51. name: '@deepseek-ai/dsh-session-log-export'
  52. # Session-header "Open In..." split button over the host application
  53. # resolution (macOS/Windows/Linux; a host with no resolved application
  54. # renders no button). Two halves: the host routes and the browser surface.
  55. - id: open-in-app
  56. name: '@deepseek-ai/dsh-host-open-in-app'
  57. config:
  58. probeTimeoutMs: 10000
  59. iconTimeoutMs: 10000
  60. launchWatchMs: 1000
  61. - id: ui-open-in-app
  62. name: '@deepseek-ai/dsh-client-ui-open-in-app'
  63. - id: workspace
  64. name: '@deepseek-ai/dsh-workspace'
  65. - id: session-reference
  66. name: '@deepseek-ai/dsh-session-reference'
  67. - id: file-reference-local
  68. name: '@deepseek-ai/dsh-file-reference-local'
  69. # Whole-log turn/step counts for the chat stats strip (the sessionStats
  70. # projection key); the projection registry itself is a base-layer row.
  71. - id: session-stats
  72. name: '@deepseek-ai/dsh-session-stats'
  73. # Whole-log turn outline for the chat turn rail (the turnOutline
  74. # projection key): every turn stays navigable before its events page in.
  75. - id: session-turn-outline
  76. name: '@deepseek-ai/dsh-session-turn-outline'
  77. # Resolve bind host, SSH launch, and display once at boot, then mount the
  78. # matching dual-face directory picker. Mount -native or -browse directly in
  79. # an overlay to pin the interaction.
  80. - id: directory-picker
  81. name: '@deepseek-ai/dsh-host-directory-picker-auto'
  82. # Read-only projection of current Loader entries for trusted client RPCs.
  83. - id: plugin-inventory
  84. name: '@deepseek-ai/dsh-host-plugin-inventory'
  85. # Session commands, cold reads, and live control over Typert Remote.
  86. - id: session-controller
  87. name: '@deepseek-ai/dsh-api-session-controller'
  88. # Workspace file service: bounded read, directory listing, and the
  89. # agent-write change feed inside the session workspace root.
  90. - id: workspace-files
  91. name: '@deepseek-ai/dsh-api-workspace-files'
  92. # Configuration-surface reads and writes over Typert Remote. Each method
  93. # reports an actionable error when its settings-domain provider is absent.
  94. - id: settings-controller
  95. name: '@deepseek-ai/dsh-api-settings-controller'
  96. # Workspace commands and reconnect-safe projection over Typert Remote.
  97. - id: workspace-controller
  98. name: '@deepseek-ai/dsh-api-workspace-controller'
  99. - id: cordis-host-runner
  100. name: '@deepseek-ai/dsh-cordis-host-runner'
  101. # Ordinary provider for the parsed Web flags. Its plugin-level injection
  102. # waits for cmdlineArgs; no launcher metadata or special row kind is needed.
  103. - id: web-startup
  104. name: '@deepseek-ai/dsh-web-app/startup'
  105. # ── layer 2: transport/service ──────────────────────────────────────────────
  106. # Plain route-registration carrier; host and port come from the app's
  107. # webStartup provider, with these deployment fallbacks. The dist is served by
  108. # the web-runtime row below through the fallback seat.
  109. - id: webserver
  110. name: '@deepseek-ai/dsh-host-webserver'
  111. inject: [webStartup]
  112. config:
  113. host: !!js ctx.webStartup.host ?? '127.0.0.1'
  114. port: !!js ctx.webStartup.port ?? 3080
  115. compression: gzip
  116. compressionLevel: 1
  117. compressionThresholdBytes: 1024
  118. # Web glue owned by this bundle: resolves the built frontend dist (an
  119. # assembly fact of dsh-web-app, never user config), mounts the
  120. # frontend-static fallback owner, registers the web-surface prompt
  121. # section and the bash runtime variable, prints the URL line, and opens the
  122. # canonical local URL after the full tree settles. The webStartup provider
  123. # supplies invocation-only values; after the server binds, this row samples
  124. # LAN trust once and provides `webRuntime`. A complete agent-preset persona
  125. # suppresses the prompt section for that agent while retaining the host-owned
  126. # shell variable.
  127. - id: web-runtime
  128. name: '@deepseek-ai/dsh-web-app'
  129. inject: [webStartup]
  130. config:
  131. openBrowser: !!js ctx.webStartup.openBrowser
  132. printUrl: true
  133. surfaceContext: true
  134. trustedHosts: !!js ctx.webStartup.trustedHosts
  135. # The client-plugin reload chain, always mounted: it is idle until a
  136. # rebuild watcher (pnpm run dev:web) actually rewrites client bundles. It
  137. # is a row rather than a child of web-runtime because its node half is a
  138. # client-side package, which a host-side bundle cannot import.
  139. - id: client-hmr
  140. name: '@deepseek-ai/dsh-client-hmr'
  141. # ── browser plugin roster (dsh.client rows; node halves are layer-2 hosts) ──
  142. # Dual-face: the node half scans this tree, composes window.__DSH_BOOT__,
  143. # and serves /plugins/<id>/client.js; the browser half is the module table
  144. # the shell kernel constructs before cordis exists (adopted as a plugin
  145. # entry by the kernel, never fetched).
  146. - id: modules
  147. name: '@deepseek-ai/dsh-client-modules'
  148. # Owns both ends of the web transport: node half binds the gateway to the
  149. # webserver under /api; browser half is the fetch/SSE client.
  150. - id: connection
  151. name: '@deepseek-ai/dsh-client-connection'
  152. inject: [webRuntime]
  153. config:
  154. # LAN literals derived from the active bind plus --trusted-host extras.
  155. # A deployment adding authorities keeps this expression and concatenates
  156. # its literals, for example: ['app.internal', ...ctx.webRuntime.trustedHosts].
  157. trustedHosts: !!js ctx.webRuntime.trustedHosts
  158. # Raw Blob and ReadableStream uploads run independently of Connection's
  159. # RPC and generation service.
  160. - id: file-upload
  161. name: '@deepseek-ai/dsh-client-file-upload'
  162. - id: api-remotes
  163. name: '@deepseek-ai/dsh-api-remotes'
  164. - id: cordis-client-runner
  165. name: '@deepseek-ai/dsh-cordis-client-runner'
  166. - id: ui-theme
  167. name: '@deepseek-ai/dsh-client-ui-theme'
  168. - id: locale
  169. name: '@deepseek-ai/dsh-client-locale'
  170. - id: ui-layout
  171. name: '@deepseek-ai/dsh-client-ui-layout'
  172. - id: ui-renderer
  173. name: '@deepseek-ai/dsh-client-ui-renderer'
  174. - id: ui-session
  175. name: '@deepseek-ai/dsh-client-ui-session'
  176. # Unified resource model: protocol providers behind the useResource hook.
  177. - id: resources
  178. name: '@deepseek-ai/dsh-client-resources'
  179. - id: ui-sidebar
  180. name: '@deepseek-ai/dsh-client-ui-sidebar'
  181. # The right Sidebar: one docking surface per session over ui-dockkit.
  182. - id: ui-sidebar-right
  183. name: '@deepseek-ai/dsh-client-ui-sidebar-right'
  184. # The right Sidebar's first outside tab type: workspace text files, read
  185. # through the bounded workspaceFiles endpoint.
  186. - id: ui-sidebar-textpreview
  187. name: '@deepseek-ai/dsh-client-ui-sidebar-textpreview'
  188. # The right Sidebar's workspace file tree tab type.
  189. - id: ui-sidebar-files
  190. name: '@deepseek-ai/dsh-client-ui-sidebar-files'
  191. - id: ui-settings
  192. name: '@deepseek-ai/dsh-client-ui-settings'
  193. - id: ui-settings-general
  194. name: '@deepseek-ai/dsh-client-ui-settings-general'
  195. - id: ui-settings-models
  196. name: '@deepseek-ai/dsh-client-ui-settings-models'
  197. - id: ui-settings-plugin-inventory
  198. name: '@deepseek-ai/dsh-client-ui-settings-plugin-inventory'
  199. - id: ui-conversation
  200. name: '@deepseek-ai/dsh-client-ui-conversation'
  201. - id: ui-approval
  202. name: '@deepseek-ai/dsh-client-ui-approval'
  203. - id: ui-chat
  204. name: '@deepseek-ai/dsh-client-ui-chat'
  205. # Official occupants for the generic sidebar and conversation brand slots.
  206. - id: ui-brand-official
  207. name: '@deepseek-ai/dsh-client-ui-brand-official'
  208. - id: ui-attachment
  209. name: '@deepseek-ai/dsh-client-ui-attachment'
  210. # Tool call tree, generic fallback, and keyed business Tool views.
  211. - id: ui-tool
  212. name: '@deepseek-ai/dsh-client-ui-tool'
  213. - id: ui-cordis
  214. name: '@deepseek-ai/dsh-client-ui-cordis'
  215. # Durable workflow lifecycle as an independent Chat node after the
  216. # existing generic workflow tool row.
  217. - id: ui-workflow-run
  218. name: '@deepseek-ai/dsh-client-ui-workflow-run'
  219. # Turn tail: the produced-files row under each closing assistant message.
  220. # Remove this entry to turn the surface off; the tail hole renders empty.
  221. - id: ui-deliverables
  222. name: '@deepseek-ai/dsh-client-ui-deliverables'
  223. - id: ui-workspace
  224. name: '@deepseek-ai/dsh-client-ui-workspace'
  225. # Input triggers: the '/' | '@' pipeline (ui-input-trigger), the command surface over
  226. # it (ui-commands), and the reference sources (ui-skill / ui-reference).
  227. - id: ui-input-trigger
  228. name: '@deepseek-ai/dsh-client-ui-input-trigger'
  229. - id: ui-commands
  230. name: '@deepseek-ai/dsh-client-ui-commands'
  231. - id: ui-skill
  232. name: '@deepseek-ai/dsh-client-ui-skill'
  233. - id: ui-subagent
  234. name: '@deepseek-ai/dsh-client-ui-subagent'
  235. - id: ui-reference
  236. name: '@deepseek-ai/dsh-client-ui-reference'
  237. # Read-only active Schedule catalog. The shipped Web graph resolves the
  238. # client package but leaves it disabled; the explicit Schedule overlay
  239. # enables this same row together with the host Schedule services.
  240. - id: ui-schedule
  241. name: '@deepseek-ai/dsh-client-ui-schedule'
  242. disabled: true
  243. # Background jobs: the session-header list over the jobsBySession mirror.
  244. - id: ui-jobs
  245. name: '@deepseek-ai/dsh-client-ui-jobs'
  246. # Goal surface: GoalBar in the input dock over the goal session projection.
  247. - id: ui-goal
  248. name: '@deepseek-ai/dsh-client-ui-goal'
  249. # Per-message feedback: Like/Dislike plus an optional note in the
  250. # assistant-message action strip, over the messageFeedback Remote.
  251. - id: ui-message-feedback
  252. name: '@deepseek-ai/dsh-client-ui-message-feedback'
  253. # Model selection: the /model popupSelect + composer seat over session.models.
  254. - id: ui-model-selection
  255. name: '@deepseek-ai/dsh-client-ui-model-selection'
  256. - id: ui-permission
  257. name: '@deepseek-ai/dsh-client-ui-permission-presets'
  258. # The agent-preset row in General settings: the default preset for
  259. # sessions created later. Absent a roster it renders nothing.
  260. - id: ui-agent-preset
  261. name: '@deepseek-ai/dsh-client-ui-agent-preset'
  262. # Plugin configuration: the host-plane sections a user owns, as expandable
  263. # cards. A namespace this deployment does not expose renders nothing.
  264. - id: ui-settings-plugins
  265. name: '@deepseek-ai/dsh-client-ui-settings-plugins'
  266. # Plan control: the composer plan seat over the plan projection + /plan channel.
  267. - id: ui-plan
  268. name: '@deepseek-ai/dsh-client-ui-plan'
  269. - id: ui-user-questions
  270. name: '@deepseek-ai/dsh-client-ui-user-questions'
  271. - id: ui-trajectory
  272. name: '@deepseek-ai/dsh-client-ui-trajectory'
  273. # ── the agent plane moves behind agent presets ─────────────────────────────
  274. #
  275. # Every row below composes what ONE agent contributes to the host registries:
  276. # its tools, its prompt sections, its delegation backends. The base keeps them
  277. # for the TUI, which is single-session and composes its agent process-wide; the
  278. # Web surface disables them here and lets each session mount a preset instead.
  279. #
  280. # Disabling rather than deleting is deliberate: the base is shared, and a row
  281. # absent from a surface overlay would silently reappear the day someone reorders
  282. # the composition.
  283. # `shell-env` STAYS in the host plane: `apps/cli/src/web.ts` injects it to
  284. # publish `DSH_WEB_URL`/`DSH_WEB_MODE`, and a host row that injects a service is
  285. # the criterion for host-plane ownership — injection resolves before any session
  286. # exists, so there is no agent to key by. Behind a preset realm those variables
  287. # would never reach the model's shell at all.
  288. - id: tool-bash
  289. disabled: true
  290. - id: tool-pwsh
  291. disabled: true
  292. # The background-job REGISTRY stays on the host plane; only the model-facing
  293. # `job_*` controls move. Its producers — `tool-bash` here, `tool-terminal` and a
  294. # non-continuable `tool-subagent` elsewhere — are preset rows that resolve it
  295. # with `ctx.get`, and an entry-local realm around the registry is invisible to
  296. # every sibling row outside that realm, so `run_in_background` answered
  297. # "background jobs unavailable" while the controls sat in the catalog. That is
  298. # the `goals` criterion read from inside the preset: a Service a row outside its
  299. # realm READS belongs to the plane both can see. The registry is keyed by owning
  300. # agent, so one host instance serves every session exactly as before presets.
  301. - id: tool-jobs
  302. disabled: true
  303. - id: tool-fs
  304. disabled: true
  305. - id: tool-fs-search
  306. disabled: true
  307. # The `skill` REGISTRY stays in the host plane. It is host+per-scope layered
  308. # (the tools-registry shape): deployment-level providers — repository plugins,
  309. # a host skill-filesystem row — register into its global layer, while a preset's
  310. # `skill-filesystem` registers into that preset's layer, and each agent reads the
  311. # merged catalog its scope chain selects. Only the per-agent rows move behind
  312. # presets: the base host `skill-filesystem` row is disabled here (presets own local
  313. # discovery), and `tool-skill` is what a preset mounts to give its agent the
  314. # catalog and loader at all.
  315. - id: skill-filesystem
  316. disabled: true
  317. - id: tool-skill
  318. disabled: true
  319. # The goal service and session driver stay on the host plane, where Gateway
  320. # remotes resolve them. Presets own the human command and model-facing tool.
  321. - id: command-goal
  322. disabled: true
  323. - id: tool-goal
  324. disabled: true
  325. - id: plan-mode
  326. disabled: true
  327. # The token METER stays on the host plane; only the compaction backend that
  328. # reads it moves. It owns the context-meter projection units, and that table is
  329. # process-wide, so preset ownership would make the meter a function of which
  330. # presets happen to be mounted rather than a per-session fact. Same criterion as
  331. # `tasks` and `goals`; the reasoning has one home in
  332. # `.agents/notes/implemented/architecture/2026-08-10-host-plane-ownership-after-presets.md`.
  333. - id: compaction-basic
  334. disabled: true
  335. - id: command-compact
  336. disabled: true
  337. - id: tool-result-pruner
  338. disabled: true
  339. # The subagent registry and its backends STAY in the host plane. `subagents` is
  340. # a process singleton with a cross-session query surface (`listChildren`,
  341. # `followup`) that the host api-proxy serves to the browser, and a provider
  342. # registers under a globally unique name, so a per-session copy would both
  343. # starve that host row and collide on the second session. What a preset
  344. # chooses is which delegation TOOLS its agent sees, below.
  345. - id: tool-subagent-control
  346. disabled: true
  347. - id: tool-subagent-list-agents
  348. disabled: true
  349. - id: tool-subagent
  350. disabled: true
  351. - id: tool-subagent-fork
  352. disabled: true
  353. - id: workflow-worker-thread
  354. disabled: true
  355. - id: tool-workflow
  356. disabled: true
  357. - id: tool-ralph
  358. disabled: true
  359. - id: agent-instructions
  360. disabled: true
  361. - id: tool-todo
  362. disabled: true
  363. - id: tool-web
  364. disabled: true
  365. # The preset roster. The shipped presets are bundled inside
  366. # `dsh-agent-presets` itself and prepended as a read-only `system` root
  367. # (`includeShippedRoot`); `$DSH_HOME/.agent-presets` is where a person — or an
  368. # agent — authors their own, appended by the same package (`includeUserRoot`),
  369. # and carries the same trust as shell access because a preset IS a
  370. # composition. This row only names the default and any deployment-added
  371. # `roots`; no launcher patching is involved.
  372. - insert:
  373. - id: agent-presets
  374. name: '@deepseek-ai/dsh-agent-presets'
  375. config:
  376. default: standard