gen-tool-catalog.ts 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  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 SessionQuerySqlite 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 ToolRegistry, { 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-bash-env'
  23. import { PwshLocalExecutor } from '@deepseek-ai/dsh-pwsh-local'
  24. import LocalSubprocessService 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 UserInteractionService from '@deepseek-ai/dsh-user-interaction'
  29. import PlanModeService from '@deepseek-ai/dsh-plan-mode'
  30. import WebService 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-local'
  33. import SubagentService 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 SkillService from '@deepseek-ai/dsh-skill'
  39. import * as SkillLocal from '@deepseek-ai/dsh-skill-local'
  40. import LocalTaskService from '@deepseek-ai/dsh-tasks-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 * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
  46. import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
  47. import * as ToolFsSearch from '@deepseek-ai/dsh-tool-fs-search'
  48. import * as ToolStrReplaceEditor from '@deepseek-ai/dsh-tool-str-replace-editor'
  49. import PtyService from '@deepseek-ai/dsh-pty'
  50. import * as ToolPty from '@deepseek-ai/dsh-tool-pty'
  51. import * as ToolGoal from '@deepseek-ai/dsh-tool-goal'
  52. import Lsp from '@deepseek-ai/dsh-lsp'
  53. import * as ToolLsp from '@deepseek-ai/dsh-tool-lsp'
  54. import * as ToolSkill from '@deepseek-ai/dsh-tool-skill'
  55. import * as ToolSessionQuery from '@deepseek-ai/dsh-tool-session-query'
  56. import * as ToolTasks from '@deepseek-ai/dsh-tool-tasks'
  57. import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
  58. import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
  59. import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
  60. import VmWorkflowEngine from '@deepseek-ai/dsh-workflow-workerthread'
  61. import * as ToolRalph from '@deepseek-ai/dsh-tool-ralph'
  62. import * as ToolWorkflow from '@deepseek-ai/dsh-tool-workflow'
  63. /** Attachment seam marker that makes the attachments-conditional `read_image` schema harvestable. */
  64. class CatalogAttachmentStore extends AttachmentStore {
  65. readonly imageLimits: ImageAttachmentLimits = Object.freeze({
  66. maxImageBytes: 1,
  67. maxImagesPerMessage: 1,
  68. maxMessageImageBytes: 1,
  69. maxImagePixels: 1,
  70. mediaTypes: Object.freeze(['image/png'] as const),
  71. })
  72. override validateImage(_input: SaveImageAttachment): Promise<void> {
  73. return Promise.reject(new Error('gen-tool-catalog: attachment validation is unreachable during schema harvest'))
  74. }
  75. override saveImage(_input: SaveImageAttachment): Promise<ImageAttachmentRef> {
  76. return Promise.reject(new Error('gen-tool-catalog: attachment writes are unreachable during schema harvest'))
  77. }
  78. override readImage(_ref: ImageAttachmentRef): Promise<StoredImageAttachment> {
  79. return Promise.reject(new Error('gen-tool-catalog: attachment reads are unreachable during schema harvest'))
  80. }
  81. }
  82. const root = resolve(import.meta.dirname, '..')
  83. const OUT = 'docs/tool-catalog.md'
  84. /**
  85. * Register the descriptor needed to mount schema-producing consumers. Declares
  86. * the full capability set of the shipped in-process providers so consumers
  87. * mount under their shipped defaults (tool-subagent's default numeric maxDepth
  88. * requires `depthLimit`).
  89. */
  90. function registerCatalogSubagentProvider(ctx: Context, name: string): void {
  91. const provider: SubagentProvider = {
  92. name,
  93. capabilities: { outputSchema: true, depthLimit: true, toolFilter: true, persona: true },
  94. inheritsParentContext: false,
  95. start: () => Promise.reject(new Error('tool-catalog provider cannot start a child')),
  96. // Declared so consumers configured for continuable background mode mount.
  97. prepareContinuable: () => Promise.reject(new Error('tool-catalog provider cannot prepare a child')),
  98. }
  99. ctx.subagents.registerProvider(provider)
  100. }
  101. /** Minted child-scope keys for packages whose tools are never global. */
  102. const catalogChildScopes = new WeakMap<Context, Agent>()
  103. /**
  104. * Install one scope-local tool package into an agent-like child scope for
  105. * schema harvest, without starting a model, Agent loop, or persistence backend.
  106. * @param ctx - catalog context owning the scope.
  107. * @param mountScoped - package installer for the scoped context.
  108. */
  109. async function mountCatalogChildScope(
  110. ctx: Context,
  111. mountScoped: (childCtx: Context) => void,
  112. ): Promise<void> {
  113. const key = { id: SessionId('tool-catalog-child') } as Agent
  114. await ctx.plugin(Object.assign((inner: Context) => {
  115. mountScoped(createScope(inner, key).ctx)
  116. }, { inject: ['tools', 'systemPrompt', 'subagents'] }))
  117. catalogChildScopes.set(ctx, key)
  118. }
  119. /**
  120. * Tool package plus its hand-maintained boot recipe. The caller mounts the
  121. * prompt and registry; each recipe supplies only package-specific seams and
  122. * config, while `dir` participates in the completeness check.
  123. */
  124. interface ToolPackage {
  125. /** The npm package name, used as the catalog section heading. */
  126. pkg: string
  127. /** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
  128. dir: string
  129. /**
  130. * Repo-relative implementation source linked per harvested tool. Packages
  131. * whose tools share one plugin may use a string; split plugins map each tool
  132. * name to its own source.
  133. */
  134. source: string | Readonly<Record<string, string>>
  135. /** Services or owning runtimes the package requires at execution time. */
  136. requires: string[]
  137. /** Session events or other visible state the tools write or affect. */
  138. writes: string[]
  139. /** Additional model-visible names shipped by example/app config. */
  140. shippedNames?: string[]
  141. /** Plug the injected seams + the tool plugin onto a context that already
  142. * carries `systemPrompt` + `tools`. */
  143. mount: (ctx: Context) => Promise<void>
  144. /** Agent-like scope key whose tool view is catalogued instead of the global view. */
  145. scope?: (ctx: Context) => Agent
  146. /**
  147. * Config for the caller's `ToolRegistry` mount. The registry itself ships a
  148. * model-facing tool (`run_code`, registered under a non-native `mode`), so
  149. * ITS catalog entry boots the registry in the mode that exposes it;
  150. * every other entry uses the default (native) registry.
  151. */
  152. toolsConfig?: ToolsConfig
  153. /**
  154. * A deployment note rendered after the package's tools, for a fact that
  155. * booting the package alone cannot show. The registered tool NAME can be a
  156. * load-time config (`tool-subagent`'s `toolName`), so one package may appear
  157. * under several names across deployments — the boot yields the package
  158. * DEFAULT, and this note records the shipped alternatives the model sees.
  159. */
  160. note?: string
  161. }
  162. /**
  163. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  164. * `packages/`). Ordered by package name (the render order); the completeness
  165. * guard proves it is exhaustive against the on-disk glob.
  166. */
  167. const TOOL_PACKAGES: ToolPackage[] = [
  168. {
  169. pkg: '@deepseek-ai/dsh-tool-ask-user',
  170. dir: 'tool-ask-user',
  171. source: 'packages/interaction/tool-ask-user/src/index.ts',
  172. requires: ['ctx.tools', 'ctx.userInteraction'],
  173. writes: ['tool/call', 'tool/result after a UI/provider answers the question'],
  174. async mount(ctx) {
  175. await ctx.plugin(UserInteractionService)
  176. await ctx.plugin(ToolAskUser)
  177. },
  178. note:
  179. 'ask_user_question pauses the tool call until the active UI provider returns a human answer.',
  180. },
  181. {
  182. pkg: '@deepseek-ai/dsh-tools',
  183. dir: 'tools',
  184. source: 'packages/core/tools/src/code-mode.ts',
  185. requires: ['ctx.tools', 'ctx.codeRuntime (execution time)', 'ctx.systemPrompt'],
  186. writes: ['tool/call', 'one tool/code-dispatch-start + tool/code-dispatch pair per bridged sub-call', 'tool/result'],
  187. // The registry's OWN tool: run_code exists only under a non-native mode
  188. // (the registry registers it in its constructor; the code runtime is read
  189. // at assembly/execution time, so the schema harvest needs none mounted).
  190. toolsConfig: { mode: 'code' },
  191. async mount() {},
  192. note:
  193. '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.',
  194. },
  195. {
  196. pkg: '@deepseek-ai/dsh-plan-mode',
  197. dir: 'plan-mode',
  198. source: 'packages/plan/plan-mode/src/index.ts',
  199. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.userInteraction (execution time, opportunistic)'],
  200. writes: ['tool/call', 'plan/mode inactive on an approved review', 'tool/result'],
  201. async mount(ctx) {
  202. await ctx.plugin(PlanModeService, { section: 'Tool catalog schema harvest.' })
  203. },
  204. note:
  205. '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-interaction seam (approve / keep planning with feedback), and approval logs plan mode inactive at the step boundary.',
  206. },
  207. {
  208. pkg: '@deepseek-ai/dsh-tool-bash',
  209. dir: 'tool-bash',
  210. source: 'packages/bash/tool-bash/src/index.ts',
  211. requires: ['ctx.tools', 'ctx.bash', 'ctx.systemPrompt', 'ctx.bashEnv', 'ctx.tasks at call time for run_in_background'],
  212. writes: ['tool/call', 'tool/result'],
  213. async mount(ctx) {
  214. await ctx.plugin(LocalSubprocessService)
  215. await ctx.plugin(BashEnvPlugin)
  216. await ctx.plugin(LocalBashExecutor)
  217. await ctx.plugin(ToolBash)
  218. },
  219. note:
  220. 'The bash tool is the model-facing consumer of the bash executor seam. A `run_in_background` run registers with the generic `ctx.tasks` runtime and is collected/stopped through the `task_*` tools from `@deepseek-ai/dsh-tool-tasks`; the `enableRunInBackground` config (default true) removes the parameter entirely when disabled.',
  221. },
  222. {
  223. pkg: '@deepseek-ai/dsh-tool-pwsh',
  224. dir: 'tool-pwsh',
  225. source: 'packages/bash/tool-pwsh/src/index.ts',
  226. requires: ['ctx.tools', 'ctx.bash', 'ctx.systemPrompt', 'ctx.bashEnv', 'ctx.tasks at call time for run_in_background'],
  227. writes: ['tool/call', 'tool/result'],
  228. async mount(ctx) {
  229. // The pwsh tool consumes the bash executor seam; the schema harvest
  230. // mounts the pwsh-local implementation so the inject resolves without
  231. // executing anything (registration never spawns a process).
  232. await ctx.plugin(LocalSubprocessService)
  233. await ctx.plugin(BashEnvPlugin)
  234. await ctx.plugin(PwshLocalExecutor)
  235. await ctx.plugin(ToolPwsh)
  236. },
  237. note:
  238. '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.bash`); it mirrors the bash tool call-for-call minus sandbox controls — `run_in_background` runs register with the generic `ctx.tasks` runtime and are collected/stopped through the `task_*` tools, and the managed `DSH_*` environment comes from `@deepseek-ai/dsh-bash-env`. Each call runs in a fresh process (no persistent PTY session), with native `C:\\...` paths and `$env:NAME` variables.',
  239. },
  240. {
  241. pkg: '@deepseek-ai/dsh-tool-cordis',
  242. dir: 'tool-cordis',
  243. source: 'packages/self-modification/tool-cordis/src/index.ts',
  244. requires: ['ctx.tools'],
  245. writes: ['tool/call', 'tool/result', 'process-local temporary Plugin lifecycle'],
  246. async mount(ctx) {
  247. await ctx.plugin(ToolCordis)
  248. },
  249. note:
  250. 'Not in any shipped tree (a deliberate opt-in — temporary Plugin code reaches the real runtime, see .agents/notes/implemented/feature/2026-07-08-self-referential-cordis-toolset.md). Plugins created by cordis_mount may register ADDITIONAL model-visible tools until unmounted or DSH restarts; a full changed request header logs those tool-set changes.',
  251. },
  252. {
  253. pkg: '@deepseek-ai/dsh-tool-bash-persistent',
  254. dir: 'tool-bash-persistent',
  255. source: 'packages/pty/tool-bash-persistent/src/index.ts',
  256. requires: ['ctx.tools', 'ctx.pty', 'an owning Agent at execution time'],
  257. writes: ['tool/call', 'PTY shell state', 'tool/result'],
  258. async mount(ctx) {
  259. await ctx.plugin(PtyService)
  260. await ctx.plugin(ToolBashPersistent)
  261. },
  262. note:
  263. 'One owner-isolated persistent bash tool; deployment composition supplies the PTY backend and may override the model-facing environment description.',
  264. },
  265. {
  266. pkg: '@deepseek-ai/dsh-tool-str-replace-editor',
  267. dir: 'tool-str-replace-editor',
  268. source: 'packages/fs/tool-str-replace-editor/src/index.ts',
  269. requires: ['ctx.tools', 'ctx.fs'],
  270. writes: ['tool/call', 'fs/observed after view presence/absence, edit absence, or successful mutation', 'tool/result'],
  271. async mount(ctx) {
  272. await ctx.plugin(LocalFileSystem)
  273. await ctx.plugin(ToolStrReplaceEditor)
  274. },
  275. note:
  276. 'Standalone view/create/unique literal replace/line insert tool over the filesystem seam; it composes with any shell or terminal API.',
  277. },
  278. {
  279. pkg: '@deepseek-ai/dsh-tool-fs',
  280. dir: 'tool-fs',
  281. source: 'packages/fs/tool-fs/src/index.ts',
  282. requires: ['ctx.tools', 'ctx.fs', 'ctx.systemPrompt', 'ctx.attachments (read_image registration)', 'ctx.llm + an image-capable route (read_image execution)'],
  283. 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'],
  284. async mount(ctx) {
  285. // The tool needs `fs`; the bare provider is sufficient because policy
  286. // changes behavior, not schema shape. The catalog seam marker opts into
  287. // the attachments-conditional read_image schema without attachment I/O.
  288. await ctx.plugin(LocalFileSystem)
  289. await ctx.plugin(CatalogAttachmentStore)
  290. await ctx.plugin(ToolFs)
  291. },
  292. note:
  293. 'The read-before-write/edit policy is added by `@deepseek-ai/dsh-fs-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.',
  294. },
  295. {
  296. pkg: '@deepseek-ai/dsh-tool-fs-search',
  297. dir: 'tool-fs-search',
  298. source: 'packages/fs/tool-fs-search/src/index.ts',
  299. requires: ['ctx.tools', 'ctx.subprocess', 'ctx.systemPrompt'],
  300. writes: ['tool/call', 'tool/result'],
  301. async mount(ctx) {
  302. // The tools inject `subprocess` (search spawns the packaged ripgrep
  303. // binary through the seam, not ctx.fs); registration itself never
  304. // spawns, so the real local service is inert here. `ctx.spillStore` is
  305. // optional (read via ctx.get) and does not affect the schemas, so no
  306. // spill backend is mounted.
  307. await ctx.plugin(LocalSubprocessService)
  308. await ctx.plugin(ToolFsSearch, { sampleOverCapGlobResults: true })
  309. },
  310. note:
  311. 'glob and grep are unconditional discovery tools that spawn the packaged ripgrep binary (`@vscode/ripgrep`) through ctx.subprocess as ordinary foreground calls (never background tasks) — 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.',
  312. },
  313. {
  314. pkg: '@deepseek-ai/dsh-tool-pty',
  315. dir: 'tool-pty',
  316. source: 'packages/pty/tool-pty/src/index.ts',
  317. requires: ['ctx.tools', 'ctx.pty', 'ctx.systemPrompt', 'ctx.tasks at call time for run_in_background'],
  318. writes: ['tool/call', 'tool/result'],
  319. async mount(ctx) {
  320. await ctx.plugin(PtyService)
  321. await ctx.plugin(ToolPty)
  322. },
  323. note:
  324. 'The six terminal tools are opt-in and complement one-shot bash/filesystem tools. `terminal_send(run_in_background: true)` registers with `ctx.tasks`; TUI, named key sequences, BEL, resize, auto-start, and cross-agent sharing are absent from the schema.',
  325. },
  326. {
  327. pkg: '@deepseek-ai/dsh-tool-goal',
  328. dir: 'tool-goal',
  329. source: 'packages/goal/tool-goal/src/index.ts',
  330. requires: ['ctx.tools', 'ctx.agents', 'ctx.goals', 'ctx.systemPrompt', 'a calling Agent in an authorized open turn'],
  331. writes: ['tool/call', 'goal/change for mutations', 'tool/result'],
  332. async mount(ctx) {
  333. await ctx.plugin(AgentRegistry)
  334. await ctx.plugin(GoalService)
  335. await ctx.plugin(ToolGoal)
  336. },
  337. note:
  338. '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.',
  339. },
  340. {
  341. pkg: '@deepseek-ai/dsh-tool-lsp',
  342. dir: 'tool-lsp',
  343. source: 'packages/lsp/tool-lsp/src/index.ts',
  344. requires: ['ctx.tools', 'ctx.lsp', 'ctx.systemPrompt'],
  345. writes: ['tool/call', 'tool/result'],
  346. async mount(ctx) {
  347. // The tool registers from the seam alone; the schema does not depend on any provider.
  348. await ctx.plugin(Lsp)
  349. await ctx.plugin(ToolLsp)
  350. },
  351. note:
  352. '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-local`) at runtime; without one, a query returns the structured `LSP_UNAVAILABLE` error rather than changing the schema.',
  353. },
  354. {
  355. pkg: '@deepseek-ai/dsh-tool-ralph',
  356. dir: 'tool-ralph',
  357. source: 'packages/workflow/tool-ralph/src/index.ts',
  358. requires: ['ctx.tools', 'ctx.workflows', 'ctx.subagents', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents every fresh round)'],
  359. writes: ['tool/call', 'tool/result', 'workflow and child session events during execution'],
  360. async mount(ctx) {
  361. await ctx.plugin(SubagentService)
  362. registerCatalogSubagentProvider(ctx, 'mock')
  363. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  364. await ctx.plugin(ToolRalph, { subagentProvider: 'mock' })
  365. },
  366. note:
  367. 'A fixed foreground workflow starts one fresh structured child per round; the model selects only the immutable objective and an optional round cap.',
  368. },
  369. {
  370. pkg: '@deepseek-ai/dsh-tool-skill',
  371. dir: 'tool-skill',
  372. source: 'packages/skill/tool-skill/src/index.ts',
  373. requires: ['ctx.tools', 'ctx.agents', 'ctx.skills'],
  374. writes: ['tool/call', 'tool/result', 'user/message replacement catalogs via agent.inject()'],
  375. async mount(ctx) {
  376. await ctx.plugin(AgentRegistry)
  377. await ctx.plugin(SkillService)
  378. await ctx.plugin(SkillLocal, {
  379. dshHome: resolve(root, '.tmp/tool-catalog/.dsh'),
  380. agentsHome: resolve(root, '.tmp/tool-catalog/.agents'),
  381. })
  382. await ctx.plugin(ToolSkill)
  383. },
  384. },
  385. {
  386. pkg: '@deepseek-ai/dsh-tool-session-query',
  387. dir: 'tool-session-query',
  388. source: 'packages/session-query/tool-session-query/src/index.ts',
  389. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.sessionQuery', 'a calling Agent for workspace authority'],
  390. writes: ['tool/call', 'tool/result'],
  391. async mount(ctx) {
  392. await ctx.plugin(SessionStore)
  393. await ctx.plugin(SessionQuerySqlite, { path: ':memory:' })
  394. await ctx.plugin(ToolSessionQuery)
  395. },
  396. note:
  397. '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.',
  398. },
  399. {
  400. pkg: '@deepseek-ai/dsh-tool-subagent',
  401. dir: 'tool-subagent',
  402. source: 'packages/subagent/tool-subagent/src/index.ts',
  403. requires: ['ctx.tools', 'ctx.subagents'],
  404. writes: ['tool/call', 'tool/result', 'child session events through the chosen provider'],
  405. shippedNames: ['subagent', 'subagent_fork'],
  406. async mount(ctx) {
  407. await ctx.plugin(SubagentService)
  408. registerCatalogSubagentProvider(ctx, 'mock')
  409. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  410. },
  411. note:
  412. '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 and `run_in_background` parameter follow its own `backgroundMode` and `enableRunInBackground`, so the two shipped schemas are not identical: `subagent` is `continuable`, while `subagent_fork` stays `one-shot` — see `packages/bundle/base/cordis.patch.yml` and `examples/acp-agent/cordis.yml`.',
  413. },
  414. {
  415. pkg: '@deepseek-ai/dsh-tool-subagent-control',
  416. dir: 'tool-subagent-control',
  417. source: {
  418. interrupt_agent: 'packages/subagent/tool-subagent-control/src/index.ts',
  419. list_agents: 'packages/subagent/tool-subagent-control/src/list-agents.ts',
  420. send_message: 'packages/subagent/tool-subagent-control/src/index.ts',
  421. },
  422. requires: ['ctx.tools', 'ctx.subagents', 'ctx.agents and ctx.sessionProjections (list_agents only)'],
  423. writes: ['tool/call', 'tool/result', 'child session events through ctx.subagents'],
  424. async mount(ctx) {
  425. await ctx.plugin(SubagentService)
  426. await ctx.plugin(LocalTaskService)
  427. await ctx.plugin(AgentRegistry)
  428. await ctx.plugin(SessionStore)
  429. await ctx.plugin(SessionProjectionRegistry)
  430. await ctx.plugin(ToolSubagentControl)
  431. await ctx.plugin(ToolSubagentListAgents)
  432. },
  433. note:
  434. '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).',
  435. },
  436. {
  437. pkg: '@deepseek-ai/dsh-tool-subagent-report',
  438. dir: 'tool-subagent-report',
  439. source: 'packages/subagent/tool-subagent-report/src/index.ts',
  440. requires: ['ctx.subagents', 'ctx.systemPrompt', 'a live continuable in-process child Agent'],
  441. writes: ['tool/call', 'tool/result', 'a user-role message in the direct parent session'],
  442. async mount(ctx) {
  443. await ctx.plugin(AgentRegistry)
  444. await ctx.plugin(SubagentService)
  445. const { reportDelivery } = ToolSubagentReport.Config({}) as { reportDelivery: SubagentReportDelivery }
  446. await mountCatalogChildScope(ctx, (childCtx) => {
  447. ToolSubagentReport.installReportTool(childCtx, ctx, reportDelivery)
  448. })
  449. },
  450. scope: ctx => catalogChildScopes.get(ctx) as Agent,
  451. note:
  452. 'Registered per continuable in-process child rather than globally, so this schema is visible only '
  453. + 'inside such a child and survives its global `toolFilter`. The same contribution installs the '
  454. + 'child-scoped `tool:report` prompt section, which this catalog does not render. The parent-facing '
  455. + '`send_message` tool is installed independently.',
  456. },
  457. {
  458. pkg: '@deepseek-ai/dsh-tool-tasks',
  459. dir: 'tool-tasks',
  460. source: 'packages/tasks/tool-tasks/src/index.ts',
  461. requires: ['ctx.tools', 'ctx.tasks', 'ctx.systemPrompt'],
  462. writes: ['tool/call', 'tool/result', 'user/message via agent.inject() for background completion notices'],
  463. async mount(ctx) {
  464. await ctx.plugin(LocalTaskService)
  465. await ctx.plugin(ToolTasks)
  466. },
  467. note:
  468. 'The kind-agnostic background-task 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.tasks.start()`.',
  469. },
  470. {
  471. pkg: '@deepseek-ai/dsh-tool-todo',
  472. dir: 'tool-todo',
  473. source: 'packages/todo/tool-todo/src/index.ts',
  474. requires: ['ctx.tools', 'owning Agent session'],
  475. writes: ['tool/call', 'todo/write', 'tool/result'],
  476. async mount(ctx) {
  477. await ctx.plugin(ToolTodo, { allowParallelInProgress: true })
  478. },
  479. note:
  480. '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.',
  481. },
  482. {
  483. pkg: '@deepseek-ai/dsh-tool-workflow',
  484. dir: 'tool-workflow',
  485. source: 'packages/workflow/tool-workflow/src/index.ts',
  486. requires: ['ctx.tools', 'ctx.workflows', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents the script children)'],
  487. writes: ['tool/call', 'tool/result'],
  488. async mount(ctx) {
  489. // The tool injects `workflows`; boot the vm engine over a scripted
  490. // subagent provider to satisfy it. The schema does not depend on which
  491. // provider backs the engine.
  492. await ctx.plugin(SubagentService)
  493. registerCatalogSubagentProvider(ctx, 'mock')
  494. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  495. await ctx.plugin(ToolWorkflow)
  496. },
  497. },
  498. {
  499. pkg: '@deepseek-ai/dsh-tool-web',
  500. dir: 'tool-web',
  501. source: 'packages/web/tool-web/src/index.ts',
  502. requires: ['ctx.tools', 'ctx.web', 'ctx.systemPrompt'],
  503. writes: ['tool/call', 'tool/result'],
  504. async mount(ctx) {
  505. // Mount search and fetch providers so both tools register. Their schemas
  506. // do not depend on provider identity or availability.
  507. await ctx.plugin(WebService)
  508. await ctx.plugin(WebSearchExa)
  509. await ctx.plugin(WebFetchLocal)
  510. await ctx.plugin(ToolWeb)
  511. },
  512. note:
  513. 'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.',
  514. },
  515. ]
  516. /** One package's contribution to the catalog: its schemas plus attribution. */
  517. interface CatalogPackage {
  518. pkg: string
  519. sources: Readonly<Record<string, string>>
  520. requires: string[]
  521. writes: string[]
  522. shippedNames?: string[]
  523. schemas: ToolSchema[]
  524. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  525. note?: string
  526. }
  527. /** The whole catalog: one entry per booted tool package, in manifest order. */
  528. export type ToolCatalog = CatalogPackage[]
  529. /**
  530. * Assert the boot manifest covers every shipped tool package on disk (a
  531. * `tool-*` leaf under `packages/`).
  532. * Booting has no source declaration to enumerate, so this glob restores the
  533. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  534. * fails the generator (and the freshness gate) until it is added to
  535. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  536. *
  537. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  538. */
  539. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  540. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  541. const listed = new Set(packages.map(p => p.dir))
  542. const missing = onDisk.filter(dir => !listed.has(dir))
  543. if (missing.length > 0) {
  544. throw new Error(
  545. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  546. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  547. )
  548. }
  549. }
  550. /**
  551. * Boot each tool package on a fresh Context and harvest its model-facing
  552. * schemas. A fresh Context per package keeps attribution clean (each entry's
  553. * schemas come from exactly that package) and isolates a boot failure to its
  554. * own entry. Disposed after harvest so no executor/provider outlives the run.
  555. */
  556. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  557. assertManifestComplete(packages)
  558. const catalog: ToolCatalog = []
  559. for (const entry of packages) {
  560. const ctx = new Context()
  561. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  562. // plugins mounted still tears the context down (no leaked executor/provider
  563. // fiber) — the repo's "dispose must reach quiescence" rule.
  564. try {
  565. await ctx.plugin(SystemPrompt)
  566. await ctx.plugin(ToolRegistry, entry.toolsConfig ?? {})
  567. await entry.mount(ctx)
  568. const schemas = ctx.tools.schemas(entry.scope?.(ctx)).sort((a, b) => a.name.localeCompare(b.name))
  569. catalog.push({
  570. pkg: entry.pkg,
  571. sources: Object.fromEntries(schemas.map(schema => [
  572. schema.name,
  573. toolSource(entry, schema.name),
  574. ])),
  575. requires: entry.requires,
  576. writes: entry.writes,
  577. schemas,
  578. ...entry.shippedNames !== undefined ? { shippedNames: entry.shippedNames } : {},
  579. ...entry.note !== undefined ? { note: entry.note } : {},
  580. })
  581. } finally {
  582. await ctx.fiber.dispose()
  583. }
  584. }
  585. return catalog
  586. }
  587. /** Resolve one harvested tool to the plugin source that registered it. */
  588. function toolSource(entry: ToolPackage, toolName: string): string {
  589. if (typeof entry.source === 'string') return entry.source
  590. const source = entry.source[toolName]
  591. if (source === undefined) {
  592. throw new Error(
  593. `gen-tool-catalog: ${entry.pkg} has no source mapping for harvested tool ${toolName}`,
  594. )
  595. }
  596. return source
  597. }
  598. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  599. function renderTool(schema: ToolSchema, source: string): string[] {
  600. const out = [`### \`${schema.name}\``, '']
  601. if (schema.description) out.push(schema.description, '')
  602. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  603. out.push(`Source: [\`${source}\`](../${source})`, '')
  604. return out
  605. }
  606. function codeList(values: string[] | undefined): string {
  607. return values?.length ? values.map(value => `\`${value}\``).join(', ') : '-'
  608. }
  609. function tableCell(value: string | undefined): string {
  610. return value ? value.replace(/\|/g, '\\|').replace(/\n/g, '<br>') : '-'
  611. }
  612. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  613. export function render(catalog: ToolCatalog): string {
  614. const lines: string[] = [
  615. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  616. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  617. '',
  618. '# Tool Schema Catalog',
  619. '',
  620. '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.',
  621. '',
  622. '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).',
  623. '',
  624. '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.',
  625. '',
  626. '## Tool Package Map',
  627. '',
  628. '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.',
  629. '',
  630. '| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |',
  631. '| --- | --- | --- | --- | --- | --- |',
  632. ...catalog.map(entry => `| \`${entry.pkg}\` | ${codeList(entry.schemas.map(schema => schema.name))} | ${codeList(entry.requires)} | ${codeList(entry.writes)} | ${codeList(entry.shippedNames)} | ${tableCell(entry.note)} |`),
  633. '',
  634. ]
  635. for (const entry of catalog) {
  636. lines.push(`## \`${entry.pkg}\``, '')
  637. for (const schema of entry.schemas) {
  638. // Collection validated that every harvested schema has a source.
  639. const source = entry.sources[schema.name] as string
  640. lines.push(...renderTool(schema, source))
  641. }
  642. if (entry.note) lines.push(entry.note, '')
  643. }
  644. return lines.join('\n')
  645. }
  646. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  647. * is stale. Guarded behind an entry-point check so importing this module for
  648. * tests neither regenerates the committed file nor calls process.exit. */
  649. async function main(): Promise<void> {
  650. const content = render(await collectToolCatalog())
  651. if (process.argv.includes('--check')) {
  652. let committed: string | null = null
  653. try {
  654. committed = readFileSync(resolve(root, OUT), 'utf8')
  655. } catch {
  656. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  657. // file is not a state this repo produces. Either way the remedy is the
  658. // same — regenerate — so treat a read failure as "stale".
  659. committed = null
  660. }
  661. if (committed === content) {
  662. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  663. process.exit(0)
  664. }
  665. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  666. const committedLines = committed?.split('\n') ?? []
  667. const generatedLines = content.split('\n')
  668. const lineCount = Math.max(committedLines.length, generatedLines.length)
  669. for (let index = 0; index < lineCount; index += 1) {
  670. if (committedLines[index] === generatedLines[index]) continue
  671. console.error(`gen-tool-catalog: first difference at line ${index + 1}`)
  672. console.error(` committed: ${JSON.stringify(committedLines[index])}`)
  673. console.error(` generated: ${JSON.stringify(generatedLines[index])}`)
  674. break
  675. }
  676. process.exit(1)
  677. }
  678. writeFileSync(resolve(root, OUT), content)
  679. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  680. }
  681. // Run only when invoked as a script, not when imported by a test.
  682. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  683. await main()
  684. }