gen-tool-catalog.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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. * `docs/rfc/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 SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  13. import ToolRegistry, { type Config as ToolsConfig } from '@deepseek-ai/dsh-tools'
  14. import LocalBashExecutor from '@deepseek-ai/dsh-bash-local'
  15. import LocalFileSystem from '@deepseek-ai/dsh-fs-local'
  16. import UserInteractionService from '@deepseek-ai/dsh-user-interaction'
  17. import WebService from '@deepseek-ai/dsh-web'
  18. import * as WebSearchExa from '@deepseek-ai/dsh-web-search-exa'
  19. import * as WebFetchLocal from '@deepseek-ai/dsh-web-fetch-local'
  20. import SubagentService from '@deepseek-ai/dsh-subagent'
  21. import * as SubagentMock from '@deepseek-ai/dsh-subagent-mock'
  22. import SkillService from '@deepseek-ai/dsh-skill'
  23. import * as SkillLocal from '@deepseek-ai/dsh-skill-local'
  24. import TaskService from '@deepseek-ai/dsh-tasks'
  25. import * as ToolAskUser from '@deepseek-ai/dsh-tool-ask-user'
  26. import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
  27. import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
  28. import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
  29. import * as ToolFsSearch from '@deepseek-ai/dsh-tool-fs-search'
  30. import * as ToolSkill from '@deepseek-ai/dsh-tool-skill'
  31. import * as ToolTasks from '@deepseek-ai/dsh-tool-tasks'
  32. import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
  33. import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
  34. import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
  35. import VmWorkflowEngine from '@deepseek-ai/dsh-workflow-workerthread'
  36. import * as ToolWorkflow from '@deepseek-ai/dsh-tool-workflow'
  37. const root = resolve(import.meta.dirname, '..')
  38. const OUT = 'docs/tool-catalog.md'
  39. /**
  40. * Tool package plus its hand-maintained boot recipe. The caller mounts the
  41. * prompt and registry; each recipe supplies only package-specific seams and
  42. * config, while `dir` participates in the completeness check.
  43. */
  44. interface ToolPackage {
  45. /** The npm package name, used as the catalog section heading. */
  46. pkg: string
  47. /** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
  48. dir: string
  49. /** Repo-relative source path linked from the catalog entry. */
  50. source: string
  51. /** Services or owning runtime surfaces the package requires at execution time. */
  52. requires: string[]
  53. /** Session events or other visible state the tools write or affect. */
  54. writes: string[]
  55. /** Additional model-visible names shipped by example/app config. */
  56. shippedNames?: string[]
  57. /** Plug the injected seams + the tool plugin onto a context that already
  58. * carries `systemPrompt` + `tools`. */
  59. mount: (ctx: Context) => Promise<void>
  60. /**
  61. * Config for the caller's `ToolRegistry` mount. The registry itself ships a
  62. * model-facing tool (`run_code`, registered under a non-native `mode`), so
  63. * ITS catalog entry boots the registry in the mode that surfaces it;
  64. * every other entry uses the default (native) registry.
  65. */
  66. toolsConfig?: ToolsConfig
  67. /**
  68. * A deployment note rendered after the package's tools, for a fact that
  69. * booting the package alone cannot show. The registered tool NAME can be a
  70. * load-time config (`tool-subagent`'s `toolName`), so one package may surface
  71. * under several names across deployments — the boot yields the package
  72. * DEFAULT, and this note records the shipped alternatives the model sees.
  73. */
  74. note?: string
  75. }
  76. /**
  77. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  78. * `packages/`). Ordered by package name (the render order); the completeness
  79. * guard proves it is exhaustive against the on-disk glob.
  80. */
  81. const TOOL_PACKAGES: ToolPackage[] = [
  82. {
  83. pkg: '@deepseek-ai/dsh-tool-ask-user',
  84. dir: 'tool-ask-user',
  85. source: 'packages/ui/tool-ask-user/src/index.ts',
  86. requires: ['ctx.tools', 'ctx.userInteraction'],
  87. writes: ['tool/call', 'tool/result after a UI/provider answers the question'],
  88. async mount(ctx) {
  89. await ctx.plugin(UserInteractionService)
  90. await ctx.plugin(ToolAskUser)
  91. },
  92. note:
  93. 'ask_user_question pauses the tool call until the active UI provider returns a human answer.',
  94. },
  95. {
  96. pkg: '@deepseek-ai/dsh-tools',
  97. dir: 'tools',
  98. source: 'packages/core/tools/src/code-mode.ts',
  99. requires: ['ctx.tools', 'ctx.codeRuntime (execution time)', 'ctx.systemPrompt'],
  100. writes: ['tool/call', 'one tool/code-dispatch per bridged sub-call', 'tool/result'],
  101. // The registry's OWN tool: run_code exists only under a non-native mode
  102. // (the registry registers it in its constructor; the code runtime is read
  103. // at assembly/execution time, so the schema harvest needs none mounted).
  104. toolsConfig: { mode: 'code' },
  105. async mount() {},
  106. note:
  107. 'Owned by the tool registry as a reserved transport outside filterable capability layers under `mode: code` / `mode: both` (see the Code Mode RFC). 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 serialized bindings that re-enter the complete guarded tool pipeline and link each nested execution to this outer result.',
  108. },
  109. {
  110. pkg: '@deepseek-ai/dsh-tool-bash',
  111. dir: 'tool-bash',
  112. source: 'packages/bash/tool-bash/src/index.ts',
  113. requires: ['ctx.tools', 'ctx.bash', 'ctx.tasks at call time for run_in_background'],
  114. writes: ['tool/call', 'tool/result'],
  115. async mount(ctx) {
  116. await ctx.plugin(LocalBashExecutor)
  117. await ctx.plugin(ToolBash)
  118. },
  119. note:
  120. '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.',
  121. },
  122. {
  123. pkg: '@deepseek-ai/dsh-tool-cordis',
  124. dir: 'tool-cordis',
  125. source: 'packages/cordis/tool-cordis/src/index.ts',
  126. requires: ['ctx.tools'],
  127. writes: ['tool/call', 'tool/result', 'live plugin-tree mutations (mount/unmount)'],
  128. async mount(ctx) {
  129. await ctx.plugin(ToolCordis)
  130. },
  131. note:
  132. 'Ships in examples/cordis-agent only (a deliberate opt-in — mounted code gets the real ctx, see docs/rfc/implemented/feature/2026-07-08-self-referential-cordis-toolset.md). Plugins the model mounts may register ADDITIONAL model-visible tools at runtime; a full changed request header logs those tool-set changes.',
  133. },
  134. {
  135. pkg: '@deepseek-ai/dsh-tool-fs',
  136. dir: 'tool-fs',
  137. source: 'packages/fs/tool-fs/src/index.ts',
  138. requires: ['ctx.tools', 'ctx.fs', 'ctx.systemPrompt'],
  139. writes: ['tool/call', 'fs/write-intent or fs/edit-intent for mutations', 'fs/observed after successful file operations', 'tool/result'],
  140. async mount(ctx) {
  141. // The tool needs `fs`; the bare provider is sufficient because policy
  142. // changes behavior, not schema shape.
  143. await ctx.plugin(LocalFileSystem)
  144. await ctx.plugin(ToolFs)
  145. },
  146. note:
  147. '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.',
  148. },
  149. {
  150. pkg: '@deepseek-ai/dsh-tool-fs-search',
  151. dir: 'tool-fs-search',
  152. source: 'packages/fs/tool-fs-search/src/index.ts',
  153. requires: ['ctx.tools', 'ctx.bash', 'ctx.systemPrompt'],
  154. writes: ['tool/call', 'tool/result'],
  155. async mount(ctx) {
  156. // The tools inject `bash` (search executes fixed `rg` commands through
  157. // the executor seam, not ctx.fs); boot the local executor to satisfy it.
  158. // `ctx.spillStore` is optional (read via ctx.get) and does not affect the
  159. // schemas, so no spill backend is mounted.
  160. await ctx.plugin(LocalBashExecutor)
  161. await ctx.plugin(ToolFsSearch)
  162. },
  163. note:
  164. 'glob and grep are bash-backed discovery tools: they run fixed ripgrep commands through ctx.bash as ordinary foreground calls (never background tasks). 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.',
  165. },
  166. {
  167. pkg: '@deepseek-ai/dsh-tool-skill',
  168. dir: 'tool-skill',
  169. source: 'packages/skill/tool-skill/src/index.ts',
  170. requires: ['ctx.tools', 'ctx.skills'],
  171. writes: ['tool/call', 'tool/result'],
  172. async mount(ctx) {
  173. await ctx.plugin(SkillService)
  174. await ctx.plugin(SkillLocal, {
  175. dshHome: resolve(root, '.tmp/tool-catalog/.dsh'),
  176. agentsHome: resolve(root, '.tmp/tool-catalog/.agents'),
  177. })
  178. await ctx.plugin(ToolSkill)
  179. },
  180. },
  181. {
  182. pkg: '@deepseek-ai/dsh-tool-subagent',
  183. dir: 'tool-subagent',
  184. source: 'packages/subagent/tool-subagent/src/index.ts',
  185. requires: ['ctx.tools', 'ctx.subagents'],
  186. writes: ['tool/call', 'tool/result', 'child session events through the chosen provider'],
  187. shippedNames: ['subagent', 'subagent_fork'],
  188. async mount(ctx) {
  189. await ctx.plugin(SubagentService)
  190. // Register a scripted provider under the name the tool delegates to.
  191. await ctx.plugin(SubagentMock, { name: 'mock' })
  192. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  193. },
  194. note:
  195. '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 `examples/coding-agent/cordis.yml` and `examples/acp-agent/cordis.yml`.',
  196. },
  197. {
  198. pkg: '@deepseek-ai/dsh-tool-tasks',
  199. dir: 'tool-tasks',
  200. source: 'packages/tasks/tool-tasks/src/index.ts',
  201. requires: ['ctx.tools', 'ctx.tasks', 'ctx.systemPrompt'],
  202. writes: ['tool/call', 'tool/result', 'context/message via agent.inject() for background completion notices'],
  203. async mount(ctx) {
  204. await ctx.plugin(TaskService)
  205. await ctx.plugin(ToolTasks)
  206. },
  207. note:
  208. 'The kind-agnostic background-task control surface: a background bash command and a background subagent are read, listed, and killed through the same three tools. Loading the plugin attaches the control surface that arms producers\' `ctx.tasks.start()`.',
  209. },
  210. {
  211. pkg: '@deepseek-ai/dsh-tool-todo',
  212. dir: 'tool-todo',
  213. source: 'packages/todo/tool-todo/src/index.ts',
  214. requires: ['ctx.tools', 'owning Agent session'],
  215. writes: ['tool/call', 'todo/write', 'tool/result'],
  216. async mount(ctx) {
  217. await ctx.plugin(ToolTodo)
  218. },
  219. note:
  220. 'todo_write is session-owned state; UIs render the latest todo/write event as a checklist or ACP plan.',
  221. },
  222. {
  223. pkg: '@deepseek-ai/dsh-tool-workflow',
  224. dir: 'tool-workflow',
  225. source: 'packages/workflow/tool-workflow/src/index.ts',
  226. requires: ['ctx.tools', 'ctx.workflows', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents the script children)'],
  227. writes: ['tool/call', 'tool/result'],
  228. async mount(ctx) {
  229. // The tool injects `workflows`; boot the vm engine over a scripted
  230. // subagent provider to satisfy it. The schema does not depend on which
  231. // provider backs the engine.
  232. await ctx.plugin(SubagentService)
  233. await ctx.plugin(SubagentMock, { name: 'mock' })
  234. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  235. await ctx.plugin(ToolWorkflow)
  236. },
  237. },
  238. {
  239. pkg: '@deepseek-ai/dsh-tool-web',
  240. dir: 'tool-web',
  241. source: 'packages/web/tool-web/src/index.ts',
  242. requires: ['ctx.tools', 'ctx.web', 'ctx.systemPrompt'],
  243. writes: ['tool/call', 'tool/result'],
  244. async mount(ctx) {
  245. // Mount search and fetch providers so both tools register. Their schemas
  246. // do not depend on provider identity or availability.
  247. await ctx.plugin(WebService)
  248. await ctx.plugin(WebSearchExa)
  249. await ctx.plugin(WebFetchLocal)
  250. await ctx.plugin(ToolWeb)
  251. },
  252. note:
  253. 'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.',
  254. },
  255. ]
  256. /** One package's contribution to the catalog: its schemas plus attribution. */
  257. interface CatalogPackage {
  258. pkg: string
  259. source: string
  260. requires: string[]
  261. writes: string[]
  262. shippedNames?: string[]
  263. schemas: ToolSchema[]
  264. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  265. note?: string
  266. }
  267. /** The whole catalog: one entry per booted tool package, in manifest order. */
  268. export type ToolCatalog = CatalogPackage[]
  269. /**
  270. * Assert the boot manifest covers every shipped tool package on disk (a
  271. * `tool-*` leaf under `packages/`).
  272. * Booting has no source declaration to enumerate, so this glob restores the
  273. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  274. * fails the generator (and the freshness gate) until it is added to
  275. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  276. *
  277. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  278. */
  279. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  280. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  281. const listed = new Set(packages.map(p => p.dir))
  282. const missing = onDisk.filter(dir => !listed.has(dir))
  283. if (missing.length > 0) {
  284. throw new Error(
  285. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  286. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  287. )
  288. }
  289. }
  290. /**
  291. * Boot each tool package on a fresh Context and harvest its model-facing
  292. * schemas. A fresh Context per package keeps attribution clean (each entry's
  293. * schemas come from exactly that package) and isolates a boot failure to its
  294. * own entry. Disposed after harvest so no executor/provider outlives the run.
  295. */
  296. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  297. assertManifestComplete(packages)
  298. const catalog: ToolCatalog = []
  299. for (const entry of packages) {
  300. const ctx = new Context()
  301. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  302. // plugins mounted still tears the context down (no leaked executor/provider
  303. // fiber) — the repo's "dispose must reach quiescence" rule.
  304. try {
  305. await ctx.plugin(SystemPrompt)
  306. await ctx.plugin(ToolRegistry, entry.toolsConfig ?? {})
  307. await entry.mount(ctx)
  308. const schemas = ctx.tools.schemas().sort((a, b) => a.name.localeCompare(b.name))
  309. catalog.push({
  310. pkg: entry.pkg,
  311. source: entry.source,
  312. requires: entry.requires,
  313. writes: entry.writes,
  314. schemas,
  315. ...entry.shippedNames !== undefined ? { shippedNames: entry.shippedNames } : {},
  316. ...entry.note !== undefined ? { note: entry.note } : {},
  317. })
  318. } finally {
  319. await ctx.fiber.dispose()
  320. }
  321. }
  322. return catalog
  323. }
  324. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  325. function renderTool(schema: ToolSchema, source: string): string[] {
  326. const out = [`### \`${schema.name}\``, '']
  327. if (schema.description) out.push(schema.description, '')
  328. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  329. out.push(`Source: [\`${source}\`](../${source})`, '')
  330. return out
  331. }
  332. function codeList(values: string[] | undefined): string {
  333. return values?.length ? values.map(value => `\`${value}\``).join(', ') : '-'
  334. }
  335. function tableCell(value: string | undefined): string {
  336. return value ? value.replace(/\|/g, '\\|').replace(/\n/g, '<br>') : '-'
  337. }
  338. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  339. export function render(catalog: ToolCatalog): string {
  340. const lines: string[] = [
  341. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  342. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  343. '',
  344. '# Tool Schema Catalog',
  345. '',
  346. '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.',
  347. '',
  348. '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 RFC](rfc/implemented/process/2026-07-02-tool-schema-catalog.md).',
  349. '',
  350. '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.',
  351. '',
  352. '## Tool Package Map',
  353. '',
  354. '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.',
  355. '',
  356. '| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |',
  357. '| --- | --- | --- | --- | --- | --- |',
  358. ...catalog.map(entry => `| \`${entry.pkg}\` | ${codeList(entry.schemas.map(schema => schema.name))} | ${codeList(entry.requires)} | ${codeList(entry.writes)} | ${codeList(entry.shippedNames)} | ${tableCell(entry.note)} |`),
  359. '',
  360. ]
  361. for (const entry of catalog) {
  362. lines.push(`## \`${entry.pkg}\``, '')
  363. for (const schema of entry.schemas) lines.push(...renderTool(schema, entry.source))
  364. if (entry.note) lines.push(entry.note, '')
  365. }
  366. return lines.join('\n')
  367. }
  368. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  369. * is stale. Guarded behind an entry-point check so importing this module for
  370. * tests neither regenerates the committed file nor calls process.exit. */
  371. async function main(): Promise<void> {
  372. const content = render(await collectToolCatalog())
  373. if (process.argv.includes('--check')) {
  374. let committed: string | null = null
  375. try {
  376. committed = readFileSync(resolve(root, OUT), 'utf8')
  377. } catch {
  378. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  379. // file is not a state this repo produces. Either way the remedy is the
  380. // same — regenerate — so treat a read failure as "stale".
  381. committed = null
  382. }
  383. if (committed === content) {
  384. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  385. process.exit(0)
  386. }
  387. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  388. process.exit(1)
  389. }
  390. writeFileSync(resolve(root, OUT), content)
  391. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  392. }
  393. // Run only when invoked as a script, not when imported by a test.
  394. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  395. await main()
  396. }