gen-tool-catalog.ts 34 KB

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