gen-tool-catalog.ts 38 KB

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