gen-tool-catalog.ts 42 KB

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