gen-tool-catalog.ts 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. /**
  2. * Generate `docs/tool-catalog.md` from schemas collected by booting each tool
  3. * plugin. Runtime registration is the source of truth for computed schemas;
  4. * the manifest is checked against every on-disk `tool-*` package. `--check`
  5. * verifies the committed artifact. Rationale and ownership live in
  6. * `.agents/notes/implemented/process/2026-07-02-tool-schema-catalog.md`.
  7. */
  8. import { globSync, readFileSync, writeFileSync } from 'node:fs'
  9. import { basename, resolve } from 'node:path'
  10. import { Context } from '@deepseek-ai/cordis'
  11. import type { ToolSchema } from '@deepseek-ai/dsh-llm'
  12. import AgentRegistry from '@deepseek-ai/dsh-agent'
  13. import type { Agent } from '@deepseek-ai/dsh-agent'
  14. import { createScope } from '@deepseek-ai/dsh-scope'
  15. import SessionStore, { SessionId } from '@deepseek-ai/dsh-session'
  16. import SessionProjectionRegistry from '@deepseek-ai/dsh-session-projection'
  17. import SqliteSessionQueryEngine from '@deepseek-ai/dsh-session-query-sqlite'
  18. import GoalService from '@deepseek-ai/dsh-goal'
  19. import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  20. import ToolRuntime, { type Config as ToolsConfig } from '@deepseek-ai/dsh-tools'
  21. import LocalBashExecutor from '@deepseek-ai/dsh-bash-local'
  22. import * as BashEnvPlugin from '@deepseek-ai/dsh-shell-env'
  23. import { PwshLocalExecutor } from '@deepseek-ai/dsh-pwsh-local'
  24. import LocalSubprocessRuntime from '@deepseek-ai/dsh-subprocess-local'
  25. import LocalFileSystem from '@deepseek-ai/dsh-fs-local'
  26. import { AttachmentStore } from '@deepseek-ai/dsh-attachment'
  27. import type { ImageAttachmentLimits, ImageAttachmentRef, SaveImageAttachment, StoredImageAttachment } from '@deepseek-ai/dsh-attachment'
  28. import UserQuestionService from '@deepseek-ai/dsh-user-questions'
  29. import PlanModeController from '@deepseek-ai/dsh-plan-mode'
  30. import WebRuntime from '@deepseek-ai/dsh-web'
  31. import * as WebSearchExa from '@deepseek-ai/dsh-web-search-exa'
  32. import * as WebFetchLocal from '@deepseek-ai/dsh-web-fetch-http'
  33. import SubagentRuntime from '@deepseek-ai/dsh-subagent'
  34. import type { SubagentProvider, SubagentReportDelivery } from '@deepseek-ai/dsh-subagent'
  35. import * as ToolSubagentControl from '@deepseek-ai/dsh-tool-subagent-control'
  36. import * as ToolSubagentListAgents from '@deepseek-ai/dsh-tool-subagent-control/list-agents'
  37. import * as ToolSubagentReport from '@deepseek-ai/dsh-tool-subagent-report'
  38. import SkillRegistry from '@deepseek-ai/dsh-skill'
  39. import * as SkillFileSystem from '@deepseek-ai/dsh-skill-filesystem'
  40. import LocalJobRegistry from '@deepseek-ai/dsh-jobs-local'
  41. import * as ToolAskUser from '@deepseek-ai/dsh-tool-ask-user'
  42. import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
  43. import * as ToolPwsh from '@deepseek-ai/dsh-tool-pwsh'
  44. import * as ToolBashPersistent from '@deepseek-ai/dsh-tool-bash-persistent'
  45. import CordisHostRunner from '@deepseek-ai/dsh-cordis-host-runner'
  46. import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
  47. import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
  48. import * as ToolFsSearch from '@deepseek-ai/dsh-tool-fs-search'
  49. import * as ToolStrReplaceEditor from '@deepseek-ai/dsh-tool-str-replace-editor'
  50. import TerminalSessionService from '@deepseek-ai/dsh-terminal'
  51. import * as ToolPty from '@deepseek-ai/dsh-tool-terminal'
  52. import * as ToolGoal from '@deepseek-ai/dsh-tool-goal'
  53. import * as ToolSchedule from '@deepseek-ai/dsh-schedule'
  54. import Lsp from '@deepseek-ai/dsh-lsp'
  55. import * as ToolLsp from '@deepseek-ai/dsh-tool-lsp'
  56. import * as ToolSkill from '@deepseek-ai/dsh-tool-skill'
  57. import * as ToolSessionQuery from '@deepseek-ai/dsh-tool-session-query'
  58. import * as ToolTasks from '@deepseek-ai/dsh-tool-jobs'
  59. import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
  60. import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
  61. import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
  62. import VmWorkflowEngine from '@deepseek-ai/dsh-workflow-worker-thread'
  63. import * as ToolRalph from '@deepseek-ai/dsh-tool-ralph'
  64. import * as ToolWorkflow from '@deepseek-ai/dsh-tool-workflow'
  65. /** Attachment seam marker that makes the attachments-conditional `read_image` schema harvestable. */
  66. class CatalogAttachmentStore extends AttachmentStore {
  67. readonly imageLimits: ImageAttachmentLimits = Object.freeze({
  68. maxImageBytes: 1,
  69. maxImagesPerMessage: 1,
  70. maxMessageImageBytes: 1,
  71. maxImagePixels: 1,
  72. mediaTypes: Object.freeze(['image/png'] as const),
  73. })
  74. override validateImage(_input: SaveImageAttachment): Promise<void> {
  75. return Promise.reject(new Error('gen-tool-catalog: attachment validation is unreachable during schema harvest'))
  76. }
  77. override saveImage(_input: SaveImageAttachment): Promise<ImageAttachmentRef> {
  78. return Promise.reject(new Error('gen-tool-catalog: attachment writes are unreachable during schema harvest'))
  79. }
  80. override readImage(_ref: ImageAttachmentRef): Promise<StoredImageAttachment> {
  81. return Promise.reject(new Error('gen-tool-catalog: attachment reads are unreachable during schema harvest'))
  82. }
  83. }
  84. const root = resolve(import.meta.dirname, '..')
  85. const OUT = 'docs/tool-catalog.md'
  86. /**
  87. * Register the descriptor needed to mount schema-producing consumers. Declares
  88. * the full capability set of the shipped in-process providers so consumers
  89. * mount under their shipped defaults (tool-subagent's default numeric maxDepth
  90. * requires `depthLimit`).
  91. */
  92. function registerCatalogSubagentProvider(ctx: Context, name: string): void {
  93. const provider: SubagentProvider = {
  94. name,
  95. capabilities: { outputSchema: true, depthLimit: true, toolFilter: true, persona: true },
  96. inheritsParentContext: false,
  97. start: () => Promise.reject(new Error('tool-catalog provider cannot start a child')),
  98. // Declared so consumers configured for continuable background mode mount.
  99. prepareContinuable: () => Promise.reject(new Error('tool-catalog provider cannot prepare a child')),
  100. }
  101. ctx.subagents.registerProvider(provider)
  102. }
  103. /** Minted child-scope keys for packages whose tools are never global. */
  104. const catalogChildScopes = new WeakMap<Context, Agent>()
  105. /**
  106. * Install one scope-local tool package into an agent-like child scope for
  107. * schema harvest, without starting a model, Agent loop, or persistence backend.
  108. * @param ctx - catalog context owning the scope.
  109. * @param mountScoped - package installer for the scoped context.
  110. * @param key - agent-like scope key exposed to the package's scope selector.
  111. * @param inject - services the package installer must await before mounting.
  112. */
  113. async function mountCatalogChildScope(
  114. ctx: Context,
  115. mountScoped: (childCtx: Context) => void,
  116. key: Agent = { id: SessionId('tool-catalog-child') } as Agent,
  117. inject: string[] = ['tools', 'systemPrompt', 'subagents'],
  118. ): Promise<void> {
  119. await ctx.plugin(Object.assign((inner: Context) => {
  120. mountScoped(createScope(inner, key).ctx)
  121. }, { inject }))
  122. catalogChildScopes.set(ctx, key)
  123. }
  124. /**
  125. * Tool package plus its hand-maintained boot recipe. The caller mounts the
  126. * prompt and registry; each recipe supplies only package-specific seams and
  127. * config, while `dir` participates in the completeness check.
  128. */
  129. export interface ToolPackage {
  130. /** The npm package name, used as the catalog section heading. */
  131. pkg: string
  132. /** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
  133. dir: string
  134. /**
  135. * Repo-relative implementation source linked per harvested tool. Packages
  136. * whose tools share one plugin may use a string; split plugins map each tool
  137. * name to its own source.
  138. */
  139. source: string | Readonly<Record<string, string>>
  140. /** Services or owning runtimes the package requires at execution time. */
  141. requires: string[]
  142. /** Session events or other visible state the tools write or affect. */
  143. writes: string[]
  144. /** Additional model-visible names shipped by example/app config. */
  145. shippedNames?: string[]
  146. /** Plug the injected seams + the tool plugin onto a context that already
  147. * carries `systemPrompt` + `tools`. */
  148. mount: (ctx: Context) => Promise<void>
  149. /** Agent-like scope key whose tool view is catalogued instead of the global view. */
  150. scope?: (ctx: Context) => Agent
  151. /**
  152. * Config for the caller's `ToolRuntime` mount. The registry itself ships a
  153. * model-facing tool (`run_code`, registered under a non-native `mode`), so
  154. * ITS catalog entry boots the registry in the mode that exposes it;
  155. * every other entry uses the default (native) registry.
  156. */
  157. toolsConfig?: ToolsConfig
  158. /**
  159. * A deployment note rendered after the package's tools, for a fact that
  160. * booting the package alone cannot show. The registered tool NAME can be a
  161. * load-time config (`tool-subagent`'s `toolName`), so one package may appear
  162. * under several names across deployments — the boot yields the package
  163. * DEFAULT, and this note records the shipped alternatives the model sees.
  164. */
  165. note?: string
  166. }
  167. /**
  168. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  169. * `packages/`). Ordered by package name (the render order); the completeness
  170. * guard proves it is exhaustive against the on-disk glob.
  171. */
  172. const TOOL_PACKAGES: ToolPackage[] = [
  173. {
  174. pkg: '@deepseek-ai/dsh-tool-ask-user',
  175. dir: 'tool-ask-user',
  176. source: 'packages/interaction/tool-ask-user/src/index.ts',
  177. requires: ['ctx.tools', 'ctx.userQuestions'],
  178. writes: ['tool/call', 'tool/result after a UI/provider answers the question'],
  179. async mount(ctx) {
  180. await ctx.plugin(UserQuestionService)
  181. await ctx.plugin(ToolAskUser)
  182. },
  183. note:
  184. 'ask_user_question pauses the tool call until the active UI provider returns a human answer.',
  185. },
  186. {
  187. pkg: '@deepseek-ai/dsh-tools',
  188. dir: 'tools',
  189. source: 'packages/core/tools/src/code-mode.ts',
  190. requires: ['ctx.tools', 'ctx.codeRuntime (execution time)', 'ctx.systemPrompt'],
  191. writes: ['tool/call', 'one tool/code-dispatch-start + tool/code-dispatch pair per bridged sub-call', 'tool/result'],
  192. // The registry's OWN tool: run_code exists only under a non-native mode
  193. // (the registry registers it in its constructor; the code runtime is read
  194. // at assembly/execution time, so the schema harvest needs none mounted).
  195. toolsConfig: { mode: 'code' },
  196. async mount() {},
  197. note:
  198. 'Owned by the tool registry as a reserved transport outside filterable capability layers under `mode: code` / `mode: both` (see the Code Mode Agent Note). Under `code` it is the registry\'s only wire contribution; the other visible capabilities are declared in a generated SDK section in the loaded runtime\'s language, and a program calls them through bindings scheduled under the native concurrency contract (submission-ordered starts and policy; concurrency-safe bodies overlap up to `maxParallelSubCalls`) that re-enter the complete guarded tool pipeline and link each nested execution to this outer result.',
  199. },
  200. {
  201. pkg: '@deepseek-ai/dsh-plan-mode',
  202. dir: 'plan-mode',
  203. source: 'packages/plan/plan-mode/src/index.ts',
  204. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.userQuestions (execution time, opportunistic)'],
  205. writes: ['tool/call', 'plan/mode inactive on an approved review', 'tool/result'],
  206. async mount(ctx) {
  207. await ctx.plugin(PlanModeController, { section: 'Tool catalog schema harvest.' })
  208. },
  209. note:
  210. 'exit_plan_mode stays in the model-facing schema while planning is inactive so transitions add no tool-catalog churn on top of the plan-policy change. Its execute path rejects calls outside plan mode; in plan mode it presents the plan over the user-questions seam (approve / keep planning with feedback), and approval logs plan mode inactive at the step boundary.',
  211. },
  212. {
  213. pkg: '@deepseek-ai/dsh-tool-bash',
  214. dir: 'tool-bash',
  215. source: 'packages/shell/tool-bash/src/index.ts',
  216. requires: ['ctx.tools', 'ctx.shell', 'ctx.systemPrompt', 'ctx.shellEnv', 'ctx.jobs at call time for run_in_background'],
  217. writes: ['tool/call', 'tool/result'],
  218. async mount(ctx) {
  219. await ctx.plugin(LocalSubprocessRuntime)
  220. await ctx.plugin(BashEnvPlugin)
  221. await ctx.plugin(LocalBashExecutor)
  222. await ctx.plugin(ToolBash)
  223. },
  224. note:
  225. 'The bash tool is the model-facing consumer of the bash executor seam. A `run_in_background` run registers with the generic `ctx.jobs` runtime and is collected/stopped through the `job_*` tools from `@deepseek-ai/dsh-tool-jobs`; the `enableRunInBackground` config (default true) removes the parameter entirely when disabled.',
  226. },
  227. {
  228. pkg: '@deepseek-ai/dsh-tool-pwsh',
  229. dir: 'tool-pwsh',
  230. source: 'packages/shell/tool-pwsh/src/index.ts',
  231. requires: ['ctx.tools', 'ctx.shell', 'ctx.systemPrompt', 'ctx.shellEnv', 'ctx.jobs at call time for run_in_background'],
  232. writes: ['tool/call', 'tool/result'],
  233. async mount(ctx) {
  234. // The pwsh tool consumes the bash executor seam; the schema harvest
  235. // mounts the pwsh-local implementation so the inject resolves without
  236. // executing anything (registration never spawns a process).
  237. await ctx.plugin(LocalSubprocessRuntime)
  238. await ctx.plugin(BashEnvPlugin)
  239. await ctx.plugin(PwshLocalExecutor)
  240. await ctx.plugin(ToolPwsh)
  241. },
  242. note:
  243. 'The pwsh tool is the PowerShell-dialect consumer of the bash executor seam for Windows compositions (a PowerShell executor such as `@deepseek-ai/dsh-pwsh-local` backs `ctx.shell`); it mirrors the bash tool call-for-call minus sandbox controls — `run_in_background` runs register with the generic `ctx.jobs` runtime and are collected/stopped through the `job_*` tools, and the managed `DSH_*` environment comes from `@deepseek-ai/dsh-shell-env`. Each call runs in a fresh process (no persistent PTY session), with native `C:\\...` paths and `$env:NAME` variables.',
  244. },
  245. {
  246. pkg: '@deepseek-ai/dsh-tool-cordis',
  247. dir: 'tool-cordis',
  248. source: 'packages/extensions/tool-cordis/src/index.ts',
  249. requires: ['ctx.tools', 'ctx.dynamicCordisRunner'],
  250. writes: ['tool/call', 'tool/result', 'process-local dynamic package lifecycle'],
  251. async mount(ctx) {
  252. await ctx.plugin(CordisHostRunner)
  253. await ctx.plugin(ToolCordis)
  254. },
  255. note:
  256. 'Not in any shipped tree (a deliberate opt-in — dynamic package code reaches the real runtime, see .agents/notes/implemented/feature/2026-07-08-self-referential-cordis-toolset.md). The toolset injects `ctx.dynamicCordisRunner` from `@deepseek-ai/dsh-cordis-host-runner`, which owns the definition registry and the vm sandbox; a composition missing it never activates the tools. A running package may register ADDITIONAL model-visible tools until it is stopped, undefined, or DSH restarts; a full changed request header logs those tool-set changes.',
  257. },
  258. {
  259. pkg: '@deepseek-ai/dsh-tool-bash-persistent',
  260. dir: 'tool-bash-persistent',
  261. source: 'packages/shell/tool-bash-persistent/src/index.ts',
  262. requires: ['ctx.tools', 'ctx.terminals', 'an owning Agent at execution time'],
  263. writes: ['tool/call', 'PTY shell state', 'tool/result'],
  264. async mount(ctx) {
  265. await ctx.plugin(TerminalSessionService)
  266. await ctx.plugin(ToolBashPersistent)
  267. },
  268. note:
  269. 'One owner-isolated persistent bash tool; deployment composition supplies the PTY backend and may override the model-facing environment description.',
  270. },
  271. {
  272. pkg: '@deepseek-ai/dsh-tool-str-replace-editor',
  273. dir: 'tool-str-replace-editor',
  274. source: 'packages/fs/tool-str-replace-editor/src/index.ts',
  275. requires: ['ctx.tools', 'ctx.fs'],
  276. writes: ['tool/call', 'fs/observed after view presence/absence, edit absence, or successful mutation', 'tool/result'],
  277. async mount(ctx) {
  278. await ctx.plugin(LocalFileSystem)
  279. await ctx.plugin(ToolStrReplaceEditor)
  280. },
  281. note:
  282. 'Standalone view/create/unique literal replace/line insert tool over the filesystem seam; it composes with any shell or terminal API.',
  283. },
  284. {
  285. pkg: '@deepseek-ai/dsh-tool-fs',
  286. dir: 'tool-fs',
  287. source: 'packages/fs/tool-fs/src/index.ts',
  288. requires: ['ctx.tools', 'ctx.fs', 'ctx.systemPrompt', 'ctx.attachments (read_image registration)', 'ctx.llm + an image-capable route (read_image execution)'],
  289. writes: ['tool/call', 'fs/write-intent or fs/edit-intent for mutations', 'fs/observed after read presence/absence or successful file operation', 'durable attachment (read_image)', 'tool/result'],
  290. async mount(ctx) {
  291. // The tool needs `fs`; the bare provider is sufficient because policy
  292. // changes behavior, not schema shape. The catalog seam marker opts into
  293. // the attachments-conditional read_image schema without attachment I/O.
  294. await ctx.plugin(LocalFileSystem)
  295. await ctx.plugin(CatalogAttachmentStore)
  296. await ctx.plugin(ToolFs)
  297. },
  298. note:
  299. 'The read-before-write/edit policy is added by `@deepseek-ai/dsh-fs-observation-policy` (an `fs/*` event-gate plugin, no schema change); a deployment that loads these tools is expected to also load it. `read_image` is not registered without `ctx.attachments`; its schema is route-independent, and execution refuses unless the exact routed model declares image input.',
  300. },
  301. {
  302. pkg: '@deepseek-ai/dsh-tool-fs-search',
  303. dir: 'tool-fs-search',
  304. source: 'packages/fs/tool-fs-search/src/index.ts',
  305. requires: ['ctx.tools', 'ctx.subprocess', 'ctx.systemPrompt'],
  306. writes: ['tool/call', 'tool/result'],
  307. async mount(ctx) {
  308. // The tools inject `subprocess` (search spawns the packaged ripgrep
  309. // binary through the seam, not ctx.fs); registration itself never
  310. // spawns, so the real local service is inert here. `ctx.spillStore` is
  311. // optional (read via ctx.get) and does not affect the schemas, so no
  312. // spill backend is mounted.
  313. await ctx.plugin(LocalSubprocessRuntime)
  314. await ctx.plugin(ToolFsSearch, { sampleOverCapGlobResults: true })
  315. },
  316. note:
  317. 'glob and grep are unconditional discovery tools that spawn the packaged ripgrep binary (`@vscode/ripgrep`) through ctx.subprocess as ordinary foreground calls (never background jobs) — no host `rg` install and no shell layer. The catalog uses `sampleOverCapGlobResults: true`; deployments must choose that behavior explicitly. Capped results save the complete formatted list through the optional ctx.spillStore backend; returned locators are follow-up-readable/searchable when the backend exposes local paths in co-located deployments.',
  318. },
  319. {
  320. pkg: '@deepseek-ai/dsh-tool-terminal',
  321. dir: 'tool-terminal',
  322. source: 'packages/terminal/tool-terminal/src/index.ts',
  323. requires: ['ctx.tools', 'ctx.terminals', 'ctx.systemPrompt', 'ctx.jobs at call time for run_in_background'],
  324. writes: ['tool/call', 'tool/result'],
  325. async mount(ctx) {
  326. await ctx.plugin(TerminalSessionService)
  327. await ctx.plugin(ToolPty)
  328. },
  329. note:
  330. 'The six terminal tools are opt-in and complement one-shot shell/filesystem tools. `terminal_send(run_in_background: true)` registers with `ctx.jobs`; TUI, named key sequences, BEL, resize, auto-start, and cross-agent sharing are absent from the schema.',
  331. },
  332. {
  333. pkg: '@deepseek-ai/dsh-tool-goal',
  334. dir: 'tool-goal',
  335. source: 'packages/goal/tool-goal/src/index.ts',
  336. requires: ['ctx.tools', 'ctx.agents', 'ctx.goals', 'ctx.systemPrompt', 'a calling Agent in an authorized open turn'],
  337. writes: ['tool/call', 'goal/change for mutations', 'tool/result'],
  338. async mount(ctx) {
  339. await ctx.plugin(AgentRegistry)
  340. await ctx.plugin(GoalService)
  341. await ctx.plugin(ToolGoal)
  342. },
  343. note:
  344. 'create, edit, pause, and resume require direct-human root authority; complete and blocked also accept the exact current goal round. The default blocked lower bound is three admitted rounds.',
  345. },
  346. {
  347. pkg: '@deepseek-ai/dsh-schedule',
  348. dir: 'schedule',
  349. source: 'packages/schedule/schedule/src/tools.ts',
  350. requires: ['ctx.tools', 'ctx.sessions', 'Session persistence', 'a future live root Agent'],
  351. writes: ['tool/call', 'schedule/change create or delete', 'tool/result'],
  352. async mount(ctx) {
  353. await ctx.plugin(SessionStore)
  354. const session = ctx.sessions.create(SessionId('tool-catalog-schedule'))
  355. const agent = { id: session.id, session } as Agent
  356. await mountCatalogChildScope(ctx, (childCtx) => {
  357. ToolSchedule.registerScheduleTools(ctx, childCtx, agent, () => {})
  358. }, agent, ['tools', 'systemPrompt'])
  359. },
  360. scope: ctx => catalogChildScopes.get(ctx) as Agent,
  361. note:
  362. 'Registered only inside live root Agent scopes created after the opt-in Schedule plugin loads. '
  363. + 'Version 1 accepts after_seconds, explicit absolute at, and bounded fixed-rate every_seconds, '
  364. + 'and discloses session-local delivery; '
  365. + 'management reads and mutations require the shared Session persistence barrier.',
  366. },
  367. {
  368. pkg: '@deepseek-ai/dsh-tool-lsp',
  369. dir: 'tool-lsp',
  370. source: 'packages/lsp/tool-lsp/src/index.ts',
  371. requires: ['ctx.tools', 'ctx.lsp', 'ctx.systemPrompt'],
  372. writes: ['tool/call', 'tool/result'],
  373. async mount(ctx) {
  374. // The tool registers from the seam alone; the schema does not depend on any provider.
  375. await ctx.plugin(Lsp)
  376. await ctx.plugin(ToolLsp)
  377. },
  378. note:
  379. 'The lsp tool keeps provider selection and language-server subprocesses behind ctx.lsp, so its model-visible schema stays stable across providers. Requires a registered provider (e.g. `@deepseek-ai/dsh-lsp-stdio`) at runtime; without one, a query returns the structured `LSP_UNAVAILABLE` error rather than changing the schema.',
  380. },
  381. {
  382. pkg: '@deepseek-ai/dsh-tool-ralph',
  383. dir: 'tool-ralph',
  384. source: 'packages/workflow/tool-ralph/src/index.ts',
  385. requires: ['ctx.tools', 'ctx.workflowEngine', 'ctx.subagents', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents every fresh round)'],
  386. writes: ['tool/call', 'tool/result', 'workflow and child session events during execution'],
  387. async mount(ctx) {
  388. await ctx.plugin(SubagentRuntime)
  389. registerCatalogSubagentProvider(ctx, 'mock')
  390. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  391. await ctx.plugin(ToolRalph, { subagentProvider: 'mock' })
  392. },
  393. note:
  394. 'A fixed foreground workflow starts one fresh structured child per round; the model selects only the immutable objective and an optional round cap.',
  395. },
  396. {
  397. pkg: '@deepseek-ai/dsh-tool-skill',
  398. dir: 'tool-skill',
  399. source: 'packages/skill/tool-skill/src/index.ts',
  400. requires: ['ctx.tools', 'ctx.agents', 'ctx.skills'],
  401. writes: ['tool/call', 'tool/result', 'user/message replacement catalogs via agent.inject()'],
  402. async mount(ctx) {
  403. await ctx.plugin(AgentRegistry)
  404. await ctx.plugin(SkillRegistry)
  405. await ctx.plugin(SkillFileSystem, {
  406. dshHome: resolve(root, '.tmp/tool-catalog/.dsh'),
  407. agentsHome: resolve(root, '.tmp/tool-catalog/.agents'),
  408. })
  409. await ctx.plugin(ToolSkill)
  410. },
  411. },
  412. {
  413. pkg: '@deepseek-ai/dsh-tool-session-query',
  414. dir: 'tool-session-query',
  415. source: 'packages/session-query/tool-session-query/src/index.ts',
  416. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.sessionQuery', 'a calling Agent for workspace authority'],
  417. writes: ['tool/call', 'tool/result'],
  418. async mount(ctx) {
  419. await ctx.plugin(SessionStore)
  420. await ctx.plugin(SqliteSessionQueryEngine, { path: ':memory:' })
  421. await ctx.plugin(ToolSessionQuery)
  422. },
  423. note:
  424. 'The five read-only tools hide provider cursors and authorize every result from the immutable calling agent session. The package is opt-in; compositions that need enforced deadlines or bounded inline output also mount the generic timeout or spill policies.',
  425. },
  426. {
  427. pkg: '@deepseek-ai/dsh-tool-subagent',
  428. dir: 'tool-subagent',
  429. source: 'packages/subagent/tool-subagent/src/index.ts',
  430. requires: ['ctx.tools', 'ctx.subagents', 'ctx.systemPrompt'],
  431. writes: ['tool/call', 'tool/result', 'child session events through the chosen provider'],
  432. shippedNames: ['subagent', 'subagent_fork'],
  433. async mount(ctx) {
  434. await ctx.plugin(SubagentRuntime)
  435. registerCatalogSubagentProvider(ctx, 'mock')
  436. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  437. },
  438. note:
  439. 'The registered tool name is the load-time `toolName` config (default `subagent`); the schema above is that default. The shipped compositions load this package once per subagent backend, so the model additionally sees `subagent_fork` bound to the fork backend. Each instance\'s description, `run_in_background` parameter, and system-prompt policy follow its own `backgroundMode` and `enableRunInBackground`, so the two shipped schemas are not identical: `subagent` is `continuable` and defaults omitted calls to background with automatic settlement delivery, while `subagent_fork` stays `one-shot` and defaults them to foreground — see `packages/bundle/base/cordis.patch.yml` and `examples/acp-agent/cordis.yml`.',
  440. },
  441. {
  442. pkg: '@deepseek-ai/dsh-tool-subagent-control',
  443. dir: 'tool-subagent-control',
  444. source: {
  445. interrupt_agent: 'packages/subagent/tool-subagent-control/src/index.ts',
  446. list_agents: 'packages/subagent/tool-subagent-control/src/list-agents.ts',
  447. send_message: 'packages/subagent/tool-subagent-control/src/index.ts',
  448. },
  449. requires: ['ctx.tools', 'ctx.subagents', 'ctx.agents and ctx.sessionProjections (list_agents only)'],
  450. writes: ['tool/call', 'tool/result', 'child session events through ctx.subagents'],
  451. async mount(ctx) {
  452. await ctx.plugin(SubagentRuntime)
  453. await ctx.plugin(LocalJobRegistry)
  454. await ctx.plugin(AgentRegistry)
  455. await ctx.plugin(SessionStore)
  456. await ctx.plugin(SessionProjectionRegistry)
  457. await ctx.plugin(ToolSubagentControl)
  458. await ctx.plugin(ToolSubagentListAgents)
  459. },
  460. note:
  461. 'The globally named control tools over continuable background subagents: provider-bound `tool-subagent` instances register distinct delegation tools, while this package registers `send_message` and `interrupt_agent` once, plus `list_agents` from its separately loaded `/list-agents` plugin (whose catalog rows use the sessionProjections and live Agent registries).',
  462. },
  463. {
  464. pkg: '@deepseek-ai/dsh-tool-subagent-report',
  465. dir: 'tool-subagent-report',
  466. source: 'packages/subagent/tool-subagent-report/src/index.ts',
  467. requires: ['ctx.subagents', 'ctx.systemPrompt', 'a live continuable in-process child Agent'],
  468. writes: ['tool/call', 'tool/result', 'a user-role message in the direct parent session'],
  469. async mount(ctx) {
  470. await ctx.plugin(AgentRegistry)
  471. await ctx.plugin(SubagentRuntime)
  472. const { reportDelivery } = ToolSubagentReport.Config({}) as { reportDelivery: SubagentReportDelivery }
  473. await mountCatalogChildScope(ctx, (childCtx) => {
  474. ToolSubagentReport.installReportTool(childCtx, ctx, reportDelivery)
  475. })
  476. },
  477. scope: ctx => catalogChildScopes.get(ctx) as Agent,
  478. note:
  479. 'Registered per continuable in-process child rather than globally, so this schema is visible only '
  480. + 'inside such a child and survives its global `toolFilter`. The same contribution installs the '
  481. + 'child-scoped `tool:report` prompt section, which this catalog does not render. The parent-facing '
  482. + '`send_message` tool is installed independently.',
  483. },
  484. {
  485. pkg: '@deepseek-ai/dsh-tool-jobs',
  486. dir: 'tool-jobs',
  487. source: 'packages/jobs/tool-jobs/src/index.ts',
  488. requires: ['ctx.tools', 'ctx.jobs', 'ctx.systemPrompt'],
  489. writes: ['tool/call', 'tool/result', 'user/message via agent.inject() for background completion notices'],
  490. async mount(ctx) {
  491. await ctx.plugin(LocalJobRegistry)
  492. await ctx.plugin(ToolTasks)
  493. },
  494. note:
  495. 'The kind-agnostic background-job controller: background bash commands, PTY sends, and subagents are read, listed, and killed through the same three tools. Loading the plugin attaches the controller that arms producers\' `ctx.jobs.start()`.',
  496. },
  497. {
  498. pkg: '@deepseek-ai/dsh-tool-todo',
  499. dir: 'tool-todo',
  500. source: 'packages/todo/tool-todo/src/index.ts',
  501. requires: ['ctx.tools', 'owning Agent session'],
  502. writes: ['tool/call', 'todo/write', 'tool/result'],
  503. async mount(ctx) {
  504. await ctx.plugin(ToolTodo, { allowParallelInProgress: true })
  505. },
  506. note:
  507. 'todo_write is session-owned state; UIs render the latest todo/write event as a checklist. `allowParallelInProgress` is required with no default, so the catalog states its choice: `true`, whose description invites several `in_progress` items. A deployment choosing `false` receives the same tool with a description asking for exactly one active task.',
  508. },
  509. {
  510. pkg: '@deepseek-ai/dsh-tool-workflow',
  511. dir: 'tool-workflow',
  512. source: 'packages/workflow/tool-workflow/src/index.ts',
  513. requires: ['ctx.tools', 'ctx.workflowEngine', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents the script children)'],
  514. writes: ['tool/call', 'tool/result'],
  515. async mount(ctx) {
  516. // The tool injects `workflows`; boot the vm engine over a scripted
  517. // subagent provider to satisfy it. The schema does not depend on which
  518. // provider backs the engine.
  519. await ctx.plugin(SubagentRuntime)
  520. registerCatalogSubagentProvider(ctx, 'mock')
  521. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  522. await ctx.plugin(ToolWorkflow)
  523. },
  524. },
  525. {
  526. pkg: '@deepseek-ai/dsh-tool-web',
  527. dir: 'tool-web',
  528. source: 'packages/web/tool-web/src/index.ts',
  529. requires: ['ctx.tools', 'ctx.web', 'ctx.systemPrompt'],
  530. writes: ['tool/call', 'tool/result'],
  531. async mount(ctx) {
  532. // Mount search and fetch providers so both tools register. Their schemas
  533. // do not depend on provider identity or availability.
  534. await ctx.plugin(WebRuntime)
  535. await ctx.plugin(WebSearchExa)
  536. await ctx.plugin(WebFetchLocal)
  537. await ctx.plugin(ToolWeb)
  538. },
  539. note:
  540. 'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.',
  541. },
  542. ]
  543. /** One package's contribution to the catalog: its schemas plus attribution. */
  544. interface CatalogPackage {
  545. pkg: string
  546. sources: Readonly<Record<string, string>>
  547. requires: string[]
  548. writes: string[]
  549. shippedNames?: string[]
  550. schemas: ToolSchema[]
  551. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  552. note?: string
  553. }
  554. /** The whole catalog: one entry per booted tool package, in manifest order. */
  555. export type ToolCatalog = CatalogPackage[]
  556. /**
  557. * Assert the boot manifest covers every shipped tool package on disk (a
  558. * `tool-*` leaf under `packages/`).
  559. * Booting has no source declaration to enumerate, so this glob restores the
  560. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  561. * fails the generator (and the freshness gate) until it is added to
  562. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  563. *
  564. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  565. */
  566. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  567. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  568. const listed = new Set(packages.map(p => p.dir))
  569. const missing = onDisk.filter(dir => !listed.has(dir))
  570. if (missing.length > 0) {
  571. throw new Error(
  572. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  573. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  574. )
  575. }
  576. }
  577. /**
  578. * Assert one manifest entry actually registered a tool.
  579. *
  580. * A tool package that boots without registering anything is a broken boot, not
  581. * an empty catalog section. The usual cause is an `inject` the entry's `mount`
  582. * does not satisfy: cordis leaves the plugin PENDING, every step here still
  583. * succeeds, and the generator writes a catalog missing that package's tools —
  584. * with the freshness gate green on it, because the omission is now what the
  585. * generator produces. {@link assertManifestComplete} cannot see this: the
  586. * package IS listed, it just contributed nothing.
  587. * @param entry - the manifest entry that was booted.
  588. * @param harvested - how many schemas its boot registered.
  589. * @throws when the boot registered no tool at all.
  590. */
  591. export function assertToolsHarvested(entry: ToolPackage, harvested: number): void {
  592. if (harvested > 0) return
  593. throw new Error(
  594. `gen-tool-catalog: ${entry.pkg} booted without registering a single tool. `
  595. + 'Its plugin is most likely PENDING on a service this manifest entry does not mount — '
  596. + `compare the plugin's inject with mount() and requires: ${entry.requires.join(', ')}.`,
  597. )
  598. }
  599. /**
  600. * Boot each tool package on a fresh Context and harvest its model-facing
  601. * schemas. A fresh Context per package keeps attribution clean (each entry's
  602. * schemas come from exactly that package) and isolates a boot failure to its
  603. * own entry. Disposed after harvest so no executor/provider outlives the run.
  604. */
  605. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  606. assertManifestComplete(packages)
  607. const catalog: ToolCatalog = []
  608. for (const entry of packages) {
  609. const ctx = new Context()
  610. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  611. // plugins mounted still tears the context down (no leaked executor/provider
  612. // fiber) — the repo's "dispose must reach quiescence" rule.
  613. try {
  614. await ctx.plugin(SystemPrompt)
  615. await ctx.plugin(ToolRuntime, entry.toolsConfig ?? {})
  616. await entry.mount(ctx)
  617. const schemas = ctx.tools.schemas(entry.scope?.(ctx)).sort((a, b) => a.name.localeCompare(b.name))
  618. assertToolsHarvested(entry, schemas.length)
  619. catalog.push({
  620. pkg: entry.pkg,
  621. sources: Object.fromEntries(schemas.map(schema => [
  622. schema.name,
  623. toolSource(entry, schema.name),
  624. ])),
  625. requires: entry.requires,
  626. writes: entry.writes,
  627. schemas,
  628. ...entry.shippedNames !== undefined ? { shippedNames: entry.shippedNames } : {},
  629. ...entry.note !== undefined ? { note: entry.note } : {},
  630. })
  631. } finally {
  632. await ctx.fiber.dispose()
  633. }
  634. }
  635. return catalog
  636. }
  637. /** Resolve one harvested tool to the plugin source that registered it. */
  638. function toolSource(entry: ToolPackage, toolName: string): string {
  639. if (typeof entry.source === 'string') return entry.source
  640. const source = entry.source[toolName]
  641. if (source === undefined) {
  642. throw new Error(
  643. `gen-tool-catalog: ${entry.pkg} has no source mapping for harvested tool ${toolName}`,
  644. )
  645. }
  646. return source
  647. }
  648. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  649. function renderTool(schema: ToolSchema, source: string): string[] {
  650. const out = [`### \`${schema.name}\``, '']
  651. if (schema.description) out.push(schema.description, '')
  652. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  653. out.push(`Source: [\`${source}\`](../${source})`, '')
  654. return out
  655. }
  656. function codeList(values: string[] | undefined): string {
  657. return values?.length ? values.map(value => `\`${value}\``).join(', ') : '-'
  658. }
  659. function tableCell(value: string | undefined): string {
  660. return value ? value.replace(/\|/g, '\\|').replace(/\n/g, '<br>') : '-'
  661. }
  662. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  663. export function render(catalog: ToolCatalog): string {
  664. const lines: string[] = [
  665. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  666. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  667. '',
  668. '# Tool Schema Catalog',
  669. '',
  670. 'Every model-facing tool a shipped plugin contributes to `ctx.tools`: the `name`, `description`, and JSON-Schema `parameters` the model receives via the system-prompt assembly. It complements the [subsystem pages](subsystems/core.md) (the types plus each page\'s generated Cordis API region) — this page is the *tools* the agent is offered.',
  671. '',
  672. 'This file is GENERATED and verified fresh by `pnpm run verify-tool-catalog` (part of `doc-sync`) — do not edit it by hand. Unlike the cordis catalog (a pure source-AST pass), this generator BOOTS each tool plugin on a real context and reads `ctx.tools.schemas()`, because a tool schema is not statically knowable (runtime-spread enums, concatenated descriptions, config-driven names, raw-JSON-Schema MCP tools). A completeness guard globs `packages/*/tool-*` and fails if any package is missing from the generator\'s boot manifest, so a new tool cannot be silently undocumented. See [the tool-schema-catalog Agent Note](../.agents/notes/implemented/process/2026-07-02-tool-schema-catalog.md).',
  673. '',
  674. 'Scope: shipped product tools under `packages/*/tool-*`, each booted with its DEFAULT config, except where a Config field is REQUIRED with no default — there the generator must choose, and the per-package note records which branch this page shows. The registered tool NAME can be a load-time config (e.g. `tool-subagent`\'s `toolName`), so a deployment may expose a package under a different or additional name — a per-package note records those shipped aliases where they exist. The `examples/` demo tools (e.g. `echo`) are excluded, matching the cordis catalog\'s packages-only scope.',
  675. '',
  676. '## Tool Package Map',
  677. '',
  678. 'This table connects model-visible tool names to the plugin package and service seams behind them. Exact JSON Schemas follow in the package sections below.',
  679. '',
  680. '| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |',
  681. '| --- | --- | --- | --- | --- | --- |',
  682. ...catalog.map(entry => `| \`${entry.pkg}\` | ${codeList(entry.schemas.map(schema => schema.name))} | ${codeList(entry.requires)} | ${codeList(entry.writes)} | ${codeList(entry.shippedNames)} | ${tableCell(entry.note)} |`),
  683. '',
  684. ]
  685. for (const entry of catalog) {
  686. lines.push(`## \`${entry.pkg}\``, '')
  687. for (const schema of entry.schemas) {
  688. // Collection validated that every harvested schema has a source.
  689. const source = entry.sources[schema.name] as string
  690. lines.push(...renderTool(schema, source))
  691. }
  692. if (entry.note) lines.push(entry.note, '')
  693. }
  694. return lines.join('\n')
  695. }
  696. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  697. * is stale. Guarded behind an entry-point check so importing this module for
  698. * tests neither regenerates the committed file nor calls process.exit. */
  699. async function main(): Promise<void> {
  700. const content = render(await collectToolCatalog())
  701. if (process.argv.includes('--check')) {
  702. let committed: string | null = null
  703. try {
  704. committed = readFileSync(resolve(root, OUT), 'utf8')
  705. } catch {
  706. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  707. // file is not a state this repo produces. Either way the remedy is the
  708. // same — regenerate — so treat a read failure as "stale".
  709. committed = null
  710. }
  711. if (committed === content) {
  712. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  713. process.exit(0)
  714. }
  715. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  716. const committedLines = committed?.split('\n') ?? []
  717. const generatedLines = content.split('\n')
  718. const lineCount = Math.max(committedLines.length, generatedLines.length)
  719. for (let index = 0; index < lineCount; index += 1) {
  720. if (committedLines[index] === generatedLines[index]) continue
  721. console.error(`gen-tool-catalog: first difference at line ${index + 1}`)
  722. console.error(` committed: ${JSON.stringify(committedLines[index])}`)
  723. console.error(` generated: ${JSON.stringify(generatedLines[index])}`)
  724. break
  725. }
  726. process.exit(1)
  727. }
  728. writeFileSync(resolve(root, OUT), content)
  729. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  730. }
  731. // Run only when invoked as a script, not when imported by a test.
  732. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  733. await main()
  734. }