gen-tool-catalog.ts 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /**
  2. * Generate (and verify) the tool-schema catalog in docs/tool-catalog/tools.md.
  3. *
  4. * The catalog is the MODEL-FACING TOOL reference: every tool a shipped plugin
  5. * contributes to `ctx.tools`, with the exact `name` / `description` / JSON-Schema
  6. * `parameters` the model receives via the system-prompt assembly. It complements
  7. * the cordis events/services catalog (the wiring a plugin author works against)
  8. * and the core-data-structures catalog (the vocabulary those signatures move):
  9. * this page is the TOOLS the agent is offered.
  10. *
  11. * `tsx scripts/gen-tool-catalog.ts` → write the catalog
  12. * `tsx scripts/gen-tool-catalog.ts --check` → exit 1 if the committed file
  13. * is stale (CI / pre-push gate)
  14. *
  15. * Why this generator BOOTS PLUGINS instead of parsing source (unlike its AST
  16. * sibling `gen-cordis-catalog.ts`): a tool's schema is not statically knowable.
  17. * `tool-todo` writes `enum: [...STATUSES]` (a runtime spread), descriptions are
  18. * built by string concatenation, `tool-subagent`'s tool name is `config.toolName`,
  19. * and an MCP plugin can register RAW JSON Schema without `defineTool` at all. The
  20. * faithful source of truth is therefore the SHIPPED schema: mount each tool
  21. * plugin on a real cordis Context and read `ctx.tools.schemas()` — exactly the
  22. * `ToolSchema[]` the model is sent. See
  23. * docs/rfc/implemented/process/2026-07-02-tool-schema-catalog.md.
  24. *
  25. * Booting sacrifices the AST pass's structural "nothing can be silently omitted"
  26. * property (there is no source declaration to enumerate), so a COMPLETENESS GUARD
  27. * restores it: the generator globs every `tool-*` package under `packages/` and
  28. * hard-errors if any such package is absent from the boot manifest below. A new
  29. * tool package fails the generator — and thus the freshness gate — until it is
  30. * registered here, mirroring how a new event appears in the cordis regenerate.
  31. *
  32. * Schema blocks use a plain ` ```json ` fence: doc-typecheck only extracts `ts*`
  33. * fences, so no BlockKind wiring is needed there.
  34. */
  35. import { globSync, readFileSync, writeFileSync } from 'node:fs'
  36. import { basename, resolve } from 'node:path'
  37. import { Context } from 'cordis'
  38. import type { ToolSchema } from '@deepseek-ai/dsh-llm'
  39. import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  40. import ToolRegistry from '@deepseek-ai/dsh-tools'
  41. import LocalBashExecutor from '@deepseek-ai/dsh-bash-local'
  42. import LocalFileSystem from '@deepseek-ai/dsh-fs-local'
  43. import WebService from '@deepseek-ai/dsh-web'
  44. import * as WebSearchExa from '@deepseek-ai/dsh-web-search-exa'
  45. import * as WebFetchLocal from '@deepseek-ai/dsh-web-fetch-local'
  46. import SubagentService from '@deepseek-ai/dsh-subagent'
  47. import * as SubagentMock from '@deepseek-ai/dsh-subagent-mock'
  48. import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
  49. import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
  50. import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
  51. import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
  52. import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
  53. const root = resolve(import.meta.dirname, '..')
  54. const OUT = 'docs/tool-catalog/tools.md'
  55. /**
  56. * One tool-plugin package to boot. `mount` is a per-entry recipe (async): it
  57. * plugs the injected seams the plugin's `apply` reads (an executor for
  58. * `ctx.bash`, a provider for `ctx.subagents`) BEFORE the tool plugin itself.
  59. * `SystemPrompt` + `ToolRegistry` are mounted for every entry by the caller
  60. * (`ToolRegistry` injects `systemPrompt`), so `mount` only handles the extras.
  61. *
  62. * The recipe is irreducible policy — WHICH seams a given tool needs and with
  63. * WHAT config is not derivable from the package layout — so it stays a hand-
  64. * maintained closure. The `dir` field is what the completeness guard matches
  65. * against the on-disk `tool-*` package glob, so a NEW tool package cannot be
  66. * silently omitted (see the module doc).
  67. */
  68. interface ToolPackage {
  69. /** The npm package name, used as the catalog section heading. */
  70. pkg: string
  71. /** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
  72. dir: string
  73. /** Repo-relative source path linked from the catalog entry. */
  74. source: string
  75. /** Services or owning runtime surfaces the package requires at execution time. */
  76. requires: string[]
  77. /** Session events or other visible state the tools write or affect. */
  78. writes: string[]
  79. /** Additional model-visible names shipped by example/app config. */
  80. shippedNames?: string[]
  81. /** Plug the injected seams + the tool plugin onto a context that already
  82. * carries `systemPrompt` + `tools`. */
  83. mount: (ctx: Context) => Promise<void>
  84. /**
  85. * A deployment note rendered after the package's tools, for a fact that
  86. * booting the package alone cannot show. The registered tool NAME can be a
  87. * load-time config (`tool-subagent`'s `toolName`), so one package may surface
  88. * under several names across deployments — the boot yields the package
  89. * DEFAULT, and this note records the shipped alternatives the model sees.
  90. */
  91. note?: string
  92. }
  93. /**
  94. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  95. * `packages/`). Ordered by package name (the render order); the completeness
  96. * guard proves it is exhaustive against the on-disk glob.
  97. */
  98. const TOOL_PACKAGES: ToolPackage[] = [
  99. {
  100. pkg: '@deepseek-ai/dsh-tool-bash',
  101. dir: 'tool-bash',
  102. source: 'packages/bash/tool-bash/src/index.ts',
  103. requires: ['ctx.tools', 'ctx.bash'],
  104. writes: ['tool/call', 'tool/result', 'context/message via agent.inject() for background completion notices'],
  105. async mount(ctx) {
  106. await ctx.plugin(LocalBashExecutor)
  107. await ctx.plugin(ToolBash)
  108. },
  109. note:
  110. 'The bash/bash_output/bash_kill tools are model-facing consumers of the bash executor seam.',
  111. },
  112. {
  113. pkg: '@deepseek-ai/dsh-tool-fs',
  114. dir: 'tool-fs',
  115. source: 'packages/fs/tool-fs/src/index.ts',
  116. requires: ['ctx.tools', 'ctx.fs', 'ctx.systemPrompt'],
  117. writes: ['tool/call', 'fs/write-intent or fs/edit-intent for mutations', 'fs/observed after successful file operations', 'tool/result'],
  118. async mount(ctx) {
  119. // The tool injects `fs`; boot the local backend to satisfy it. The schemas
  120. // do not depend on the policy plugin (an event gate that changes behavior,
  121. // not tool shape), so the bare provider is enough to harvest them.
  122. await ctx.plugin(LocalFileSystem)
  123. await ctx.plugin(ToolFs)
  124. },
  125. note:
  126. '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.',
  127. },
  128. {
  129. pkg: '@deepseek-ai/dsh-tool-subagent',
  130. dir: 'tool-subagent',
  131. source: 'packages/subagent/tool-subagent/src/index.ts',
  132. requires: ['ctx.tools', 'ctx.subagents'],
  133. writes: ['tool/call', 'tool/result', 'child session events through the chosen provider'],
  134. shippedNames: ['subagent', 'subagent_fork'],
  135. async mount(ctx) {
  136. await ctx.plugin(SubagentService)
  137. // Register a scripted provider under the name the tool delegates to.
  138. await ctx.plugin(SubagentMock, { name: 'mock' })
  139. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  140. },
  141. note:
  142. '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`.',
  143. },
  144. {
  145. pkg: '@deepseek-ai/dsh-tool-todo',
  146. dir: 'tool-todo',
  147. source: 'packages/todo/tool-todo/src/index.ts',
  148. requires: ['ctx.tools', 'owning Agent session'],
  149. writes: ['tool/call', 'todo/write', 'tool/result'],
  150. async mount(ctx) {
  151. await ctx.plugin(ToolTodo)
  152. },
  153. note:
  154. 'todo_write is session-owned state; UIs render the latest todo/write event as a checklist or ACP plan.',
  155. },
  156. {
  157. pkg: '@deepseek-ai/dsh-tool-web',
  158. dir: 'tool-web',
  159. source: 'packages/web/tool-web/src/index.ts',
  160. requires: ['ctx.tools', 'ctx.web', 'ctx.systemPrompt'],
  161. writes: ['tool/call', 'tool/result'],
  162. async mount(ctx) {
  163. // The tools inject `web`; boot the seam plus one search and one fetch
  164. // provider so both `web_search` and `web_fetch` register. The schemas do
  165. // not depend on which provider backs the seam (or on it being available),
  166. // so any registered provider is enough to harvest them.
  167. await ctx.plugin(WebService)
  168. await ctx.plugin(WebSearchExa)
  169. await ctx.plugin(WebFetchLocal)
  170. await ctx.plugin(ToolWeb)
  171. },
  172. note:
  173. 'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.',
  174. },
  175. ]
  176. /** One package's contribution to the catalog: its schemas plus attribution. */
  177. interface CatalogPackage {
  178. pkg: string
  179. source: string
  180. requires: string[]
  181. writes: string[]
  182. shippedNames?: string[]
  183. schemas: ToolSchema[]
  184. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  185. note?: string
  186. }
  187. /** The whole catalog: one entry per booted tool package, in manifest order. */
  188. export type ToolCatalog = CatalogPackage[]
  189. /**
  190. * Assert the boot manifest covers every shipped tool package on disk (a
  191. * `tool-*` leaf under `packages/`).
  192. * Booting has no source declaration to enumerate, so this glob restores the
  193. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  194. * fails the generator (and the freshness gate) until it is added to
  195. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  196. *
  197. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  198. */
  199. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  200. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  201. const listed = new Set(packages.map(p => p.dir))
  202. const missing = onDisk.filter(dir => !listed.has(dir))
  203. if (missing.length > 0) {
  204. throw new Error(
  205. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  206. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  207. )
  208. }
  209. }
  210. /**
  211. * Boot each tool package on a fresh Context and harvest its model-facing
  212. * schemas. A fresh Context per package keeps attribution clean (each entry's
  213. * schemas come from exactly that package) and isolates a boot failure to its
  214. * own entry. Disposed after harvest so no executor/provider outlives the run.
  215. */
  216. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  217. assertManifestComplete(packages)
  218. const catalog: ToolCatalog = []
  219. for (const entry of packages) {
  220. const ctx = new Context()
  221. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  222. // plugins mounted still tears the context down (no leaked executor/provider
  223. // fiber) — the repo's "dispose must reach quiescence" rule.
  224. try {
  225. await ctx.plugin(SystemPrompt)
  226. await ctx.plugin(ToolRegistry)
  227. await entry.mount(ctx)
  228. const schemas = ctx.tools.schemas().sort((a, b) => a.name.localeCompare(b.name))
  229. catalog.push({
  230. pkg: entry.pkg,
  231. source: entry.source,
  232. requires: entry.requires,
  233. writes: entry.writes,
  234. schemas,
  235. ...entry.shippedNames !== undefined ? { shippedNames: entry.shippedNames } : {},
  236. ...entry.note !== undefined ? { note: entry.note } : {},
  237. })
  238. } finally {
  239. await ctx.fiber.dispose()
  240. }
  241. }
  242. return catalog
  243. }
  244. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  245. function renderTool(schema: ToolSchema, source: string): string[] {
  246. const out = [`### \`${schema.name}\``, '']
  247. if (schema.description) out.push(schema.description, '')
  248. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  249. out.push(`Source: [\`${source}\`](../../${source})`, '')
  250. return out
  251. }
  252. function codeList(values: string[] | undefined): string {
  253. return values?.length ? values.map(value => `\`${value}\``).join(', ') : '-'
  254. }
  255. function tableCell(value: string | undefined): string {
  256. return value ? value.replace(/\|/g, '\\|').replace(/\n/g, '<br>') : '-'
  257. }
  258. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  259. export function render(catalog: ToolCatalog): string {
  260. const lines: string[] = [
  261. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  262. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  263. '',
  264. '# Tool Schema Catalog',
  265. '',
  266. '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.',
  267. '',
  268. '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).',
  269. '',
  270. '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.',
  271. '',
  272. '## Tool Package Map',
  273. '',
  274. '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.',
  275. '',
  276. '| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |',
  277. '| --- | --- | --- | --- | --- | --- |',
  278. ...catalog.map(entry => `| \`${entry.pkg}\` | ${codeList(entry.schemas.map(schema => schema.name))} | ${codeList(entry.requires)} | ${codeList(entry.writes)} | ${codeList(entry.shippedNames)} | ${tableCell(entry.note)} |`),
  279. '',
  280. ]
  281. for (const entry of catalog) {
  282. lines.push(`## \`${entry.pkg}\``, '')
  283. for (const schema of entry.schemas) lines.push(...renderTool(schema, entry.source))
  284. if (entry.note) lines.push(entry.note, '')
  285. }
  286. return lines.join('\n')
  287. }
  288. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  289. * is stale. Guarded behind an entry-point check so importing this module for
  290. * tests neither regenerates the committed file nor calls process.exit. */
  291. async function main(): Promise<void> {
  292. const content = render(await collectToolCatalog())
  293. if (process.argv.includes('--check')) {
  294. let committed: string | null = null
  295. try {
  296. committed = readFileSync(resolve(root, OUT), 'utf8')
  297. } catch {
  298. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  299. // file is not a state this repo produces. Either way the remedy is the
  300. // same — regenerate — so treat a read failure as "stale".
  301. committed = null
  302. }
  303. if (committed === content) {
  304. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  305. process.exit(0)
  306. }
  307. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  308. process.exit(1)
  309. }
  310. writeFileSync(resolve(root, OUT), content)
  311. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  312. }
  313. // Run only when invoked as a script, not when imported by a test.
  314. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  315. await main()
  316. }