gen-tool-catalog.ts 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  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 'cordis'
  11. import type { ToolSchema } from '@deepseek-ai/dsh-llm'
  12. import AgentRegistry from '@deepseek-ai/dsh-agent'
  13. import SessionStore from '@deepseek-ai/dsh-session'
  14. import SessionQuerySqlite from '@deepseek-ai/dsh-session-query-sqlite'
  15. import GoalService from '@deepseek-ai/dsh-goal'
  16. import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  17. import ToolRegistry, { type Config as ToolsConfig } from '@deepseek-ai/dsh-tools'
  18. import { BashExecutor } from '@deepseek-ai/dsh-bash'
  19. import type { BashExecRequest, BashExecSpec, BashProcess, BashRunResult } from '@deepseek-ai/dsh-bash'
  20. import LocalBashExecutor from '@deepseek-ai/dsh-bash-local'
  21. import LocalSubprocessService from '@deepseek-ai/dsh-subprocess-local'
  22. import LocalFileSystem from '@deepseek-ai/dsh-fs-local'
  23. import UserInteractionService from '@deepseek-ai/dsh-user-interaction'
  24. import PlanModeService from '@deepseek-ai/dsh-plan-mode'
  25. import WebService from '@deepseek-ai/dsh-web'
  26. import * as WebSearchExa from '@deepseek-ai/dsh-web-search-exa'
  27. import * as WebFetchLocal from '@deepseek-ai/dsh-web-fetch-local'
  28. import SubagentService from '@deepseek-ai/dsh-subagent'
  29. import type { SubagentProvider } from '@deepseek-ai/dsh-subagent'
  30. import SubagentControlService from '@deepseek-ai/dsh-subagent-control'
  31. import * as ToolSubagentControl from '@deepseek-ai/dsh-tool-subagent-control'
  32. import SkillService from '@deepseek-ai/dsh-skill'
  33. import * as SkillLocal from '@deepseek-ai/dsh-skill-local'
  34. import LocalTaskService from '@deepseek-ai/dsh-tasks-local'
  35. import * as ToolAskUser from '@deepseek-ai/dsh-tool-ask-user'
  36. import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
  37. import * as ToolBashPersistent from '@deepseek-ai/dsh-tool-bash-persistent'
  38. import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
  39. import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
  40. import * as ToolFsSearch from '@deepseek-ai/dsh-tool-fs-search'
  41. import * as ToolStrReplaceEditor from '@deepseek-ai/dsh-tool-str-replace-editor'
  42. import PtyService from '@deepseek-ai/dsh-pty'
  43. import * as ToolPty from '@deepseek-ai/dsh-tool-pty'
  44. import * as ToolGoal from '@deepseek-ai/dsh-tool-goal'
  45. import Lsp from '@deepseek-ai/dsh-lsp'
  46. import * as ToolLsp from '@deepseek-ai/dsh-tool-lsp'
  47. import * as ToolSkill from '@deepseek-ai/dsh-tool-skill'
  48. import * as ToolSessionQuery from '@deepseek-ai/dsh-tool-session-query'
  49. import * as ToolTasks from '@deepseek-ai/dsh-tool-tasks'
  50. import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
  51. import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
  52. import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
  53. import VmWorkflowEngine from '@deepseek-ai/dsh-workflow-workerthread'
  54. import * as ToolRalph from '@deepseek-ai/dsh-tool-ralph'
  55. import * as ToolWorkflow from '@deepseek-ai/dsh-tool-workflow'
  56. const root = resolve(import.meta.dirname, '..')
  57. const OUT = 'docs/tool-catalog.md'
  58. const CATALOG_RG_PROBE_COMMAND = 'command -v rg >/dev/null 2>&1'
  59. /**
  60. * Minimal bash service for harvesting `dsh-tool-fs-search` schemas. The search
  61. * plugin now probes `rg` at registration time, but the generated catalog must
  62. * remain independent of the host PATH and never execute a real search.
  63. */
  64. class CatalogSearchBashExecutor extends BashExecutor {
  65. override resolve(request: BashExecRequest): BashExecSpec {
  66. return {
  67. command: request.command,
  68. workdir: request.workdir ?? root,
  69. timeoutMs: request.timeoutMs ?? 60_000,
  70. stdoutMaxBytes: request.stdoutMaxBytes ?? 64_000,
  71. signal: request.signal,
  72. sandboxPolicy: request.sandboxPolicy,
  73. }
  74. }
  75. override run(spec: BashExecSpec): Promise<BashRunResult> {
  76. if (spec.command !== CATALOG_RG_PROBE_COMMAND) {
  77. throw new Error(`gen-tool-catalog: unexpected search bash command during schema harvest: ${spec.command}`)
  78. }
  79. return Promise.resolve({
  80. exitCode: 0,
  81. signal: null,
  82. timedOut: false,
  83. aborted: false,
  84. timeoutMs: spec.timeoutMs,
  85. stdout: { text: '', truncated: false },
  86. stderr: { text: '', truncated: false },
  87. })
  88. }
  89. override start(): BashProcess {
  90. throw new Error('gen-tool-catalog: search schema harvest must not start background processes')
  91. }
  92. }
  93. /**
  94. * Register the descriptor needed to mount schema-producing consumers. Declares
  95. * the full capability set of the shipped in-process providers so consumers
  96. * mount under their shipped defaults (tool-subagent's default numeric maxDepth
  97. * requires `depthLimit`).
  98. */
  99. function registerCatalogSubagentProvider(ctx: Context, name: string): void {
  100. const provider: SubagentProvider = {
  101. name,
  102. capabilities: { outputSchema: true, depthLimit: true, toolFilter: true, persona: true },
  103. inheritsParentContext: false,
  104. start: () => Promise.reject(new Error('tool-catalog provider cannot start a child')),
  105. // Presence marks the continuation capability, so tool-subagent harvests
  106. // its shipped continuable background wording (spawn/fork are resumable).
  107. resume: () => Promise.reject(new Error('tool-catalog provider cannot resume a child')),
  108. }
  109. ctx.subagents.registerProvider(provider)
  110. }
  111. /**
  112. * Tool package plus its hand-maintained boot recipe. The caller mounts the
  113. * prompt and registry; each recipe supplies only package-specific seams and
  114. * config, while `dir` participates in the completeness check.
  115. */
  116. interface ToolPackage {
  117. /** The npm package name, used as the catalog section heading. */
  118. pkg: string
  119. /** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
  120. dir: string
  121. /** Repo-relative source path linked from the catalog entry. */
  122. source: string
  123. /** Services or owning runtime surfaces the package requires at execution time. */
  124. requires: string[]
  125. /** Session events or other visible state the tools write or affect. */
  126. writes: string[]
  127. /** Additional model-visible names shipped by example/app config. */
  128. shippedNames?: string[]
  129. /** Plug the injected seams + the tool plugin onto a context that already
  130. * carries `systemPrompt` + `tools`. */
  131. mount: (ctx: Context) => Promise<void>
  132. /**
  133. * Config for the caller's `ToolRegistry` mount. The registry itself ships a
  134. * model-facing tool (`run_code`, registered under a non-native `mode`), so
  135. * ITS catalog entry boots the registry in the mode that surfaces it;
  136. * every other entry uses the default (native) registry.
  137. */
  138. toolsConfig?: ToolsConfig
  139. /**
  140. * A deployment note rendered after the package's tools, for a fact that
  141. * booting the package alone cannot show. The registered tool NAME can be a
  142. * load-time config (`tool-subagent`'s `toolName`), so one package may surface
  143. * under several names across deployments — the boot yields the package
  144. * DEFAULT, and this note records the shipped alternatives the model sees.
  145. */
  146. note?: string
  147. }
  148. /**
  149. * The boot manifest: every shipped tool package (a `tool-*` leaf under
  150. * `packages/`). Ordered by package name (the render order); the completeness
  151. * guard proves it is exhaustive against the on-disk glob.
  152. */
  153. const TOOL_PACKAGES: ToolPackage[] = [
  154. {
  155. pkg: '@deepseek-ai/dsh-tool-ask-user',
  156. dir: 'tool-ask-user',
  157. source: 'packages/ui/tool-ask-user/src/index.ts',
  158. requires: ['ctx.tools', 'ctx.userInteraction'],
  159. writes: ['tool/call', 'tool/result after a UI/provider answers the question'],
  160. async mount(ctx) {
  161. await ctx.plugin(UserInteractionService)
  162. await ctx.plugin(ToolAskUser)
  163. },
  164. note:
  165. 'ask_user_question pauses the tool call until the active UI provider returns a human answer.',
  166. },
  167. {
  168. pkg: '@deepseek-ai/dsh-tools',
  169. dir: 'tools',
  170. source: 'packages/core/tools/src/code-mode.ts',
  171. requires: ['ctx.tools', 'ctx.codeRuntime (execution time)', 'ctx.systemPrompt'],
  172. writes: ['tool/call', 'one tool/code-dispatch-start + tool/code-dispatch pair per bridged sub-call', 'tool/result'],
  173. // The registry's OWN tool: run_code exists only under a non-native mode
  174. // (the registry registers it in its constructor; the code runtime is read
  175. // at assembly/execution time, so the schema harvest needs none mounted).
  176. toolsConfig: { mode: 'code' },
  177. async mount() {},
  178. note:
  179. '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 TypeScript SDK section, 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.',
  180. },
  181. {
  182. pkg: '@deepseek-ai/dsh-plan-mode',
  183. dir: 'plan-mode',
  184. source: 'packages/plan/plan-mode/src/index.ts',
  185. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.userInteraction (execution time, opportunistic)'],
  186. writes: ['tool/call', 'plan/mode inactive on an approved review', 'tool/result'],
  187. async mount(ctx) {
  188. await ctx.plugin(PlanModeService, { section: 'Tool catalog schema harvest.' })
  189. },
  190. note:
  191. '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-interaction seam (approve / keep planning with feedback), and approval logs plan mode inactive at the step boundary.',
  192. },
  193. {
  194. pkg: '@deepseek-ai/dsh-tool-bash',
  195. dir: 'tool-bash',
  196. source: 'packages/bash/tool-bash/src/index.ts',
  197. requires: ['ctx.tools', 'ctx.bash', 'ctx.tasks at call time for run_in_background'],
  198. writes: ['tool/call', 'tool/result'],
  199. async mount(ctx) {
  200. await ctx.plugin(LocalSubprocessService)
  201. await ctx.plugin(LocalBashExecutor)
  202. await ctx.plugin(ToolBash)
  203. },
  204. note:
  205. 'The bash tool is the model-facing consumer of the bash executor seam. A `run_in_background` run registers with the generic `ctx.tasks` runtime and is collected/stopped through the `task_*` tools from `@deepseek-ai/dsh-tool-tasks`; the `enableRunInBackground` config (default true) removes the parameter entirely when disabled.',
  206. },
  207. {
  208. pkg: '@deepseek-ai/dsh-tool-cordis',
  209. dir: 'tool-cordis',
  210. source: 'packages/cordis/tool-cordis/src/index.ts',
  211. requires: ['ctx.tools'],
  212. writes: ['tool/call', 'tool/result', 'process-local temporary Plugin lifecycle'],
  213. async mount(ctx) {
  214. await ctx.plugin(ToolCordis)
  215. },
  216. note:
  217. 'Not in any shipped tree (a deliberate opt-in — temporary Plugin code reaches the real runtime, see .agents/notes/implemented/feature/2026-07-08-self-referential-cordis-toolset.md). Plugins created by cordis_mount may register ADDITIONAL model-visible tools until unmounted or DSH restarts; a full changed request header logs those tool-set changes.',
  218. },
  219. {
  220. pkg: '@deepseek-ai/dsh-tool-bash-persistent',
  221. dir: 'tool-bash-persistent',
  222. source: 'packages/pty/tool-bash-persistent/src/index.ts',
  223. requires: ['ctx.tools', 'ctx.pty', 'an owning Agent at execution time'],
  224. writes: ['tool/call', 'PTY shell state', 'tool/result'],
  225. async mount(ctx) {
  226. await ctx.plugin(PtyService)
  227. await ctx.plugin(ToolBashPersistent)
  228. },
  229. note:
  230. 'One owner-isolated persistent bash tool; deployment composition supplies the PTY backend and may override the model-facing environment description.',
  231. },
  232. {
  233. pkg: '@deepseek-ai/dsh-tool-str-replace-editor',
  234. dir: 'tool-str-replace-editor',
  235. source: 'packages/fs/tool-str-replace-editor/src/index.ts',
  236. requires: ['ctx.tools', 'ctx.fs'],
  237. writes: ['tool/call', 'fs/observed after successful file operations', 'tool/result'],
  238. async mount(ctx) {
  239. await ctx.plugin(LocalFileSystem)
  240. await ctx.plugin(ToolStrReplaceEditor)
  241. },
  242. note:
  243. 'Standalone view/create/unique literal replace/line insert tool over the filesystem seam; it composes with any shell or terminal surface.',
  244. },
  245. {
  246. pkg: '@deepseek-ai/dsh-tool-fs',
  247. dir: 'tool-fs',
  248. source: 'packages/fs/tool-fs/src/index.ts',
  249. requires: ['ctx.tools', 'ctx.fs', 'ctx.systemPrompt'],
  250. writes: ['tool/call', 'fs/write-intent or fs/edit-intent for mutations', 'fs/observed after successful file operations', 'tool/result'],
  251. async mount(ctx) {
  252. // The tool needs `fs`; the bare provider is sufficient because policy
  253. // changes behavior, not schema shape.
  254. await ctx.plugin(LocalFileSystem)
  255. await ctx.plugin(ToolFs)
  256. },
  257. note:
  258. 'The read-before-write/edit policy is added by `@deepseek-ai/dsh-fs-policy` (an `fs/*` event-gate plugin, no schema change); a deployment that loads these tools is expected to also load it. The tool schemas above are identical with or without the policy plugin.',
  259. },
  260. {
  261. pkg: '@deepseek-ai/dsh-tool-fs-search',
  262. dir: 'tool-fs-search',
  263. source: 'packages/fs/tool-fs-search/src/index.ts',
  264. requires: ['ctx.tools', 'ctx.bash', 'ctx.systemPrompt'],
  265. writes: ['tool/call', 'tool/result'],
  266. async mount(ctx) {
  267. // The tools inject `bash` (search executes fixed `rg` commands through
  268. // the executor seam, not ctx.fs). Use a catalog-only executor so the
  269. // registration-time `rg` probe stays deterministic and the generator
  270. // never depends on the host PATH. `ctx.spillStore` is optional (read via
  271. // ctx.get) and does not affect the schemas, so no spill backend is mounted.
  272. await ctx.plugin(CatalogSearchBashExecutor)
  273. await ctx.plugin(ToolFsSearch, { sampleOverCapGlobResults: true })
  274. },
  275. note:
  276. 'glob and grep are conditional bash-backed discovery tools: they register only when ctx.bash can find `rg`, then run fixed ripgrep commands through ctx.bash as ordinary foreground calls (never background tasks). 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.',
  277. },
  278. {
  279. pkg: '@deepseek-ai/dsh-tool-pty',
  280. dir: 'tool-pty',
  281. source: 'packages/pty/tool-pty/src/index.ts',
  282. requires: ['ctx.tools', 'ctx.pty', 'ctx.systemPrompt', 'ctx.tasks at call time for run_in_background'],
  283. writes: ['tool/call', 'tool/result'],
  284. async mount(ctx) {
  285. await ctx.plugin(PtyService)
  286. await ctx.plugin(ToolPty)
  287. },
  288. note:
  289. 'The six terminal tools are opt-in and complement one-shot bash/filesystem tools. `terminal_send(run_in_background: true)` registers with `ctx.tasks`; TUI, named key sequences, BEL, resize, auto-start, and cross-agent sharing are absent from the schema.',
  290. },
  291. {
  292. pkg: '@deepseek-ai/dsh-tool-goal',
  293. dir: 'tool-goal',
  294. source: 'packages/goal/tool-goal/src/index.ts',
  295. requires: ['ctx.tools', 'ctx.agents', 'ctx.goals', 'ctx.systemPrompt', 'a calling Agent in an authorized open turn'],
  296. writes: ['tool/call', 'user/message goal snapshot for mutations', 'tool/result'],
  297. async mount(ctx) {
  298. await ctx.plugin(AgentRegistry)
  299. await ctx.plugin(GoalService)
  300. await ctx.plugin(ToolGoal)
  301. },
  302. note:
  303. '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.',
  304. },
  305. {
  306. pkg: '@deepseek-ai/dsh-tool-lsp',
  307. dir: 'tool-lsp',
  308. source: 'packages/lsp/tool-lsp/src/index.ts',
  309. requires: ['ctx.tools', 'ctx.lsp', 'ctx.systemPrompt'],
  310. writes: ['tool/call', 'tool/result'],
  311. async mount(ctx) {
  312. // The tool registers from the seam alone; the schema does not depend on any provider.
  313. await ctx.plugin(Lsp)
  314. await ctx.plugin(ToolLsp)
  315. },
  316. note:
  317. '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-local`) at runtime; without one, a query returns the structured `LSP_UNAVAILABLE` error rather than changing the schema.',
  318. },
  319. {
  320. pkg: '@deepseek-ai/dsh-tool-ralph',
  321. dir: 'tool-ralph',
  322. source: 'packages/workflow/tool-ralph/src/index.ts',
  323. requires: ['ctx.tools', 'ctx.workflows', 'ctx.subagents', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents every fresh round)'],
  324. writes: ['tool/call', 'tool/result', 'workflow and child session events during execution'],
  325. async mount(ctx) {
  326. await ctx.plugin(SubagentService)
  327. registerCatalogSubagentProvider(ctx, 'mock')
  328. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  329. await ctx.plugin(ToolRalph, { subagentProvider: 'mock' })
  330. },
  331. note:
  332. 'A fixed foreground workflow starts one fresh structured child per round; the model selects only the immutable objective and an optional round cap.',
  333. },
  334. {
  335. pkg: '@deepseek-ai/dsh-tool-skill',
  336. dir: 'tool-skill',
  337. source: 'packages/skill/tool-skill/src/index.ts',
  338. requires: ['ctx.tools', 'ctx.agents', 'ctx.skills'],
  339. writes: ['tool/call', 'tool/result', 'user/message replacement catalogs via agent.inject()'],
  340. async mount(ctx) {
  341. await ctx.plugin(AgentRegistry)
  342. await ctx.plugin(SkillService)
  343. await ctx.plugin(SkillLocal, {
  344. dshHome: resolve(root, '.tmp/tool-catalog/.dsh'),
  345. agentsHome: resolve(root, '.tmp/tool-catalog/.agents'),
  346. })
  347. await ctx.plugin(ToolSkill)
  348. },
  349. },
  350. {
  351. pkg: '@deepseek-ai/dsh-tool-session-query',
  352. dir: 'tool-session-query',
  353. source: 'packages/session-query/tool-session-query/src/index.ts',
  354. requires: ['ctx.tools', 'ctx.systemPrompt', 'ctx.sessionQuery', 'a calling Agent for workspace authority'],
  355. writes: ['tool/call', 'tool/result'],
  356. async mount(ctx) {
  357. await ctx.plugin(SessionStore)
  358. await ctx.plugin(SessionQuerySqlite, { path: ':memory:' })
  359. await ctx.plugin(ToolSessionQuery)
  360. },
  361. note:
  362. '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.',
  363. },
  364. {
  365. pkg: '@deepseek-ai/dsh-tool-subagent',
  366. dir: 'tool-subagent',
  367. source: 'packages/subagent/tool-subagent/src/index.ts',
  368. requires: ['ctx.tools', 'ctx.subagents'],
  369. writes: ['tool/call', 'tool/result', 'child session events through the chosen provider'],
  370. shippedNames: ['subagent', 'subagent_fork'],
  371. async mount(ctx) {
  372. await ctx.plugin(SubagentService)
  373. registerCatalogSubagentProvider(ctx, 'mock')
  374. await ctx.plugin(ToolSubagent, { provider: 'mock' })
  375. },
  376. note:
  377. 'The registered tool name is the load-time `toolName` config (default `subagent`); the schema above is that default. The shipped example agents load this package once per subagent backend, so the model additionally sees `subagent_fork` (bound to the fork backend) with an identical schema — see `apps/cli/config/base.cordis.yml` and `examples/acp-agent/cordis.yml`.',
  378. },
  379. {
  380. pkg: '@deepseek-ai/dsh-tool-subagent-control',
  381. dir: 'tool-subagent-control',
  382. source: 'packages/subagent/tool-subagent-control/src/index.ts',
  383. requires: ['ctx.tools', 'ctx.subagentControl'],
  384. writes: ['tool/call', 'tool/result', 'child session events through the control service'],
  385. async mount(ctx) {
  386. await ctx.plugin(SubagentService)
  387. await ctx.plugin(LocalTaskService)
  388. await ctx.plugin(AgentRegistry)
  389. await ctx.plugin(SubagentControlService)
  390. await ctx.plugin(ToolSubagentControl)
  391. },
  392. note:
  393. 'The one globally named follow-up tool over continuable background subagents: provider-bound `tool-subagent` instances register distinct delegation tools, while this package registers `send_message` once.',
  394. },
  395. {
  396. pkg: '@deepseek-ai/dsh-tool-tasks',
  397. dir: 'tool-tasks',
  398. source: 'packages/tasks/tool-tasks/src/index.ts',
  399. requires: ['ctx.tools', 'ctx.tasks', 'ctx.systemPrompt'],
  400. writes: ['tool/call', 'tool/result', 'user/message via agent.inject() for background completion notices'],
  401. async mount(ctx) {
  402. await ctx.plugin(LocalTaskService)
  403. await ctx.plugin(ToolTasks)
  404. },
  405. note:
  406. 'The kind-agnostic background-task control surface: background bash commands, PTY sends, and subagents are read, listed, and killed through the same three tools. Loading the plugin attaches the control surface that arms producers\' `ctx.tasks.start()`.',
  407. },
  408. {
  409. pkg: '@deepseek-ai/dsh-tool-todo',
  410. dir: 'tool-todo',
  411. source: 'packages/todo/tool-todo/src/index.ts',
  412. requires: ['ctx.tools', 'owning Agent session'],
  413. writes: ['tool/call', 'todo/write', 'tool/result'],
  414. async mount(ctx) {
  415. await ctx.plugin(ToolTodo)
  416. },
  417. note:
  418. 'todo_write is session-owned state; UIs render the latest todo/write event as a checklist.',
  419. },
  420. {
  421. pkg: '@deepseek-ai/dsh-tool-workflow',
  422. dir: 'tool-workflow',
  423. source: 'packages/workflow/tool-workflow/src/index.ts',
  424. requires: ['ctx.tools', 'ctx.workflows', 'ctx.systemPrompt', 'a calling Agent (exec.agent parents the script children)'],
  425. writes: ['tool/call', 'tool/result'],
  426. async mount(ctx) {
  427. // The tool injects `workflows`; boot the vm engine over a scripted
  428. // subagent provider to satisfy it. The schema does not depend on which
  429. // provider backs the engine.
  430. await ctx.plugin(SubagentService)
  431. registerCatalogSubagentProvider(ctx, 'mock')
  432. await ctx.plugin(VmWorkflowEngine, { provider: 'mock' })
  433. await ctx.plugin(ToolWorkflow)
  434. },
  435. },
  436. {
  437. pkg: '@deepseek-ai/dsh-tool-web',
  438. dir: 'tool-web',
  439. source: 'packages/web/tool-web/src/index.ts',
  440. requires: ['ctx.tools', 'ctx.web', 'ctx.systemPrompt'],
  441. writes: ['tool/call', 'tool/result'],
  442. async mount(ctx) {
  443. // Mount search and fetch providers so both tools register. Their schemas
  444. // do not depend on provider identity or availability.
  445. await ctx.plugin(WebService)
  446. await ctx.plugin(WebSearchExa)
  447. await ctx.plugin(WebFetchLocal)
  448. await ctx.plugin(ToolWeb)
  449. },
  450. note:
  451. 'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.',
  452. },
  453. ]
  454. /** One package's contribution to the catalog: its schemas plus attribution. */
  455. interface CatalogPackage {
  456. pkg: string
  457. source: string
  458. requires: string[]
  459. writes: string[]
  460. shippedNames?: string[]
  461. schemas: ToolSchema[]
  462. /** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
  463. note?: string
  464. }
  465. /** The whole catalog: one entry per booted tool package, in manifest order. */
  466. export type ToolCatalog = CatalogPackage[]
  467. /**
  468. * Assert the boot manifest covers every shipped tool package on disk (a
  469. * `tool-*` leaf under `packages/`).
  470. * Booting has no source declaration to enumerate, so this glob restores the
  471. * "a new tool cannot be silently undocumented" guarantee: an unlisted package
  472. * fails the generator (and the freshness gate) until it is added to
  473. * {@link TOOL_PACKAGES}. Exported for a direct negative test.
  474. *
  475. * `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
  476. */
  477. export function assertManifestComplete(packages: ToolPackage[] = TOOL_PACKAGES, scanRoot: string = root): void {
  478. const onDisk = globSync('packages/*/tool-*', { cwd: scanRoot }).map(p => basename(p)).sort()
  479. const listed = new Set(packages.map(p => p.dir))
  480. const missing = onDisk.filter(dir => !listed.has(dir))
  481. if (missing.length > 0) {
  482. throw new Error(
  483. `gen-tool-catalog: ${missing.length} tool package(s) not in the boot manifest: ${missing.join(', ')}. `
  484. + 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.',
  485. )
  486. }
  487. }
  488. /**
  489. * Boot each tool package on a fresh Context and harvest its model-facing
  490. * schemas. A fresh Context per package keeps attribution clean (each entry's
  491. * schemas come from exactly that package) and isolates a boot failure to its
  492. * own entry. Disposed after harvest so no executor/provider outlives the run.
  493. */
  494. export async function collectToolCatalog(packages: ToolPackage[] = TOOL_PACKAGES): Promise<ToolCatalog> {
  495. assertManifestComplete(packages)
  496. const catalog: ToolCatalog = []
  497. for (const entry of packages) {
  498. const ctx = new Context()
  499. // Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
  500. // plugins mounted still tears the context down (no leaked executor/provider
  501. // fiber) — the repo's "dispose must reach quiescence" rule.
  502. try {
  503. await ctx.plugin(SystemPrompt)
  504. await ctx.plugin(ToolRegistry, entry.toolsConfig ?? {})
  505. await entry.mount(ctx)
  506. const schemas = ctx.tools.schemas().sort((a, b) => a.name.localeCompare(b.name))
  507. catalog.push({
  508. pkg: entry.pkg,
  509. source: entry.source,
  510. requires: entry.requires,
  511. writes: entry.writes,
  512. schemas,
  513. ...entry.shippedNames !== undefined ? { shippedNames: entry.shippedNames } : {},
  514. ...entry.note !== undefined ? { note: entry.note } : {},
  515. })
  516. } finally {
  517. await ctx.fiber.dispose()
  518. }
  519. }
  520. return catalog
  521. }
  522. /** Render one tool's entry: name, description, JSON-Schema parameters, source. */
  523. function renderTool(schema: ToolSchema, source: string): string[] {
  524. const out = [`### \`${schema.name}\``, '']
  525. if (schema.description) out.push(schema.description, '')
  526. out.push('```json', JSON.stringify(schema.parameters, null, 2), '```', '')
  527. out.push(`Source: [\`${source}\`](../${source})`, '')
  528. return out
  529. }
  530. function codeList(values: string[] | undefined): string {
  531. return values?.length ? values.map(value => `\`${value}\``).join(', ') : '-'
  532. }
  533. function tableCell(value: string | undefined): string {
  534. return value ? value.replace(/\|/g, '\\|').replace(/\n/g, '<br>') : '-'
  535. }
  536. /** Render the full catalog (pure, deterministic given the manifest-ordered input). */
  537. export function render(catalog: ToolCatalog): string {
  538. const lines: string[] = [
  539. '<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.',
  540. ' Run `pnpm run gen-tool-catalog` to regenerate. -->',
  541. '',
  542. '# Tool Schema Catalog',
  543. '',
  544. 'Every model-facing tool a shipped plugin contributes to `ctx.tools`: the `name`, `description`, and JSON-Schema `parameters` the model receives via the system-prompt assembly. It complements the cordis [events](cordis-catalog/events.md) & [services](cordis-catalog/services.md) catalogs (the wiring a plugin listens to and calls) and [core-data-structures/](core-data-structures/core.md) (the types those signatures move) — this page is the *tools* the agent is offered.',
  545. '',
  546. '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).',
  547. '',
  548. 'Scope: shipped product tools under `packages/*/tool-*`, each booted with its DEFAULT config. The registered tool NAME can be a load-time config (e.g. `tool-subagent`\'s `toolName`), so a deployment may surface a package under a different or additional name — a per-package note records those shipped aliases where they exist. The `examples/` demo tools (e.g. `echo`) are excluded, matching the cordis catalog\'s packages-only scope.',
  549. '',
  550. '## Tool Package Map',
  551. '',
  552. '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.',
  553. '',
  554. '| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |',
  555. '| --- | --- | --- | --- | --- | --- |',
  556. ...catalog.map(entry => `| \`${entry.pkg}\` | ${codeList(entry.schemas.map(schema => schema.name))} | ${codeList(entry.requires)} | ${codeList(entry.writes)} | ${codeList(entry.shippedNames)} | ${tableCell(entry.note)} |`),
  557. '',
  558. ]
  559. for (const entry of catalog) {
  560. lines.push(`## \`${entry.pkg}\``, '')
  561. for (const schema of entry.schemas) lines.push(...renderTool(schema, entry.source))
  562. if (entry.note) lines.push(entry.note, '')
  563. }
  564. return lines.join('\n')
  565. }
  566. /** CLI entry: default writes the catalog, `--check` fails if the committed copy
  567. * is stale. Guarded behind an entry-point check so importing this module for
  568. * tests neither regenerates the committed file nor calls process.exit. */
  569. async function main(): Promise<void> {
  570. const content = render(await collectToolCatalog())
  571. if (process.argv.includes('--check')) {
  572. let committed: string | null = null
  573. try {
  574. committed = readFileSync(resolve(root, OUT), 'utf8')
  575. } catch {
  576. // Only ENOENT (not yet generated) is expected; a present-but-unreadable
  577. // file is not a state this repo produces. Either way the remedy is the
  578. // same — regenerate — so treat a read failure as "stale".
  579. committed = null
  580. }
  581. if (committed === content) {
  582. console.log(`gen-tool-catalog: ${OUT} is up to date.`)
  583. process.exit(0)
  584. }
  585. console.error(`gen-tool-catalog: ${OUT} is stale. Run \`pnpm run gen-tool-catalog\` and commit ${OUT}.`)
  586. process.exit(1)
  587. }
  588. writeFileSync(resolve(root, OUT), content)
  589. console.log(`gen-tool-catalog: wrote ${OUT}.`)
  590. }
  591. // Run only when invoked as a script, not when imported by a test.
  592. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  593. await main()
  594. }