gen-tool-catalog.ts 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  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 '@deepseek-ai/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 SessionProjectionRegistry from '@deepseek-ai/dsh-session-projection'
  17. import SqliteSessionQueryEngine from '@deepseek-ai/dsh-session-query-sqlite'
  18. import GoalService from '@deepseek-ai/dsh-goal'
  19. import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  20. import ToolRuntime, { type Config as ToolsConfig } from '@deepseek-ai/dsh-tools'
  21. import LocalBashExecutor from '@deepseek-ai/dsh-bash-local'
  22. import * as BashEnvPlugin from '@deepseek-ai/dsh-shell-env'
  23. import { PwshLocalExecutor } from '@deepseek-ai/dsh-pwsh-local'
  24. import LocalSubprocessRuntime from '@deepseek-ai/dsh-subprocess-local'
  25. import LocalFileSystem from '@deepseek-ai/dsh-fs-local'
  26. import { AttachmentStore } from '@deepseek-ai/dsh-attachment'
  27. import type { ImageAttachmentLimits, ImageAttachmentRef, SaveImageAttachment, StoredImageAttachment } from '@deepseek-ai/dsh-attachment'
  28. import UserQuestionService from '@deepseek-ai/dsh-user-questions'
  29. import PlanModeController from '@deepseek-ai/dsh-plan-mode'
  30. import WebRuntime from '@deepseek-ai/dsh-web'
  31. import * as WebSearchExa from '@deepseek-ai/dsh-web-search-exa'
  32. import * as WebFetchLocal from '@deepseek-ai/dsh-web-fetch-http'
  33. import SubagentRuntime from '@deepseek-ai/dsh-subagent'
  34. import type { SubagentProvider, SubagentReportDelivery } from '@deepseek-ai/dsh-subagent'
  35. import * as ToolSubagentControl from '@deepseek-ai/dsh-tool-subagent-control'
  36. import * as ToolSubagentListAgents from '@deepseek-ai/dsh-tool-subagent-control/list-agents'
  37. import * as ToolSubagentReport from '@deepseek-ai/dsh-tool-subagent-report'
  38. import SkillRegistry from '@deepseek-ai/dsh-skill'
  39. import * as SkillFileSystem from '@deepseek-ai/dsh-skill-filesystem'
  40. import LocalJobRegistry from '@deepseek-ai/dsh-jobs-local'
  41. import * as ToolAskUser from '@deepseek-ai/dsh-tool-ask-user'
  42. import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
  43. import * as ToolPwsh from '@deepseek-ai/dsh-tool-pwsh'
  44. import * as ToolBashPersistent from '@deepseek-ai/dsh-tool-bash-persistent'
  45. import * as ToolPwshPersistent from '@deepseek-ai/dsh-tool-pwsh-persistent'
  46. import CordisHostRunner from '@deepseek-ai/dsh-cordis-host-runner'
  47. import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
  48. import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
  49. import * as ToolFsSearch from '@deepseek-ai/dsh-tool-fs-search'
  50. import * as ToolStrReplaceEditor from '@deepseek-ai/dsh-tool-str-replace-editor'
  51. import TerminalSessionService from '@deepseek-ai/dsh-terminal'
  52. import * as ToolPty from '@deepseek-ai/dsh-tool-terminal'
  53. import * as ToolGoal from '@deepseek-ai/dsh-tool-goal'
  54. import * as ToolSchedule from '@deepseek-ai/dsh-schedule'
  55. import Lsp from '@deepseek-ai/dsh-lsp'
  56. import * as ToolLsp from '@deepseek-ai/dsh-tool-lsp'
  57. import * as ToolSkill from '@deepseek-ai/dsh-tool-skill'
  58. import * as ToolSessionQuery from '@deepseek-ai/dsh-tool-session-query'
  59. import * as ToolTasks from '@deepseek-ai/dsh-tool-jobs'
  60. import type TeamService from '@deepseek-ai/dsh-experimental-agent-team'
  61. import * as ToolTeam from '@deepseek-ai/dsh-experimental-tool-agent-team'
  62. import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
  63. import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
  64. import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
  65. import VmWorkflowEngine from '@deepseek-ai/dsh-workflow-worker-thread'
  66. import * as ToolRalph from '@deepseek-ai/dsh-tool-ralph'
  67. import * as ToolWorkflow from '@deepseek-ai/dsh-tool-workflow'
  68. import { githubSlug } from './verify-md-links.ts'
  69. /** Attachment seam marker that makes the attachments-conditional `read_image` schema harvestable. */
  70. class CatalogAttachmentStore extends AttachmentStore {
  71. readonly imageLimits: ImageAttachmentLimits = Object.freeze({
  72. maxImageBytes: 1,
  73. maxImagesPerMessage: 1,
  74. maxMessageImageBytes: 1,
  75. maxImagePixels: 1,
  76. maxImageDimension: 1,
  77. mediaTypes: Object.freeze(['image/png'] as const),
  78. })
  79. override validateImage(_input: SaveImageAttachment): Promise<void> {
  80. return Promise.reject(new Error('gen-tool-catalog: attachment validation is unreachable during schema harvest'))
  81. }
  82. override saveImage(_input: SaveImageAttachment): Promise<ImageAttachmentRef> {
  83. return Promise.reject(new Error('gen-tool-catalog: attachment writes are unreachable during schema harvest'))
  84. }
  85. override readImage(_ref: ImageAttachmentRef): Promise<StoredImageAttachment> {
  86. return Promise.reject(new Error('gen-tool-catalog: attachment reads are unreachable during schema harvest'))
  87. }
  88. }
  89. const root = resolve(import.meta.dirname, '..')
  90. const OUT = 'docs/tool-catalog.md'
  91. /**
  92. * Register the descriptor needed to mount schema-producing consumers. Declares
  93. * the full capability set of the shipped in-process providers so consumers
  94. * mount under their shipped defaults (tool-subagent's default numeric maxDepth
  95. * requires `depthLimit`).
  96. */
  97. function registerCatalogSubagentProvider(ctx: Context, name: string): void {
  98. const provider: SubagentProvider = {
  99. name,
  100. capabilities: { outputSchema: true, depthLimit: true, toolFilter: true, persona: true },
  101. inheritsParentContext: false,
  102. start: () => Promise.reject(new Error('tool-catalog provider cannot start a child')),
  103. // Declared so consumers configured for continuable background mode mount.
  104. prepareContinuable: () => Promise.reject(new Error('tool-catalog provider cannot prepare a child')),
  105. }
  106. ctx.subagents.registerProvider(provider)
  107. }
  108. /** Minted child-scope keys for packages whose tools are never global. */
  109. const catalogChildScopes = new WeakMap<Context, Agent>()
  110. /**
  111. * Install one scope-local tool package into an agent-like child scope for
  112. * schema harvest, without starting a model, Agent loop, or persistence backend.
  113. * @param ctx - catalog context owning the scope.
  114. * @param mountScoped - package installer for the scoped context.
  115. * @param key - agent-like scope key exposed to the package's scope selector.
  116. * @param inject - services the package installer must await before mounting.
  117. */
  118. async function mountCatalogChildScope(
  119. ctx: Context,
  120. mountScoped: (childCtx: Context) => void,
  121. key: Agent = { id: SessionId('tool-catalog-child') } as Agent,
  122. inject: string[] = ['tools', 'systemPrompt', 'subagents'],
  123. ): Promise<void> {
  124. await ctx.plugin(Object.assign((inner: Context) => {
  125. mountScoped(createScope(inner, key).ctx)
  126. }, { inject }))
  127. catalogChildScopes.set(ctx, key)
  128. }
  129. /**
  130. * Tool package plus its hand-maintained boot recipe. The caller mounts the
  131. * prompt and registry; each recipe supplies only package-specific seams and
  132. * config, while `dir` participates in the completeness check.
  133. */
  134. export interface ToolPackage {
  135. /** The npm package name, used as the catalog section heading. */
  136. pkg: string
  137. /** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
  138. dir: string
  139. /**
  140. * Repo-relative implementation source linked per harvested tool. Packages
  141. * whose tools share one plugin may use a string; split plugins map each tool
  142. * name to its own source.
  143. */
  144. source: string | Readonly<Record<string, string>>
  145. /** Services or owning runtimes the package requires at execution time. */
  146. requires: string[]
  147. /** Session events or other visible state the tools write or affect. */
  148. writes: string[]
  149. /** Additional model-visible names shipped by example/app config. */
  150. shippedNames?: string[]
  151. /** Plug the injected seams + the tool plugin onto a context that already
  152. * carries `systemPrompt` + `tools`. */
  153. mount: (ctx: Context) => Promise<void>
  154. /** Agent-like scope key whose tool view is catalogued instead of the global view. */
  155. scope?: (ctx: Context) => Agent
  156. /**
  157. * Config for the caller's `ToolRuntime` mount. The registry itself ships a
  158. * model-facing tool (`run_code`, registered under a non-native `mode`), so
  159. * ITS catalog entry boots the registry in the mode that exposes it;
  160. * every other entry uses the default (native) registry.
  161. */
  162. toolsConfig?: ToolsConfig
  163. /**
  164. * A deployment note rendered after the package's tools, for a fact that
  165. * booting the package alone cannot show. The registered tool NAME can be a
  166. * load-time config (`tool-subagent`'s `toolName`), so one package may appear
  167. * under several names across deployments — the boot yields the package
  168. * DEFAULT, and this note records the shipped alternatives the model sees.
  169. */
  170. note?: string
  171. }
  172. /**
  173. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  174. * `packages/`). Ordered by package name (the render order); the completeness
  175. * guard proves it is exhaustive against the on-disk glob.
  176. */
  177. const TOOL_PACKAGES: ToolPackage[] = [
  178. {
  179. pkg: '@deepseek-ai/dsh-tool-ask-user',
  180. dir: 'tool-ask-user',
  181. source: 'packages/interaction/tool-ask-user/src/index.ts',
  182. requires: ['ctx.tools', 'ctx.userQuestions'],
  183. writes: ['tool/call', 'tool/result after a UI/provider answers the question'],
  184. async mount(ctx) {
  185. await ctx.plugin(UserQuestionService)
  186. await ctx.plugin(ToolAskUser)
  187. },
  188. note:
  189. 'ask_user_question pauses the tool call until the active UI provider returns a human answer.',
  190. },
  191. {
  192. pkg: '@deepseek-ai/dsh-tools',
  193. dir: 'tools',
  194. source: 'packages/core/tools/src/code-mode.ts',
  195. requires: ['ctx.tools', 'ctx.codeRuntime (execution time)', 'ctx.systemPrompt'],
  196. writes: ['tool/call', 'one tool/code-dispatch-start + tool/code-dispatch pair per bridged sub-call', 'tool/result'],
  197. // The registry's OWN tool: run_code exists only under a non-native mode
  198. // (the registry registers it in its constructor; the code runtime is read
  199. // at assembly/execution time, so the schema harvest needs none mounted).
  200. toolsConfig: { mode: 'code' },
  201. async mount() {},
  202. note:
  203. '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 SDK section in the loaded runtime\'s language, 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.',
  204. },
  205. {
  206. pkg: '@deepseek-ai/dsh-plan-mode',
  207. dir: 'plan-mode',
  208. source: 'packages/plan/plan-mode/src/index.ts',
  209. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.userQuestions (execution time, opportunistic)'],
  210. writes: ['tool/call', 'plan/mode inactive on an approved review', 'tool/result'],
  211. async mount(ctx) {
  212. await ctx.plugin(PlanModeController, { section: 'Tool catalog schema harvest.' })
  213. },
  214. note:
  215. '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-questions seam (approve / keep planning with feedback), and approval logs plan mode inactive at the step boundary.',
  216. },
  217. {
  218. pkg: '@deepseek-ai/dsh-tool-bash',
  219. dir: 'tool-bash',
  220. source: 'packages/shell/tool-bash/src/index.ts',
  221. requires: ['ctx.tools', 'ctx.shell', 'ctx.systemPrompt', 'ctx.shellEnv', 'ctx.jobs at call time for run_in_background'],
  222. writes: ['tool/call', 'tool/result'],
  223. async mount(ctx) {
  224. await ctx.plugin(LocalSubprocessRuntime)
  225. await ctx.plugin(BashEnvPlugin)
  226. await ctx.plugin(LocalBashExecutor)
  227. await ctx.plugin(ToolBash)
  228. },
  229. note:
  230. 'The bash tool is the model-facing consumer of the bash executor seam. A `run_in_background` run registers with the generic `ctx.jobs` runtime and is collected/stopped through the `job_*` tools from `@deepseek-ai/dsh-tool-jobs`; the `enableRunInBackground` config (default true) removes the parameter entirely when disabled.',
  231. },
  232. {
  233. pkg: '@deepseek-ai/dsh-tool-pwsh',
  234. dir: 'tool-pwsh',
  235. source: 'packages/shell/tool-pwsh/src/index.ts',
  236. requires: ['ctx.tools', 'ctx.shell', 'ctx.systemPrompt', 'ctx.shellEnv', 'ctx.jobs at call time for run_in_background'],
  237. writes: ['tool/call', 'tool/result'],
  238. async mount(ctx) {
  239. // The pwsh tool consumes the bash executor seam; the schema harvest
  240. // mounts the pwsh-local implementation so the inject resolves without
  241. // executing anything (registration never spawns a process).
  242. await ctx.plugin(LocalSubprocessRuntime)
  243. await ctx.plugin(BashEnvPlugin)
  244. await ctx.plugin(PwshLocalExecutor)
  245. await ctx.plugin(ToolPwsh)
  246. },
  247. note:
  248. '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.shell`); it mirrors the bash tool call-for-call minus sandbox controls — `run_in_background` runs register with the generic `ctx.jobs` runtime and are collected/stopped through the `job_*` tools, and the managed `DSH_*` environment comes from `@deepseek-ai/dsh-shell-env`. Each call runs in a fresh process (no persistent PTY session), with native `C:\\...` paths and `$env:NAME` variables.',
  249. },
  250. {
  251. pkg: '@deepseek-ai/dsh-tool-cordis',
  252. dir: 'tool-cordis',
  253. source: 'packages/extensions/tool-cordis/src/index.ts',
  254. requires: ['ctx.tools', 'ctx.dynamicCordisRunner'],
  255. writes: ['tool/call', 'tool/result', 'process-local dynamic package lifecycle'],
  256. async mount(ctx) {
  257. await ctx.plugin(CordisHostRunner)
  258. await ctx.plugin(ToolCordis)
  259. },
  260. note:
  261. 'Not in any shipped tree (a deliberate opt-in — dynamic package code reaches the real runtime, see .agents/notes/implemented/feature/2026-07-08-self-referential-cordis-toolset.md). The toolset injects `ctx.dynamicCordisRunner` from `@deepseek-ai/dsh-cordis-host-runner`, which owns the definition registry and the vm sandbox; a composition missing it never activates the tools. A running package may register ADDITIONAL model-visible tools until it is stopped, undefined, or DSH restarts; a full changed request header logs those tool-set changes.',
  262. },
  263. {
  264. pkg: '@deepseek-ai/dsh-tool-bash-persistent',
  265. dir: 'tool-bash-persistent',
  266. source: 'packages/shell/tool-bash-persistent/src/index.ts',
  267. requires: ['ctx.tools', 'ctx.terminals', 'an owning Agent at execution time'],
  268. writes: ['tool/call', 'PTY shell state', 'tool/result'],
  269. async mount(ctx) {
  270. await ctx.plugin(TerminalSessionService)
  271. await ctx.plugin(ToolBashPersistent)
  272. },
  273. note:
  274. 'One owner-isolated persistent bash tool; deployment composition supplies the PTY backend and may override the model-facing environment description.',
  275. },
  276. {
  277. pkg: '@deepseek-ai/dsh-tool-pwsh-persistent',
  278. dir: 'tool-pwsh-persistent',
  279. source: 'packages/shell/tool-pwsh-persistent/src/index.ts',
  280. requires: ['ctx.tools', 'ctx.terminals', 'an owning Agent at execution time'],
  281. writes: ['tool/call', 'PTY shell state', 'tool/result'],
  282. async mount(ctx) {
  283. await ctx.plugin(TerminalSessionService)
  284. await ctx.plugin(ToolPwshPersistent)
  285. },
  286. note:
  287. 'One owner-isolated persistent pwsh tool, the Windows counterpart of the persistent bash tool; deployment composition supplies a pwsh-dialect PTY backend and may override the model-facing environment description.',
  288. },
  289. {
  290. pkg: '@deepseek-ai/dsh-tool-str-replace-editor',
  291. dir: 'tool-str-replace-editor',
  292. source: 'packages/fs/tool-str-replace-editor/src/index.ts',
  293. requires: ['ctx.tools', 'ctx.fs'],
  294. writes: ['tool/call', 'fs/observed after view presence/absence, edit absence, or successful mutation', 'tool/result'],
  295. async mount(ctx) {
  296. await ctx.plugin(LocalFileSystem)
  297. await ctx.plugin(ToolStrReplaceEditor)
  298. },
  299. note:
  300. 'Standalone view/create/unique literal replace/line insert tool over the filesystem seam; it composes with any shell or terminal API.',
  301. },
  302. {
  303. pkg: '@deepseek-ai/dsh-tool-fs',
  304. dir: 'tool-fs',
  305. source: 'packages/fs/tool-fs/src/index.ts',
  306. requires: ['ctx.tools', 'ctx.fs', 'ctx.systemPrompt', 'ctx.attachments (image-tool registration)', 'ctx.llm + an image-capable route (image-tool execution)'],
  307. writes: ['tool/call', 'fs/write-intent or fs/edit-intent for mutations', 'fs/observed after read presence/absence or successful file operation', 'durable attachment (read_image)', 'tool/result'],
  308. async mount(ctx) {
  309. // The tool needs `fs`; the bare provider is sufficient because policy
  310. // changes behavior, not schema shape. The catalog seam marker opts into
  311. // the attachments-conditional image schema without attachment I/O.
  312. await ctx.plugin(LocalFileSystem)
  313. await ctx.plugin(CatalogAttachmentStore)
  314. await ctx.plugin(ToolFs)
  315. },
  316. note:
  317. 'The read-before-write/edit policy is added by `@deepseek-ai/dsh-fs-observation-policy` (an `fs/*` event-gate plugin, no schema change); a deployment that loads these tools is expected to also load it. The image tool is not registered without `ctx.attachments`; its schema is route-independent, and execution refuses unless the exact routed model declares image input.',
  318. },
  319. {
  320. pkg: '@deepseek-ai/dsh-tool-fs-search',
  321. dir: 'tool-fs-search',
  322. source: 'packages/fs/tool-fs-search/src/index.ts',
  323. requires: ['ctx.tools', 'ctx.subprocess', 'ctx.systemPrompt'],
  324. writes: ['tool/call', 'tool/result'],
  325. async mount(ctx) {
  326. // The tools inject `subprocess` (search spawns the packaged ripgrep
  327. // binary through the seam, not ctx.fs); registration itself never
  328. // spawns, so the real local service is inert here. `ctx.spillStore` is
  329. // optional (read via ctx.get) and does not affect the schemas, so no
  330. // spill backend is mounted.
  331. await ctx.plugin(LocalSubprocessRuntime)
  332. await ctx.plugin(ToolFsSearch, { sampleOverCapGlobResults: true })
  333. },
  334. note:
  335. 'glob and grep are unconditional discovery tools that spawn the packaged ripgrep binary (`@vscode/ripgrep`) through ctx.subprocess as ordinary foreground calls (never background jobs) — 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.',
  336. },
  337. {
  338. pkg: '@deepseek-ai/dsh-tool-terminal',
  339. dir: 'tool-terminal',
  340. source: 'packages/terminal/tool-terminal/src/index.ts',
  341. requires: ['ctx.tools', 'ctx.terminals', 'ctx.systemPrompt', 'ctx.jobs at call time for run_in_background'],
  342. writes: ['tool/call', 'tool/result'],
  343. async mount(ctx) {
  344. await ctx.plugin(TerminalSessionService)
  345. await ctx.plugin(ToolPty)
  346. },
  347. note:
  348. 'The six terminal tools are opt-in and complement one-shot shell/filesystem tools. `terminal_send(run_in_background: true)` registers with `ctx.jobs`; TUI, named key sequences, BEL, resize, auto-start, and cross-agent sharing are absent from the schema.',
  349. },
  350. {
  351. pkg: '@deepseek-ai/dsh-tool-goal',
  352. dir: 'tool-goal',
  353. source: 'packages/goal/tool-goal/src/index.ts',
  354. requires: ['ctx.tools', 'ctx.agents', 'ctx.goals', 'ctx.systemPrompt', 'a calling Agent in an authorized open turn'],
  355. writes: ['tool/call', 'goal/change for mutations', 'tool/result'],
  356. async mount(ctx) {
  357. await ctx.plugin(AgentRegistry)
  358. await ctx.plugin(GoalService)
  359. await ctx.plugin(ToolGoal)
  360. },
  361. note:
  362. '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.',
  363. },
  364. {
  365. pkg: '@deepseek-ai/dsh-schedule',
  366. dir: 'schedule',
  367. source: 'packages/schedule/schedule/src/tools.ts',
  368. requires: ['ctx.tools', 'ctx.sessions', 'Session persistence', 'a future live root Agent'],
  369. writes: ['tool/call', 'schedule/change create or delete', 'tool/result'],
  370. async mount(ctx) {
  371. await ctx.plugin(SessionStore)
  372. const session = ctx.sessions.create(SessionId('tool-catalog-schedule'))
  373. const agent = { id: session.id, session } as Agent
  374. await mountCatalogChildScope(ctx, (childCtx) => {
  375. ToolSchedule.registerScheduleTools(ctx, childCtx, agent, () => {})
  376. }, agent, ['tools', 'systemPrompt'])
  377. },
  378. scope: ctx => catalogChildScopes.get(ctx) as Agent,
  379. note:
  380. 'Registered only inside live root Agent scopes created after the opt-in Schedule plugin loads. '
  381. + 'Version 1 accepts after_seconds, explicit absolute at, and bounded fixed-rate every_seconds, '
  382. + 'and discloses session-local delivery; '
  383. + 'management reads and mutations require the shared Session persistence barrier.',
  384. },
  385. {
  386. pkg: '@deepseek-ai/dsh-tool-lsp',
  387. dir: 'tool-lsp',
  388. source: 'packages/lsp/tool-lsp/src/index.ts',
  389. requires: ['ctx.tools', 'ctx.lsp', 'ctx.systemPrompt'],
  390. writes: ['tool/call', 'tool/result'],
  391. async mount(ctx) {
  392. // The tool registers from the seam alone; the schema does not depend on any provider.
  393. await ctx.plugin(Lsp)
  394. await ctx.plugin(ToolLsp)
  395. },
  396. note:
  397. '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-stdio`) at runtime; without one, a query returns the structured `LSP_UNAVAILABLE` error rather than changing the schema.',
  398. },
  399. {
  400. pkg: '@deepseek-ai/dsh-tool-ralph',
  401. dir: 'tool-ralph',
  402. source: 'packages/workflow/tool-ralph/src/index.ts',
  403. requires: ['ctx.tools', 'ctx.workflowEngine', 'ctx.subagents', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents every fresh round)'],
  404. writes: ['tool/call', 'tool/result', 'workflow and child session events during execution'],
  405. async mount(ctx) {
  406. await ctx.plugin(SubagentRuntime)
  407. registerCatalogSubagentProvider(ctx, 'mock')
  408. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  409. await ctx.plugin(ToolRalph, { subagentProvider: 'mock' })
  410. },
  411. note:
  412. 'A fixed foreground workflow starts one fresh structured child per round; the model selects only the immutable objective and an optional round cap.',
  413. },
  414. {
  415. pkg: '@deepseek-ai/dsh-tool-skill',
  416. dir: 'tool-skill',
  417. source: 'packages/skill/tool-skill/src/index.ts',
  418. requires: ['ctx.tools', 'ctx.agents', 'ctx.skills'],
  419. writes: ['tool/call', 'tool/result', 'user/message replacement catalogs via agent.inject()'],
  420. async mount(ctx) {
  421. await ctx.plugin(AgentRegistry)
  422. await ctx.plugin(SkillRegistry)
  423. await ctx.plugin(SkillFileSystem, {
  424. dshHome: resolve(root, '.tmp/tool-catalog/.dsh'),
  425. agentsHome: resolve(root, '.tmp/tool-catalog/.agents'),
  426. })
  427. await ctx.plugin(ToolSkill)
  428. },
  429. },
  430. {
  431. pkg: '@deepseek-ai/dsh-tool-session-query',
  432. dir: 'tool-session-query',
  433. source: 'packages/session-query/tool-session-query/src/index.ts',
  434. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.sessionQuery', 'a calling Agent for workspace authority'],
  435. writes: ['tool/call', 'tool/result'],
  436. async mount(ctx) {
  437. await ctx.plugin(SessionStore)
  438. await ctx.plugin(SqliteSessionQueryEngine, { path: ':memory:' })
  439. await ctx.plugin(ToolSessionQuery)
  440. },
  441. note:
  442. '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.',
  443. },
  444. {
  445. pkg: '@deepseek-ai/dsh-tool-subagent',
  446. dir: 'tool-subagent',
  447. source: 'packages/subagent/tool-subagent/src/index.ts',
  448. requires: ['ctx.tools', 'ctx.subagents', 'ctx.systemPrompt'],
  449. writes: ['tool/call', 'tool/result', 'child session events through the chosen provider'],
  450. shippedNames: ['subagent', 'subagent_fork'],
  451. async mount(ctx) {
  452. await ctx.plugin(SubagentRuntime)
  453. registerCatalogSubagentProvider(ctx, 'mock')
  454. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  455. },
  456. note:
  457. 'The registered tool name is the load-time `toolName` config (default `subagent`); the schema above is that default. The shipped compositions load this package once per subagent backend, so the model additionally sees `subagent_fork` bound to the fork backend. Each instance\'s description, `run_in_background` parameter, and system-prompt policy follow its own `backgroundMode` and `enableRunInBackground`, so the two shipped schemas are not identical: `subagent` is `continuable` and defaults omitted calls to background with automatic settlement delivery, while `subagent_fork` stays `one-shot` and defaults them to foreground — see `packages/bundle/base/cordis.patch.yml` and `examples/acp-agent/cordis.yml`.',
  458. },
  459. {
  460. pkg: '@deepseek-ai/dsh-tool-subagent-control',
  461. dir: 'tool-subagent-control',
  462. source: {
  463. interrupt_agent: 'packages/subagent/tool-subagent-control/src/index.ts',
  464. list_agents: 'packages/subagent/tool-subagent-control/src/list-agents.ts',
  465. send_message: 'packages/subagent/tool-subagent-control/src/index.ts',
  466. },
  467. requires: ['ctx.tools', 'ctx.subagents', 'ctx.agents and ctx.sessionProjections (list_agents only)'],
  468. writes: ['tool/call', 'tool/result', 'child session events through ctx.subagents'],
  469. async mount(ctx) {
  470. await ctx.plugin(SubagentRuntime)
  471. await ctx.plugin(LocalJobRegistry)
  472. await ctx.plugin(AgentRegistry)
  473. await ctx.plugin(SessionStore)
  474. await ctx.plugin(SessionProjectionRegistry)
  475. await ctx.plugin(ToolSubagentControl)
  476. await ctx.plugin(ToolSubagentListAgents)
  477. },
  478. note:
  479. 'The globally named control tools over continuable background subagents: provider-bound `tool-subagent` instances register distinct delegation tools, while this package registers `send_message` and `interrupt_agent` once, plus `list_agents` from its separately loaded `/list-agents` plugin (whose catalog rows use the sessionProjections and live Agent registries).',
  480. },
  481. {
  482. pkg: '@deepseek-ai/dsh-tool-subagent-report',
  483. dir: 'tool-subagent-report',
  484. source: 'packages/subagent/tool-subagent-report/src/index.ts',
  485. requires: ['ctx.subagents', 'ctx.systemPrompt', 'a live continuable in-process child Agent'],
  486. writes: ['tool/call', 'tool/result', 'a user-role message in the direct parent session'],
  487. async mount(ctx) {
  488. await ctx.plugin(AgentRegistry)
  489. await ctx.plugin(SubagentRuntime)
  490. const { reportDelivery } = ToolSubagentReport.Config({}) as { reportDelivery: SubagentReportDelivery }
  491. await mountCatalogChildScope(ctx, (childCtx) => {
  492. ToolSubagentReport.installReportTool(childCtx, ctx, reportDelivery)
  493. })
  494. },
  495. scope: ctx => catalogChildScopes.get(ctx) as Agent,
  496. note:
  497. 'Registered per continuable in-process child rather than globally, so this schema is visible only '
  498. + 'inside such a child and survives its global `toolFilter`. The same contribution installs the '
  499. + 'child-scoped `tool:report` prompt section, which this catalog does not render. The parent-facing '
  500. + '`send_message` tool is installed independently.',
  501. },
  502. {
  503. pkg: '@deepseek-ai/dsh-tool-jobs',
  504. dir: 'tool-jobs',
  505. source: 'packages/jobs/tool-jobs/src/index.ts',
  506. requires: ['ctx.tools', 'ctx.jobs', 'ctx.systemPrompt'],
  507. writes: ['tool/call', 'tool/result', 'user/message via agent.inject() for background completion notices'],
  508. async mount(ctx) {
  509. await ctx.plugin(LocalJobRegistry)
  510. await ctx.plugin(ToolTasks)
  511. },
  512. note:
  513. 'The kind-agnostic background-job controller: background bash commands, PTY sends, and subagents are read, listed, and killed through the same three tools. Loading the plugin attaches the controller that arms producers\' `ctx.jobs.start()`.',
  514. },
  515. {
  516. pkg: '@deepseek-ai/dsh-experimental-tool-agent-team',
  517. dir: 'tool-agent-team',
  518. source: 'packages/experimental/tool-agent-team/src/index.ts',
  519. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.agentTeams', 'an exact live Team member Agent'],
  520. writes: ['tool/call', 'team/member', 'team/message/queued', 'team/message/delivered', 'team/task', 'tool/result'],
  521. async mount(ctx) {
  522. await ctx.plugin(AgentRegistry)
  523. await ctx.plugin(SessionStore)
  524. const session = ctx.sessions.create(SessionId('tool-catalog-team-lead'))
  525. let agent!: Agent
  526. const membership = {
  527. get root() { return agent },
  528. id: session.id,
  529. role: 'lead' as const,
  530. name: 'lead',
  531. }
  532. ctx.provide('agentTeams', {
  533. tryMembership: (candidate: Agent) => candidate === agent ? membership : undefined,
  534. membership: () => membership,
  535. } as unknown as TeamService)
  536. await ctx.plugin(Object.assign((inner: Context) => {
  537. agent = {
  538. id: session.id,
  539. session,
  540. options: {},
  541. status: 'idle',
  542. } as unknown as Agent
  543. Object.assign(agent, { ctx: createScope(inner, agent).ctx })
  544. inner.agents.register(agent)
  545. }, { inject: ['tools', 'systemPrompt', 'agents', 'agentTeams'] }))
  546. await ctx.plugin(ToolTeam)
  547. catalogChildScopes.set(ctx, agent)
  548. },
  549. scope: ctx => catalogChildScopes.get(ctx) as Agent,
  550. note:
  551. 'All ten tools are scoped to implicit Team Leads and durable teammates. The shipped dsh-base bundle keeps the package disabled; the documented Agent Teams profile patch enables it while disabling the legacy continuable-child control names.',
  552. },
  553. {
  554. pkg: '@deepseek-ai/dsh-tool-todo',
  555. dir: 'tool-todo',
  556. source: 'packages/todo/tool-todo/src/index.ts',
  557. requires: ['ctx.tools', 'owning Agent session'],
  558. writes: ['tool/call', 'todo/write', 'tool/result'],
  559. async mount(ctx) {
  560. await ctx.plugin(ToolTodo, { allowParallelInProgress: true })
  561. },
  562. note:
  563. 'todo_write is session-owned state; UIs render the latest todo/write event as a checklist. `allowParallelInProgress` is required with no default, so the catalog states its choice: `true`, whose description invites several `in_progress` items. A deployment choosing `false` receives the same tool with a description asking for exactly one active task.',
  564. },
  565. {
  566. pkg: '@deepseek-ai/dsh-tool-workflow',
  567. dir: 'tool-workflow',
  568. source: 'packages/workflow/tool-workflow/src/index.ts',
  569. requires: ['ctx.tools', 'ctx.workflowEngine', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents the script children)'],
  570. writes: ['tool/call', 'tool/result'],
  571. async mount(ctx) {
  572. // The tool injects `workflows`; boot the vm engine over a scripted
  573. // subagent provider to satisfy it. The schema does not depend on which
  574. // provider backs the engine.
  575. await ctx.plugin(SubagentRuntime)
  576. registerCatalogSubagentProvider(ctx, 'mock')
  577. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  578. await ctx.plugin(ToolWorkflow)
  579. },
  580. },
  581. {
  582. pkg: '@deepseek-ai/dsh-tool-web',
  583. dir: 'tool-web',
  584. source: 'packages/web/tool-web/src/index.ts',
  585. requires: ['ctx.tools', 'ctx.web', 'ctx.systemPrompt'],
  586. writes: ['tool/call', 'tool/result'],
  587. async mount(ctx) {
  588. // Mount search and fetch providers so both tools register. Their schemas
  589. // do not depend on provider identity or availability.
  590. await ctx.plugin(WebRuntime)
  591. await ctx.plugin(WebSearchExa)
  592. await ctx.plugin(WebFetchLocal)
  593. await ctx.plugin(ToolWeb)
  594. },
  595. note:
  596. 'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.',
  597. },
  598. ]
  599. /** One package's contribution to the catalog: its schemas plus attribution. */
  600. interface CatalogPackage {
  601. pkg: string
  602. sources: Readonly<Record<string, string>>
  603. requires: string[]
  604. writes: string[]
  605. shippedNames?: string[]
  606. schemas: ToolSchema[]
  607. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  608. note?: string
  609. }
  610. /** The whole catalog: one entry per booted tool package, in manifest order. */
  611. export type ToolCatalog = CatalogPackage[]
  612. /**
  613. * Assert the boot manifest covers every shipped tool package on disk (a
  614. * `tool-*` leaf under `packages/`).
  615. * Booting has no source declaration to enumerate, so this glob restores the
  616. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  617. * fails the generator (and the freshness gate) until it is added to
  618. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  619. *
  620. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  621. */
  622. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  623. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  624. const listed = new Set(packages.map(p => p.dir))
  625. const missing = onDisk.filter(dir => !listed.has(dir))
  626. if (missing.length > 0) {
  627. throw new Error(
  628. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  629. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  630. )
  631. }
  632. }
  633. /**
  634. * Assert one manifest entry actually registered a tool.
  635. *
  636. * A tool package that boots without registering anything is a broken boot, not
  637. * an empty catalog section. The usual cause is an `inject` the entry's `mount`
  638. * does not satisfy: cordis leaves the plugin PENDING, every step here still
  639. * succeeds, and the generator writes a catalog missing that package's tools.
  640. * The freshness gate stays green because regeneration reproduces the omission.
  641. * {@link assertManifestComplete} cannot see this: the
  642. * package IS listed, it just contributed nothing.
  643. * @param entry - the manifest entry that was booted.
  644. * @param harvested - how many schemas its boot registered.
  645. * @throws when the boot registered no tool at all.
  646. */
  647. export function assertToolsHarvested(entry: ToolPackage, harvested: number): void {
  648. if (harvested > 0) return
  649. throw new Error(
  650. `gen-tool-catalog: ${entry.pkg} booted without registering a single tool. `
  651. + 'Its plugin is most likely PENDING on a service this manifest entry does not mount — '
  652. + `compare the plugin's inject with mount() and requires: ${entry.requires.join(', ')}.`,
  653. )
  654. }
  655. /**
  656. * Boot each tool package on a fresh Context and harvest its model-facing
  657. * schemas. A fresh Context per package keeps attribution clean (each entry's
  658. * schemas come from exactly that package) and isolates a boot failure to its
  659. * own entry. Disposed after harvest so no executor/provider outlives the run.
  660. */
  661. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  662. assertManifestComplete(packages)
  663. const catalog: ToolCatalog = []
  664. for (const entry of packages) {
  665. const ctx = new Context()
  666. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  667. // plugins mounted still tears the context down (no leaked executor/provider
  668. // fiber) — the repo's "dispose must reach quiescence" rule.
  669. try {
  670. await ctx.plugin(SystemPrompt)
  671. await ctx.plugin(ToolRuntime, entry.toolsConfig ?? {})
  672. await entry.mount(ctx)
  673. const schemas = ctx.tools.schemas(entry.scope?.(ctx)).sort((a, b) => a.name.localeCompare(b.name))
  674. assertToolsHarvested(entry, schemas.length)
  675. catalog.push({
  676. pkg: entry.pkg,
  677. sources: Object.fromEntries(schemas.map(schema => [
  678. schema.name,
  679. toolSource(entry, schema.name),
  680. ])),
  681. requires: entry.requires,
  682. writes: entry.writes,
  683. schemas,
  684. ...entry.shippedNames !== undefined ? { shippedNames: entry.shippedNames } : {},
  685. ...entry.note !== undefined ? { note: entry.note } : {},
  686. })
  687. } finally {
  688. await ctx.fiber.dispose()
  689. }
  690. }
  691. return catalog
  692. }
  693. /** Resolve one harvested tool to the plugin source that registered it. */
  694. function toolSource(entry: ToolPackage, toolName: string): string {
  695. if (typeof entry.source === 'string') return entry.source
  696. const source = entry.source[toolName]
  697. if (source === undefined) {
  698. throw new Error(
  699. `gen-tool-catalog: ${entry.pkg} has no source mapping for harvested tool ${toolName}`,
  700. )
  701. }
  702. return source
  703. }
  704. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  705. function renderTool(schema: ToolSchema, source: string): string[] {
  706. const out = [`### \`${schema.name}\``, '']
  707. if (schema.description) out.push(schema.description, '')
  708. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  709. out.push(`Source: [\`${source}\`](../${source})`, '')
  710. return out
  711. }
  712. function codeList(values: string[] | undefined): string {
  713. return values?.length ? values.map(value => `\`${value}\``).join(', ') : '-'
  714. }
  715. function tableCell(value: string | undefined): string {
  716. return value ? value.replace(/\|/g, '\\|').replace(/\n/g, '<br>') : '-'
  717. }
  718. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  719. export function render(catalog: ToolCatalog): string {
  720. const lines: string[] = [
  721. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  722. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  723. '',
  724. '# Tool Schema Catalog',
  725. '',
  726. '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 [subsystem pages](subsystems/core.md) (the types plus each page\'s generated Cordis API region) — this page is the *tools* the agent is offered.',
  727. '',
  728. '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).',
  729. '',
  730. 'Scope: shipped product tools under `packages/*/tool-*`, each booted with its DEFAULT config, except where a Config field is REQUIRED with no default — there the generator must choose, and the per-package note records which branch this page shows. The registered tool NAME can be a load-time config (e.g. `tool-subagent`\'s `toolName`), so a deployment may expose 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.',
  731. '',
  732. '## Tool Package Map',
  733. '',
  734. '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.',
  735. '',
  736. '| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |',
  737. '| --- | --- | --- | --- | --- | --- |',
  738. ...catalog.map(entry => `| \`${entry.pkg}\` | ${codeList(entry.schemas.map(schema => schema.name))} | ${codeList(entry.requires)} | ${codeList(entry.writes)} | ${codeList(entry.shippedNames)} | ${tableCell(entry.note)} |`),
  739. '',
  740. ]
  741. for (const entry of catalog) {
  742. lines.push(`<a id="${githubSlug(entry.pkg)}"></a>`, '', `## \`${entry.pkg}\``, '')
  743. for (const schema of entry.schemas) {
  744. // Collection validated that every harvested schema has a source.
  745. const source = entry.sources[schema.name] as string
  746. lines.push(...renderTool(schema, source))
  747. }
  748. if (entry.note) lines.push(entry.note, '')
  749. }
  750. return lines.join('\n')
  751. }
  752. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  753. * is stale. Guarded behind an entry-point check so importing this module for
  754. * tests neither regenerates the committed file nor calls process.exit. */
  755. async function main(): Promise<void> {
  756. const content = render(await collectToolCatalog())
  757. if (process.argv.includes('--check')) {
  758. let committed: string | null = null
  759. try {
  760. committed = readFileSync(resolve(root, OUT), 'utf8')
  761. } catch {
  762. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  763. // file is not a state this repo produces. Either way the remedy is the
  764. // same — regenerate — so treat a read failure as "stale".
  765. committed = null
  766. }
  767. if (committed === content) {
  768. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  769. process.exit(0)
  770. }
  771. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  772. const committedLines = committed?.split('\n') ?? []
  773. const generatedLines = content.split('\n')
  774. const lineCount = Math.max(committedLines.length, generatedLines.length)
  775. for (let index = 0; index < lineCount; index += 1) {
  776. if (committedLines[index] === generatedLines[index]) continue
  777. console.error(`gen-tool-catalog: first difference at line ${index + 1}`)
  778. console.error(` committed: ${JSON.stringify(committedLines[index])}`)
  779. console.error(` generated: ${JSON.stringify(generatedLines[index])}`)
  780. break
  781. }
  782. process.exit(1)
  783. }
  784. writeFileSync(resolve(root, OUT), content)
  785. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  786. }
  787. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  788. await main()
  789. }