gen-tool-catalog.ts 18 KB

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