gen-tool-catalog.ts 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. /** Plug the injected seams + the tool plugin onto a context that already
  76. * carries `systemPrompt` + `tools`. */
  77. mount: (ctx: Context) => Promise<void>
  78. /**
  79. * A deployment note rendered after the package's tools, for a fact that
  80. * booting the package alone cannot show. The registered tool NAME can be a
  81. * load-time config (`tool-subagent`'s `toolName`), so one package may surface
  82. * under several names across deployments — the boot yields the package
  83. * DEFAULT, and this note records the shipped alternatives the model sees.
  84. */
  85. note?: string
  86. }
  87. /**
  88. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  89. * `packages/`). Ordered by package name (the render order); the completeness
  90. * guard proves it is exhaustive against the on-disk glob.
  91. */
  92. const TOOL_PACKAGES: ToolPackage[] = [
  93. {
  94. pkg: '@deepseek-ai/dsh-tool-bash',
  95. dir: 'tool-bash',
  96. source: 'packages/bash/tool-bash/src/index.ts',
  97. async mount(ctx) {
  98. await ctx.plugin(LocalBashExecutor)
  99. await ctx.plugin(ToolBash)
  100. },
  101. },
  102. {
  103. pkg: '@deepseek-ai/dsh-tool-fs',
  104. dir: 'tool-fs',
  105. source: 'packages/fs/tool-fs/src/index.ts',
  106. async mount(ctx) {
  107. // The tool injects `fs`; boot the local backend to satisfy it. The schemas
  108. // do not depend on the policy plugin (an event gate that changes behavior,
  109. // not tool shape), so the bare provider is enough to harvest them.
  110. await ctx.plugin(LocalFileSystem)
  111. await ctx.plugin(ToolFs)
  112. },
  113. note:
  114. '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.',
  115. },
  116. {
  117. pkg: '@deepseek-ai/dsh-tool-subagent',
  118. dir: 'tool-subagent',
  119. source: 'packages/subagent/tool-subagent/src/index.ts',
  120. async mount(ctx) {
  121. await ctx.plugin(SubagentService)
  122. // Register a scripted provider under the name the tool delegates to.
  123. await ctx.plugin(SubagentMock, { name: 'mock' })
  124. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  125. },
  126. note:
  127. '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`.',
  128. },
  129. {
  130. pkg: '@deepseek-ai/dsh-tool-todo',
  131. dir: 'tool-todo',
  132. source: 'packages/todo/tool-todo/src/index.ts',
  133. async mount(ctx) {
  134. await ctx.plugin(ToolTodo)
  135. },
  136. },
  137. {
  138. pkg: '@deepseek-ai/dsh-tool-web',
  139. dir: 'tool-web',
  140. source: 'packages/web/tool-web/src/index.ts',
  141. async mount(ctx) {
  142. // The tools inject `web`; boot the seam plus one search and one fetch
  143. // provider so both `web_search` and `web_fetch` register. The schemas do
  144. // not depend on which provider backs the seam (or on it being available),
  145. // so any registered provider is enough to harvest them.
  146. await ctx.plugin(WebService)
  147. await ctx.plugin(WebSearchExa)
  148. await ctx.plugin(WebFetchLocal)
  149. await ctx.plugin(ToolWeb)
  150. },
  151. },
  152. ]
  153. /** One package's contribution to the catalog: its schemas plus attribution. */
  154. interface CatalogPackage {
  155. pkg: string
  156. source: string
  157. schemas: ToolSchema[]
  158. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  159. note?: string
  160. }
  161. /** The whole catalog: one entry per booted tool package, in manifest order. */
  162. export type ToolCatalog = CatalogPackage[]
  163. /**
  164. * Assert the boot manifest covers every shipped tool package on disk (a
  165. * `tool-*` leaf under `packages/`).
  166. * Booting has no source declaration to enumerate, so this glob restores the
  167. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  168. * fails the generator (and the freshness gate) until it is added to
  169. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  170. *
  171. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  172. */
  173. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  174. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  175. const listed = new Set(packages.map(p => p.dir))
  176. const missing = onDisk.filter(dir => !listed.has(dir))
  177. if (missing.length > 0) {
  178. throw new Error(
  179. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  180. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  181. )
  182. }
  183. }
  184. /**
  185. * Boot each tool package on a fresh Context and harvest its model-facing
  186. * schemas. A fresh Context per package keeps attribution clean (each entry's
  187. * schemas come from exactly that package) and isolates a boot failure to its
  188. * own entry. Disposed after harvest so no executor/provider outlives the run.
  189. */
  190. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  191. assertManifestComplete(packages)
  192. const catalog: ToolCatalog = []
  193. for (const entry of packages) {
  194. const ctx = new Context()
  195. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  196. // plugins mounted still tears the context down (no leaked executor/provider
  197. // fiber) — the repo's "dispose must reach quiescence" rule.
  198. try {
  199. await ctx.plugin(SystemPrompt)
  200. await ctx.plugin(ToolRegistry)
  201. await entry.mount(ctx)
  202. const schemas = ctx.tools.schemas().sort((a, b) => a.name.localeCompare(b.name))
  203. catalog.push({ pkg: entry.pkg, source: entry.source, schemas, ...entry.note !== undefined ? { note: entry.note } : {} })
  204. } finally {
  205. await ctx.fiber.dispose()
  206. }
  207. }
  208. return catalog
  209. }
  210. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  211. function renderTool(schema: ToolSchema, source: string): string[] {
  212. const out = [`### \`${schema.name}\``, '']
  213. if (schema.description) out.push(schema.description, '')
  214. if (schema.strict !== undefined) out.push(`Strict: \`${String(schema.strict)}\``, '')
  215. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  216. out.push(`Source: [\`${source}\`](../../${source})`, '')
  217. return out
  218. }
  219. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  220. export function render(catalog: ToolCatalog): string {
  221. const lines: string[] = [
  222. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  223. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  224. '',
  225. '# Tool Schema Catalog',
  226. '',
  227. '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 & services catalog](../cordis-catalog/events-and-services.md) (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.',
  228. '',
  229. '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).',
  230. '',
  231. '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.',
  232. '',
  233. ]
  234. for (const entry of catalog) {
  235. lines.push(`## \`${entry.pkg}\``, '')
  236. for (const schema of entry.schemas) lines.push(...renderTool(schema, entry.source))
  237. if (entry.note) lines.push(entry.note, '')
  238. }
  239. return lines.join('\n')
  240. }
  241. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  242. * is stale. Guarded behind an entry-point check so importing this module for
  243. * tests neither regenerates the committed file nor calls process.exit. */
  244. async function main(): Promise<void> {
  245. const content = render(await collectToolCatalog())
  246. if (process.argv.includes('--check')) {
  247. let committed: string | null = null
  248. try {
  249. committed = readFileSync(resolve(root, OUT), 'utf8')
  250. } catch {
  251. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  252. // file is not a state this repo produces. Either way the remedy is the
  253. // same — regenerate — so treat a read failure as "stale".
  254. committed = null
  255. }
  256. if (committed === content) {
  257. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  258. process.exit(0)
  259. }
  260. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  261. process.exit(1)
  262. }
  263. writeFileSync(resolve(root, OUT), content)
  264. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  265. }
  266. // Run only when invoked as a script, not when imported by a test.
  267. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  268. await main()
  269. }