gen-tool-catalog.ts 40 KB

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