1
0

cordis.patch.yml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. # The dsh-base bundle patch: the shared core of every dsh 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: '@cordisjs/plugin-timer'
  17. - id: hmr
  18. name: '@cordisjs/plugin-hmr'
  19. config:
  20. root: ['.']
  21. # The profile's cordis.patch.yml replaces this row's config to select exact GitHub
  22. # repository Plugin generations. The app registers the DSH-owned runtime even
  23. # when the list is empty so a later personal-config edit can load
  24. # transactionally; one-shot headless runs consume the startup value only.
  25. - id: repository-plugins
  26. name: '@deepseek-ai/dsh-repository-plugin'
  27. - id: llm
  28. name: '@deepseek-ai/dsh-llm'
  29. - id: session
  30. name: '@deepseek-ai/dsh-session'
  31. - id: session-title
  32. name: '@deepseek-ai/dsh-session-title'
  33. config:
  34. fallbackMaxWords: 5
  35. fallbackMaxBytes: 40
  36. maxTitleBytes: 80
  37. - id: session-title-llm
  38. name: '@deepseek-ai/dsh-session-title-first-message-llm'
  39. config:
  40. targetWords: 5
  41. targetCjkCharacters: 10
  42. maxInputBytes: 4096
  43. maxOutputTokens: 64
  44. timeoutMs: 60000
  45. - id: user-interaction
  46. name: '@deepseek-ai/dsh-user-interaction'
  47. - id: agent
  48. name: '@deepseek-ai/dsh-agent'
  49. - id: tasks
  50. name: '@deepseek-ai/dsh-tasks-local'
  51. - id: llm-retry
  52. name: '@deepseek-ai/dsh-llm-retry'
  53. # User-settings document (`$DSH_HOME/settings.yaml`, hot-reloaded): a
  54. # `llm-deepseek:` or `llm-pi-ai:` section there overrides the adapter entries
  55. # below without a restart, and is what the web Models page writes.
  56. - id: settings
  57. name: '@deepseek-ai/dsh-settings-local'
  58. # Credential store: the live process environment over `$DSH_HOME/.env`
  59. # (owner-only file, hot-reloaded). Adapters resolve their key references
  60. # through it at each request, so no key is inlined in this file. The web
  61. # Models page's key inputs write it through `credentials.set`; nothing hoists
  62. # the document into the process environment, which would make every stored key
  63. # read as an unrotatable ambient override.
  64. - id: credentials
  65. name: '@deepseek-ai/dsh-credentials-local'
  66. # The pi-ai multi-provider twin, mounted dormant: zero routes (and no extra
  67. # models in the picker) until a `llm-pi-ai:` settings section supplies provider
  68. # profiles — then those routes register live, keys resolving per request
  69. # through their apiKeyEnv references, and drop again when the section empties.
  70. # Supplying those profiles is exactly what the web Models page does. Which
  71. # adapters exist is composition; which providers run is the user's settings
  72. # document.
  73. - id: llm-pi-ai
  74. name: '@deepseek-ai/dsh-llm-pi-ai'
  75. - id: session-persistence-jsonl
  76. name: '@deepseek-ai/dsh-session-persistence-jsonl'
  77. config:
  78. root: !!js dshHomePath('sessions')
  79. # Raw configs can supply a process-local path or disable this shared session
  80. # capability. The neutral default is process-local and opens only when used.
  81. - id: session-query-sqlite
  82. name: '@deepseek-ai/dsh-session-query-sqlite'
  83. config:
  84. path: ':memory:'
  85. openAt: first-search
  86. # Shared projection registry: subagent catalog identity (mode/label) folds
  87. # through its registered units, so the `list_agents` surface below fails
  88. # loud without it; web layers reuse this same mount for list rows.
  89. - id: session-projection
  90. name: '@deepseek-ai/dsh-session-projection'
  91. # Session telemetry, on for every dsh mode: mirrors every session-log
  92. # event (assistant/chunk projected to first-of-step) plus ops markers onto
  93. # OTLP/HTTP log records, streaming on the batch processor's cadence
  94. # (10s/batch here) — not at exit; a crash loses at most the last unexported
  95. # interval. No telemetry/record redaction rule is mounted yet, so exports
  96. # are the raw captured copy; the deployment stance, env seams, and
  97. # follow-ups are pinned in the web-telemetry-default-mount Agent Note.
  98. # DSH_TELEMETRY_OTLP_URL overrides the production endpoint, and a non-empty
  99. # DSH_TELEMETRY_DISABLED — any value, including '0'/'false' — opts the
  100. # process out (the launchers patch the row disabled; config cannot disable
  101. # a row). Exports carry the harness home's anonymous user id ($DSH_HOME/.userid,
  102. # random UUID; delete the file to reset the identity) as the Resource's
  103. # user.id. The exporter/processor values normally bound the shutdown drain
  104. # to ~1s against an unreachable collector: exporter.timeoutMillis is both
  105. # the per-attempt socket timeout and the retry deadline (1s effectively
  106. # disables the SDK's 5-try backoff), while maxExportBatchSize == maxQueueSize
  107. # (both explicit) makes the drain a single batch. The SDK awaits
  108. # exporter.forceFlush() outside exportTimeoutMillis, so the backend's 3s
  109. # shutdownTimeoutMillis is the load-bearing outer bound when a transport
  110. # promise never settles. Every CLI exit path drains it by disposing the root
  111. # on SIGINT/SIGTERM.
  112. - id: telemetry-otel
  113. name: '@deepseek-ai/dsh-session-telemetry-otel'
  114. config:
  115. shutdownTimeoutMillis: 3000
  116. exporter:
  117. url: !!js process.env.DSH_TELEMETRY_OTLP_URL ?? 'https://harness-telemetry.deepseeksvc.com/v1/logs'
  118. compression: gzip
  119. timeoutMillis: 1000
  120. processor:
  121. scheduledDelayMillis: 10000
  122. maxQueueSize: 2048
  123. maxExportBatchSize: 2048
  124. exportTimeoutMillis: 1500
  125. - id: subprocess
  126. name: '@deepseek-ai/dsh-subprocess-local'
  127. # Every shipped CLI mode starts with the same file-effect boundary.
  128. # The environment remains an explicit deployment override; otherwise fresh
  129. # sessions pin workspace-write + ask through the permission service below.
  130. - id: sandbox
  131. name: '@deepseek-ai/dsh-sandbox-local'
  132. - id: sandbox-policy
  133. name: '@deepseek-ai/dsh-sandbox-policy'
  134. config:
  135. mode: !!js process.env.DSH_PERMISSION_MODE ?? 'workspace-write'
  136. workspaceRoot: !!js process.cwd()
  137. - id: bash-sandbox
  138. name: '@deepseek-ai/dsh-bash-sandbox'
  139. config:
  140. timeoutMs: 60000
  141. - id: approval
  142. name: '@deepseek-ai/dsh-user-approval'
  143. config:
  144. policy: !!js "(process.env.DSH_PERMISSION_MODE ?? 'workspace-write') === 'danger-full-access' ? 'never' : 'ask'"
  145. - id: permission
  146. name: '@deepseek-ai/dsh-permission'
  147. config:
  148. presets:
  149. read-only:
  150. sandbox: read-only
  151. approval: ask
  152. workspace-write:
  153. sandbox: workspace-write
  154. approval: ask
  155. danger-full-access:
  156. sandbox: danger-full-access
  157. approval: never
  158. - id: bash-env
  159. name: '@deepseek-ai/dsh-bash-env'
  160. - id: tool-bash
  161. name: '@deepseek-ai/dsh-tool-bash'
  162. - id: tool-tasks
  163. name: '@deepseek-ai/dsh-tool-tasks'
  164. - id: fs-policy
  165. name: '@deepseek-ai/dsh-fs-policy'
  166. - id: tool-fs
  167. name: '@deepseek-ai/dsh-tool-fs'
  168. - id: tool-fs-search
  169. name: '@deepseek-ai/dsh-tool-fs-search'
  170. config:
  171. sampleOverCapGlobResults: false
  172. - id: workspace-context
  173. name: '@deepseek-ai/dsh-workspace-context'
  174. config:
  175. maxBytes: 65536
  176. - id: skill
  177. name: '@deepseek-ai/dsh-skill'
  178. - id: skill-local
  179. name: '@deepseek-ai/dsh-skill-local'
  180. - id: tool-skill
  181. name: '@deepseek-ai/dsh-tool-skill'
  182. - id: commands
  183. name: '@deepseek-ai/dsh-commands'
  184. - id: goal
  185. name: '@deepseek-ai/dsh-goal'
  186. - id: goal-session
  187. name: '@deepseek-ai/dsh-goal-session'
  188. - id: command-goal
  189. name: '@deepseek-ai/dsh-command-goal'
  190. - id: plan-mode
  191. name: '@deepseek-ai/dsh-plan-mode'
  192. config:
  193. section: |
  194. 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.
  195. 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.
  196. 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.
  197. 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.
  198. 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.
  199. 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.
  200. - id: token-meter
  201. name: '@deepseek-ai/dsh-token-meter'
  202. - id: compact-basic
  203. name: '@deepseek-ai/dsh-compact-basic'
  204. # Human `/compact`: one useful reduction below the automatic threshold. Backend
  205. # independent, so it follows whichever compaction service this leaf mounts.
  206. - id: command-compact
  207. name: '@deepseek-ai/dsh-command-compact'
  208. - id: subagent
  209. name: '@deepseek-ai/dsh-subagent'
  210. - id: subagent-spawn
  211. name: '@deepseek-ai/dsh-subagent-spawn'
  212. config:
  213. providerName: spawn
  214. - id: subagent-fork
  215. name: '@deepseek-ai/dsh-subagent-fork'
  216. config:
  217. providerName: fork
  218. # Continuable background children are selected per delegation tool. The
  219. # separately loaded follow-up tool registers the one global `send_message`.
  220. - id: tool-subagent-control
  221. name: '@deepseek-ai/dsh-tool-subagent-control'
  222. - id: tool-subagent-list-agents
  223. name: '@deepseek-ai/dsh-tool-subagent-control/list-agents'
  224. - id: tool-subagent
  225. name: '@deepseek-ai/dsh-tool-subagent'
  226. config:
  227. provider: spawn
  228. toolName: subagent
  229. backgroundMode: continuable
  230. - id: tool-subagent-fork
  231. name: '@deepseek-ai/dsh-tool-subagent'
  232. config:
  233. provider: fork
  234. toolName: subagent_fork
  235. backgroundMode: continuable
  236. # Optional direct-child return channel; absent from roots and one-shot agents.
  237. - id: tool-subagent-report
  238. name: '@deepseek-ai/dsh-tool-subagent-report'
  239. - id: workflow-workerthread
  240. name: '@deepseek-ai/dsh-workflow-workerthread'
  241. config:
  242. provider: spawn
  243. - id: tool-workflow
  244. name: '@deepseek-ai/dsh-tool-workflow'
  245. - id: timeout-policy
  246. name: '@deepseek-ai/dsh-timeout-policy'
  247. - id: spill-local
  248. name: '@deepseek-ai/dsh-spill-local'
  249. - id: spill-policy
  250. name: '@deepseek-ai/dsh-spill-policy'
  251. config:
  252. maxInlineBytes: 50000
  253. # Durability checkpoints before each model request and top-level dispatch.
  254. - id: session-checkpoint-policy
  255. name: '@deepseek-ai/dsh-session-checkpoint-policy'
  256. # Compacts oversized tool results before the broader conversation compactor
  257. # runs, preserving the model-visible result within the configured budget.
  258. - id: tool-result-prune
  259. name: '@deepseek-ai/dsh-compact-tool-result-prune'
  260. config:
  261. thresholdChars: 8192
  262. headChars: 4096
  263. tailChars: 1024
  264. - id: tool-todo
  265. name: '@deepseek-ai/dsh-tool-todo'
  266. config:
  267. allowParallelInProgress: true
  268. # Persisted same-session goals reach the model and the slash menu here; the
  269. # domain, driver, and `/goal` command are above.
  270. - id: tool-goal
  271. name: '@deepseek-ai/dsh-tool-goal'
  272. # Fresh-agent Ralph iteration over a build-time-fixed script.
  273. - id: tool-ralph
  274. name: '@deepseek-ai/dsh-tool-ralph'
  275. config:
  276. subagentProvider: spawn
  277. maxRounds: 64
  278. - id: tool-str-replace-editor
  279. name: '@deepseek-ai/dsh-tool-str-replace-editor'
  280. config:
  281. maxOutputChars: 16000
  282. # Consecutive-repeat reminders on the tool chain.
  283. - id: repeat-tool-guard
  284. name: '@deepseek-ai/dsh-repeat-tool-guard'
  285. config:
  286. thresholds: [3, 5, 8]
  287. argumentsPreviewChars: 500
  288. # Every mode enables the stable web_search model surface. DeepSeek search
  289. # resolves the same DEEPSEEK_API_KEY credential the Models page manages for
  290. # chat, at each search; its Messages endpoint is separate from the
  291. # chat-completions endpoint, so it takes its own base-URL override. Fetch stays
  292. # disabled and no fetch provider is mounted: that provider defers SSRF
  293. # protection and the model would choose the request target. Search is a full
  294. # auxiliary model request with server-side retrieval, so this shipped DeepSeek
  295. # route gets 60s while the provider-neutral tool default remains 30s.
  296. - id: web
  297. name: '@deepseek-ai/dsh-web'
  298. config:
  299. searchProvider: deepseek-official
  300. - id: web-search-deepseek
  301. name: '@deepseek-ai/dsh-web-search-deepseek'
  302. config:
  303. apiKeyEnv: DEEPSEEK_API_KEY
  304. baseURL: !!js process.env.DEEPSEEK_SEARCH_BASE_URL
  305. - id: tool-web
  306. name: '@deepseek-ai/dsh-tool-web'
  307. config:
  308. fetch: false
  309. searchTimeoutMs: 60000
  310. # ── rows every mode mounts, whose values each overlay may state ──────────────
  311. # The tool registry. Presentation mode is a deployment choice; omitting it here
  312. # keeps the schema default (native).
  313. - id: tools
  314. name: '@deepseek-ai/dsh-tools'
  315. # The deployment persona is a deployment choice; plan-mode and tool plugins own
  316. # their own prompt sections.
  317. - id: system-prompt
  318. name: '@deepseek-ai/dsh-system-prompt'
  319. config:
  320. persona: ''
  321. # Agents created at startup. The base stays empty; raw overlays may create
  322. # agents, while Web creates sessions on client request.
  323. - id: agent-loop
  324. name: '@deepseek-ai/dsh-agent-loop'
  325. config:
  326. agents: []
  327. # The sandboxed filesystem provider. `cwd` defaults to `process.cwd()`; an
  328. # overlay can pin another workspace.
  329. - id: fs-sandbox
  330. name: '@deepseek-ai/dsh-fs-sandbox'
  331. # The native DeepSeek adapter. No key or endpoint is inlined: both resolve per
  332. # request from the `llm-deepseek:` settings section over this entry, with the
  333. # key coming from the credential store below. Thinking defaults are a deployment
  334. # choice.
  335. - id: llm-deepseek
  336. name: '@deepseek-ai/dsh-llm-deepseek'