gen-tool-catalog.ts 33 KB

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