cordis.patch.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. # The dsh-base bundle patch: the shared core of each base-backed profile, applied as
  2. # ONE insert over the empty profile root. Later bundle patches and the user's
  3. # profile cordis.patch.yml address these rows by id, with the last write
  4. # winning per row.
  5. #
  6. # A patch replaces the targeted row's whole `config` rather than merging into
  7. # it, so a row whose value differs by mode does NOT live here: it belongs to
  8. # each mode bundle, keeping any single row down to one bundle layer plus the
  9. # user's. Mode-specific rows appear below only with shared plugin identity and
  10. # neutral defaults; each mode bundle restates its complete configuration.
  11. #
  12. # Row order carries no load semantics (activation is service-availability
  13. # driven); the grouping is for readers.
  14. - insert:
  15. - id: timer
  16. name: '@deepseek-ai/cordis-plugin-timer'
  17. # Module reload is opt-in per profile. `patchReload: live` config watching
  18. # uses the launcher's watch-only fallback and does not require this row.
  19. - id: hmr
  20. name: '@deepseek-ai/cordis-plugin-hmr'
  21. disabled: true
  22. config:
  23. root: ['.']
  24. - id: llm
  25. name: '@deepseek-ai/dsh-llm'
  26. - id: deepseek-llm-api-extensions
  27. name: '@deepseek-ai/dsh-deepseek-llm-api-extensions'
  28. - id: session
  29. name: '@deepseek-ai/dsh-session'
  30. - id: session-log-deepseek
  31. name: '@deepseek-ai/dsh-session-log-deepseek'
  32. - id: typert
  33. name: '@deepseek-ai/dsh-typert-registry'
  34. - id: typert-loader
  35. name: '@deepseek-ai/dsh-typert-loader'
  36. - id: typert-gateway
  37. name: '@deepseek-ai/dsh-api-gateway'
  38. - id: session-title
  39. name: '@deepseek-ai/dsh-session-title'
  40. config:
  41. fallbackMaxWords: 5
  42. fallbackMaxBytes: 40
  43. maxTitleBytes: 80
  44. - id: session-title-llm
  45. name: '@deepseek-ai/dsh-session-title-first-prompt-llm'
  46. config:
  47. targetWords: 5
  48. targetCjkCharacters: 10
  49. maxInputBytes: 4096
  50. maxOutputTokens: 64
  51. timeoutMs: 60000
  52. - id: user-questions
  53. name: '@deepseek-ai/dsh-user-questions'
  54. - id: agent
  55. name: '@deepseek-ai/dsh-agent'
  56. - id: plugin-package-inventory-deepseek
  57. name: '@deepseek-ai/dsh-plugin-package-inventory-deepseek'
  58. # The transport-independent default for Agents created by entry points.
  59. # Settings may supply a saved selection; consumers read it at creation time.
  60. - id: agent-default-model
  61. name: '@deepseek-ai/dsh-agent-default-model'
  62. config:
  63. provider: deepseek-official
  64. model: deepseek-v4-flash
  65. - id: jobs
  66. name: '@deepseek-ai/dsh-jobs-local'
  67. - id: llm-retry
  68. name: '@deepseek-ai/dsh-llm-retry'
  69. # User-settings document (`$DSH_HOME/settings.yaml`, hot-reloaded): a
  70. # `llm-deepseek:` or `llm-pi-ai:` section there overrides the adapter entries
  71. # below without a restart, and is what the web Models page writes.
  72. - id: settings
  73. name: '@deepseek-ai/dsh-settings-file'
  74. # Credential sources: inherited environment over the managed
  75. # `$DSH_HOME/.credentials.yaml`, with project and user `.env` fallbacks.
  76. # Adapters resolve references per request; the Models page writes only the
  77. # managed document, which is never materialized into the process environment.
  78. - id: credentials
  79. name: '@deepseek-ai/dsh-credentials-local'
  80. # The pi-ai multi-provider twin, mounted dormant: zero routes (and no extra
  81. # models in the picker) until a `llm-pi-ai:` settings section supplies provider
  82. # profiles — then those routes register live, keys resolving per request
  83. # through their apiKeyEnv references, and drop again when the section empties.
  84. # Supplying those profiles is exactly what the web Models page does. Which
  85. # adapters exist is composition; which providers run is the user's settings
  86. # document.
  87. - id: llm-pi-ai
  88. name: '@deepseek-ai/dsh-llm-pi-ai'
  89. - id: session-persistence-jsonl
  90. name: '@deepseek-ai/dsh-session-persistence-jsonl'
  91. config:
  92. root: !!js dshHomePath('sessions')
  93. # Durable image bytes live outside the append-only session log. Messages
  94. # keep content-addressed references that this shared backend resolves for
  95. # provider requests and authorized history reads.
  96. - id: attachment-local
  97. name: '@deepseek-ai/dsh-attachment-local'
  98. # Full-text session search is opt-in. `openAt: never` keeps
  99. # ctx.sessionQuery mounted — exact reads, titles, and lineage traces
  100. # (session export, subagent-fork Workspace inheritance) stay available —
  101. # while search calls fail with SESSION_QUERY_SEARCH_DISABLED and SQLite is
  102. # never opened; the Web sidebar search matches titles and workspace names
  103. # only. Deployments enabling content search override `openAt` to
  104. # `first-search` or `startup` in a later patch layer (profile
  105. # cordis.patch.yml or a --patch overlay), typically with a durable `path`.
  106. - id: session-query-sqlite
  107. name: '@deepseek-ai/dsh-session-query-sqlite'
  108. config:
  109. path: ':memory:'
  110. openAt: never
  111. # Shared projection registry: subagent catalog identity (mode/label) folds
  112. # through its registered units, so the `list_agents` surface below fails
  113. # loud without it; web layers reuse this same mount for list rows.
  114. - id: session-projection
  115. name: '@deepseek-ai/dsh-session-projection'
  116. # Session telemetry is mounted but disabled by default. DSH_TELEMETRY_MODE
  117. # explicitly opts into FULL or FEEDBACK_ONLY reporting; uploading mirrors
  118. # session-log records onto OTLP/HTTP logs with no session-telemetry/record redaction
  119. # rule, so exports are the raw captured copy. The deployment stance, env
  120. # seams, and follow-ups are pinned in the default-off Agent Note.
  121. # DSH_TELEMETRY_OTLP_URL overrides the production endpoint. A non-empty
  122. # DSH_TELEMETRY_DISABLED — any value, including '0'/'false' — opts the
  123. # process out (the launchers patch the row disabled; config cannot disable
  124. # a row). Exports carry the harness home's anonymous user id ($DSH_HOME/.anonymous-user-id,
  125. # random UUID; delete the file to reset the identity) as the Resource's
  126. # user.id. The exporter/processor values normally bound the shutdown drain
  127. # to ~1s against an unreachable collector: exporter.timeoutMillis is both
  128. # the per-attempt socket timeout and the retry deadline (1s effectively
  129. # disables the SDK's 5-try backoff), while maxExportBatchSize == maxQueueSize
  130. # (both explicit) makes the drain a single batch. The SDK awaits
  131. # exporter.forceFlush() outside exportTimeoutMillis, so the backend's 3s
  132. # shutdownTimeoutMillis is the load-bearing outer bound when a transport
  133. # promise never settles. Every CLI exit path drains it by disposing the root
  134. # on SIGINT/SIGTERM.
  135. - id: session-telemetry-otel
  136. name: '@deepseek-ai/dsh-session-telemetry-otel'
  137. config:
  138. mode: !!js process.env.DSH_TELEMETRY_MODE || 'DISABLED'
  139. shutdownTimeoutMillis: 3000
  140. exporter:
  141. url: !!js process.env.DSH_TELEMETRY_OTLP_URL ?? 'https://harness-telemetry.deepseeksvc.com/v1/logs'
  142. compression: gzip
  143. timeoutMillis: 1000
  144. processor:
  145. scheduledDelayMillis: 10000
  146. maxQueueSize: 2048
  147. maxExportBatchSize: 2048
  148. exportTimeoutMillis: 1500
  149. - id: subprocess
  150. name: '@deepseek-ai/dsh-subprocess-local'
  151. # Every shipped CLI mode starts with the same file-effect boundary.
  152. # The environment remains an explicit deployment override; otherwise fresh
  153. # sessions pin workspace-write + ask through the permission service below.
  154. - id: sandbox
  155. name: '@deepseek-ai/dsh-sandbox-local'
  156. - id: sandbox-policy
  157. name: '@deepseek-ai/dsh-sandbox-policy'
  158. config:
  159. mode: !!js process.env.DSH_PERMISSION_MODE ?? 'workspace-write'
  160. workspaceRoot: !!js process.cwd()
  161. - id: bash-sandbox
  162. name: '@deepseek-ai/dsh-bash-sandbox'
  163. disabled: !!js process.platform === 'win32'
  164. config:
  165. timeoutMs: 60000
  166. - id: pwsh-sandbox
  167. name: '@deepseek-ai/dsh-pwsh-sandbox'
  168. disabled: !!js process.platform !== 'win32'
  169. - id: approval
  170. name: '@deepseek-ai/dsh-user-approval'
  171. config:
  172. policy: !!js "(process.env.DSH_PERMISSION_MODE ?? 'workspace-write') === 'danger-full-access' ? 'never' : 'ask'"
  173. - id: permission
  174. name: '@deepseek-ai/dsh-permission-presets'
  175. config:
  176. presets:
  177. read-only:
  178. sandbox: read-only
  179. approval: ask
  180. workspace-write:
  181. sandbox: workspace-write
  182. approval: ask
  183. danger-full-access:
  184. sandbox: danger-full-access
  185. approval: never
  186. - id: shell-env
  187. name: '@deepseek-ai/dsh-shell-env'
  188. - id: tool-bash
  189. name: '@deepseek-ai/dsh-tool-bash'
  190. disabled: !!js process.platform === 'win32'
  191. - id: tool-pwsh
  192. name: '@deepseek-ai/dsh-tool-pwsh'
  193. disabled: !!js process.platform !== 'win32'
  194. - id: tool-jobs
  195. name: '@deepseek-ai/dsh-tool-jobs'
  196. - id: fs-observation-policy
  197. name: '@deepseek-ai/dsh-fs-observation-policy'
  198. - id: tool-fs
  199. name: '@deepseek-ai/dsh-tool-fs'
  200. - id: tool-fs-search
  201. name: '@deepseek-ai/dsh-tool-fs-search'
  202. config:
  203. sampleOverCapGlobResults: false
  204. - id: agent-instructions
  205. name: '@deepseek-ai/dsh-agent-instructions'
  206. config:
  207. maxBytes: 65536
  208. - id: skill
  209. name: '@deepseek-ai/dsh-skill'
  210. - id: skill-filesystem
  211. name: '@deepseek-ai/dsh-skill-filesystem'
  212. - id: skill-badge
  213. name: '@deepseek-ai/dsh-skill-badge'
  214. disabled: true
  215. - id: tool-skill
  216. name: '@deepseek-ai/dsh-tool-skill'
  217. - id: commands
  218. name: '@deepseek-ai/dsh-commands'
  219. - id: command-feedback
  220. name: '@deepseek-ai/dsh-command-feedback'
  221. - id: goal
  222. name: '@deepseek-ai/dsh-goal'
  223. - id: goal-round-driver
  224. name: '@deepseek-ai/dsh-goal-round-driver'
  225. - id: command-goal
  226. name: '@deepseek-ai/dsh-command-goal'
  227. - id: plan-mode
  228. name: '@deepseek-ai/dsh-plan-mode'
  229. config:
  230. section: |
  231. 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.
  232. 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.
  233. 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.
  234. 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.
  235. 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.
  236. 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.
  237. - id: token-meter
  238. name: '@deepseek-ai/dsh-token-meter'
  239. - id: compaction-basic
  240. name: '@deepseek-ai/dsh-compaction-basic'
  241. # Human `/compact`: one useful reduction below the automatic threshold. Backend
  242. # independent, so it follows whichever compaction service this leaf mounts.
  243. - id: command-compact
  244. name: '@deepseek-ai/dsh-command-compact'
  245. - id: subagent
  246. name: '@deepseek-ai/dsh-subagent'
  247. - id: subagent-spawn-in-process
  248. name: '@deepseek-ai/dsh-subagent-spawn-in-process'
  249. config:
  250. providerName: spawn
  251. - id: subagent-fork-in-process
  252. name: '@deepseek-ai/dsh-subagent-fork-in-process'
  253. config:
  254. providerName: fork
  255. # Continuable background children are selected per delegation tool. The
  256. # separately loaded follow-up tool registers the one global `send_message`.
  257. - id: tool-subagent-control
  258. name: '@deepseek-ai/dsh-tool-subagent-control'
  259. - id: tool-subagent-list-agents
  260. name: '@deepseek-ai/dsh-tool-subagent-control/list-agents'
  261. - id: tool-subagent
  262. name: '@deepseek-ai/dsh-tool-subagent'
  263. config:
  264. provider: spawn
  265. toolName: subagent
  266. enableModelSelection: true
  267. backgroundMode: continuable
  268. # Fork omits model selection so provider/model stay equal to the parent and
  269. # the inherited history remains eligible for KV Cache reuse. It stays one-shot
  270. # because a continuable child's `report` tool and prompt section precede that
  271. # history and invalidate the same prefix.
  272. # See .agents/notes/implemented/feature/2026-08-18-model-selected-subagent-routes.md
  273. # and .agents/notes/implemented/architecture/2026-08-10-fork-children-stay-one-shot.md.
  274. - id: tool-subagent-fork
  275. name: '@deepseek-ai/dsh-tool-subagent'
  276. config:
  277. provider: fork
  278. toolName: subagent_fork
  279. backgroundMode: one-shot
  280. # Optional direct-child return channel; absent from roots and one-shot agents.
  281. - id: tool-subagent-report
  282. name: '@deepseek-ai/dsh-tool-subagent-report'
  283. - id: workflow-worker-thread
  284. name: '@deepseek-ai/dsh-workflow-worker-thread'
  285. config:
  286. provider: spawn
  287. - id: tool-workflow
  288. name: '@deepseek-ai/dsh-tool-workflow'
  289. - id: timeout-policy
  290. name: '@deepseek-ai/dsh-tool-call-timeout-policy'
  291. - id: spill-local
  292. name: '@deepseek-ai/dsh-spill-local'
  293. - id: spill-policy
  294. name: '@deepseek-ai/dsh-spill-policy'
  295. config:
  296. maxInlineBytes: 50000
  297. # Durability checkpoints before each model request and top-level dispatch.
  298. - id: session-checkpoint-policy
  299. name: '@deepseek-ai/dsh-session-checkpoint-policy'
  300. # Compacts oversized tool results before the broader conversation compactor
  301. # runs, preserving the model-visible result within the configured budget.
  302. - id: tool-result-pruner
  303. name: '@deepseek-ai/dsh-compaction-tool-result-pruner'
  304. config:
  305. thresholdChars: 8192
  306. headChars: 4096
  307. tailChars: 1024
  308. - id: tool-todo
  309. name: '@deepseek-ai/dsh-tool-todo'
  310. config:
  311. allowParallelInProgress: true
  312. # Persisted same-session goals reach the model and the slash menu here; the
  313. # domain, driver, and `/goal` command are above.
  314. - id: tool-goal
  315. name: '@deepseek-ai/dsh-tool-goal'
  316. # Fresh-agent Ralph iteration over a build-time-fixed script.
  317. - id: tool-ralph
  318. name: '@deepseek-ai/dsh-tool-ralph'
  319. config:
  320. subagentProvider: spawn
  321. maxRounds: 64
  322. - id: tool-str-replace-editor
  323. name: '@deepseek-ai/dsh-tool-str-replace-editor'
  324. config:
  325. maxOutputChars: 16000
  326. # Consecutive-repeat reminders on the tool chain.
  327. - id: repeat-tool-reminder
  328. name: '@deepseek-ai/dsh-repeat-tool-reminder'
  329. config:
  330. thresholds: [3, 5, 8]
  331. argumentsPreviewChars: 500
  332. # Every mode enables the stable model-facing web_search tool. DeepSeek search
  333. # resolves the same DEEPSEEK_API_KEY credential the Models page manages for
  334. # chat, at each search; its Messages endpoint is separate from the
  335. # chat-completions endpoint, so it takes its own base-URL override. Fetch stays
  336. # disabled and no fetch provider is mounted: that provider defers SSRF
  337. # protection and the model would choose the request target. Search is a full
  338. # auxiliary model request with server-side retrieval, so this shipped DeepSeek
  339. # route gets 60s while the provider-neutral tool default remains 30s.
  340. - id: web
  341. name: '@deepseek-ai/dsh-web'
  342. config:
  343. searchProvider: deepseek-official
  344. - id: web-search-deepseek
  345. name: '@deepseek-ai/dsh-web-search-deepseek'
  346. config:
  347. apiKeyEnv: DEEPSEEK_API_KEY
  348. - id: tool-web
  349. name: '@deepseek-ai/dsh-tool-web'
  350. config:
  351. fetch: false
  352. searchTimeoutMs: 60000
  353. # ── rows every mode mounts, whose values each overlay may state ──────────────
  354. # The tool registry. Presentation mode is a deployment choice; omitting it here
  355. # keeps the schema default (native).
  356. - id: tools
  357. name: '@deepseek-ai/dsh-tools'
  358. # The deployment persona is a deployment choice; plan-mode and tool plugins own
  359. # their own prompt sections.
  360. - id: system-prompt
  361. name: '@deepseek-ai/dsh-system-prompt'
  362. config:
  363. persona: ''
  364. # Agents created at startup. The base stays empty; raw overlays may create
  365. # agents, while Web creates sessions on client request.
  366. - id: agent-loop
  367. name: '@deepseek-ai/dsh-agent-loop'
  368. config:
  369. agents: []
  370. # The sandboxed filesystem provider. `cwd` defaults to `process.cwd()`; an
  371. # overlay can pin another workspace.
  372. - id: fs-sandbox
  373. name: '@deepseek-ai/dsh-fs-sandbox'
  374. # The native DeepSeek adapter. No key or endpoint is inlined: both resolve per
  375. # request from the `llm-deepseek:` settings section over this entry, with the
  376. # key coming from the credential store below. Thinking defaults are a deployment
  377. # choice.
  378. - id: llm-deepseek
  379. name: '@deepseek-ai/dsh-llm-deepseek'