2026-07-02 02:20:24 +08:00
/**
2026-07-12 03:36:43 +08:00
* Generate `docs/tool-catalog.md` from schemas collected by booting each tool
* plugin. Runtime registration is the source of truth for computed schemas;
* the manifest is checked against every on-disk `tool-*` package. `--check`
2026-07-13 23:27:00 +08:00
* verifies the committed artifact. Rationale and ownership live in
2026-07-19 22:50:49 +08:00
* `.agents/notes/implemented/process/2026-07-02-tool-schema-catalog.md`.
2026-07-02 02:20:24 +08:00
*/
import { globSync , readFileSync , writeFileSync } from 'node:fs'
import { basename , resolve } from 'node:path'
import { Context } from 'cordis'
import type { ToolSchema } from '@deepseek-ai/dsh-llm'
2026-07-19 19:22:10 +08:00
import AgentRegistry from '@deepseek-ai/dsh-agent'
2026-07-24 15:09:55 +08:00
import SessionStore from '@deepseek-ai/dsh-session'
import SessionQuerySqlite from '@deepseek-ai/dsh-session-query-sqlite'
2026-07-19 19:22:10 +08:00
import GoalService from '@deepseek-ai/dsh-goal'
2026-07-02 02:20:24 +08:00
import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
2026-07-08 12:58:23 +08:00
import ToolRegistry , { type Config as ToolsConfig } from '@deepseek-ai/dsh-tools'
2026-07-13 16:17:36 +08:00
import { BashExecutor } from '@deepseek-ai/dsh-bash'
2026-07-17 21:25:37 +08:00
import type { BashExecRequest , BashExecSpec , BashProcess , BashRunResult } from '@deepseek-ai/dsh-bash'
2026-07-02 02:20:24 +08:00
import LocalBashExecutor from '@deepseek-ai/dsh-bash-local'
2026-07-02 09:30:04 +08:00
import LocalFileSystem from '@deepseek-ai/dsh-fs-local'
2026-07-03 11:57:07 +08:00
import UserInteractionService from '@deepseek-ai/dsh-user-interaction'
2026-07-22 16:57:23 +08:00
import PlanModeService from '@deepseek-ai/dsh-plan-mode'
2026-07-03 16:49:00 +08:00
import WebService from '@deepseek-ai/dsh-web'
import * as WebSearchExa from '@deepseek-ai/dsh-web-search-exa'
import * as WebFetchLocal from '@deepseek-ai/dsh-web-fetch-local'
2026-07-02 02:20:24 +08:00
import SubagentService from '@deepseek-ai/dsh-subagent'
2026-07-19 11:54:37 +08:00
import type { SubagentProvider } from '@deepseek-ai/dsh-subagent'
2026-07-03 12:26:58 +08:00
import SkillService from '@deepseek-ai/dsh-skill'
2026-07-08 15:50:38 +08:00
import * as SkillLocal from '@deepseek-ai/dsh-skill-local'
2026-07-26 05:13:39 +08:00
import LocalTaskService from '@deepseek-ai/dsh-tasks-local'
2026-07-03 11:57:07 +08:00
import * as ToolAskUser from '@deepseek-ai/dsh-tool-ask-user'
2026-07-02 02:20:24 +08:00
import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
2026-07-08 11:45:46 +08:00
import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
2026-07-02 09:30:04 +08:00
import * as ToolFs from '@deepseek-ai/dsh-tool-fs'
2026-07-09 20:44:32 +08:00
import * as ToolFsSearch from '@deepseek-ai/dsh-tool-fs-search'
2026-07-21 16:01:00 +08:00
import PtyService from '@deepseek-ai/dsh-pty'
import * as ToolPty from '@deepseek-ai/dsh-tool-pty'
2026-07-19 19:22:10 +08:00
import * as ToolGoal from '@deepseek-ai/dsh-tool-goal'
2026-07-16 12:05:35 +08:00
import Lsp from '@deepseek-ai/dsh-lsp'
import * as ToolLsp from '@deepseek-ai/dsh-tool-lsp'
2026-07-03 12:26:58 +08:00
import * as ToolSkill from '@deepseek-ai/dsh-tool-skill'
2026-07-24 15:09:55 +08:00
import * as ToolSessionQuery from '@deepseek-ai/dsh-tool-session-query'
2026-07-09 21:22:54 +08:00
import * as ToolTasks from '@deepseek-ai/dsh-tool-tasks'
2026-07-02 02:20:24 +08:00
import * as ToolTodo from '@deepseek-ai/dsh-tool-todo'
import * as ToolSubagent from '@deepseek-ai/dsh-tool-subagent'
2026-07-03 16:49:00 +08:00
import * as ToolWeb from '@deepseek-ai/dsh-tool-web'
2026-07-09 19:06:55 +08:00
import VmWorkflowEngine from '@deepseek-ai/dsh-workflow-workerthread'
2026-07-20 00:51:19 +08:00
import * as ToolRalph from '@deepseek-ai/dsh-tool-ralph'
2026-07-05 13:29:35 +08:00
import * as ToolWorkflow from '@deepseek-ai/dsh-tool-workflow'
2026-07-02 02:20:24 +08:00
const root = resolve ( import . meta . dirname , '..' )
2026-07-06 22:26:06 +08:00
const OUT = 'docs/tool-catalog.md'
2026-07-13 16:17:36 +08:00
const CATALOG_RG_PROBE_COMMAND = 'command -v rg >/dev/null 2>&1'
/**
* Minimal bash service for harvesting `dsh-tool-fs-search` schemas. The search
* plugin now probes `rg` at registration time, but the generated catalog must
* remain independent of the host PATH and never execute a real search.
*/
class CatalogSearchBashExecutor extends BashExecutor {
override resolve ( request : BashExecRequest ) : BashExecSpec {
return {
command : request.command ,
workdir : request.workdir ? ? root ,
timeoutMs : request.timeoutMs ? ? 60 _000 ,
stdoutMaxBytes : request.stdoutMaxBytes ? ? 64 _000 ,
signal : request.signal ,
2026-07-21 00:44:28 +08:00
sandboxPolicy : request.sandboxPolicy ,
2026-07-13 16:17:36 +08:00
}
}
override run ( spec : BashExecSpec ) : Promise < BashRunResult > {
if ( spec . command !== CATALOG_RG_PROBE_COMMAND ) {
throw new Error ( ` gen-tool-catalog: unexpected search bash command during schema harvest: ${ spec . command } ` )
}
return Promise . resolve ( {
exitCode : 0 ,
signal : null ,
timedOut : false ,
aborted : false ,
timeoutMs : spec.timeoutMs ,
stdout : { text : '' , truncated : false } ,
stderr : { text : '' , truncated : false } ,
} )
}
2026-07-17 21:25:37 +08:00
override start ( ) : BashProcess {
throw new Error ( 'gen-tool-catalog: search schema harvest must not start background processes' )
2026-07-13 16:17:36 +08:00
}
}
2026-07-02 02:20:24 +08:00
2026-07-19 17:20:49 +08:00
/**
* Register the descriptor needed to mount schema-producing consumers. Declares
* the full capability set of the shipped in-process providers so consumers
* mount under their shipped defaults (tool-subagent's default numeric maxDepth
* requires `depthLimit`).
*/
2026-07-19 11:54:37 +08:00
function registerCatalogSubagentProvider ( ctx : Context , name : string ) : void {
const provider : SubagentProvider = {
name ,
2026-07-19 17:20:49 +08:00
capabilities : { outputSchema : true , depthLimit : true , toolFilter : true , persona : true } ,
2026-07-19 11:54:37 +08:00
inheritsParentContext : false ,
start : ( ) = > Promise . reject ( new Error ( 'tool-catalog provider cannot start a child' ) ) ,
}
ctx . subagents . registerProvider ( provider )
}
2026-07-02 02:20:24 +08:00
/**
2026-07-13 23:27:00 +08:00
* Tool package plus its hand-maintained boot recipe. The caller mounts the
* prompt and registry; each recipe supplies only package-specific seams and
* config, while `dir` participates in the completeness check.
2026-07-02 02:20:24 +08:00
*/
interface ToolPackage {
/** The npm package name, used as the catalog section heading. */
pkg : string
/** The `packages/<group>/<dir>` leaf name — matched by the completeness guard. */
dir : string
/** Repo-relative source path linked from the catalog entry. */
source : string
2026-07-05 01:25:58 +08:00
/** Services or owning runtime surfaces the package requires at execution time. */
requires : string [ ]
/** Session events or other visible state the tools write or affect. */
writes : string [ ]
/** Additional model-visible names shipped by example/app config. */
shippedNames? : string [ ]
2026-07-02 02:20:24 +08:00
/** Plug the injected seams + the tool plugin onto a context that already
* carries `systemPrompt` + `tools`. */
mount : ( ctx : Context ) = > Promise < void >
2026-07-08 12:58:23 +08:00
/**
* Config for the caller's `ToolRegistry` mount. The registry itself ships a
* model-facing tool (`run_code`, registered under a non-native `mode`), so
* ITS catalog entry boots the registry in the mode that surfaces it;
* every other entry uses the default (native) registry.
*/
toolsConfig? : ToolsConfig
2026-07-02 03:16:17 +08:00
/**
* A deployment note rendered after the package's tools, for a fact that
* booting the package alone cannot show. The registered tool NAME can be a
* load-time config (`tool-subagent`'s `toolName`), so one package may surface
* under several names across deployments — the boot yields the package
* DEFAULT, and this note records the shipped alternatives the model sees.
*/
note? : string
2026-07-02 02:20:24 +08:00
}
/**
* The boot manifest: every shipped tool package (a `tool-*` leaf under
* `packages/`). Ordered by package name (the render order); the completeness
* guard proves it is exhaustive against the on-disk glob.
*/
const TOOL_PACKAGES : ToolPackage [ ] = [
2026-07-03 11:57:07 +08:00
{
pkg : '@deepseek-ai/dsh-tool-ask-user' ,
dir : 'tool-ask-user' ,
source : 'packages/ui/tool-ask-user/src/index.ts' ,
2026-07-05 17:05:33 +08:00
requires : [ 'ctx.tools' , 'ctx.userInteraction' ] ,
writes : [ 'tool/call' , 'tool/result after a UI/provider answers the question' ] ,
2026-07-03 11:57:07 +08:00
async mount ( ctx ) {
await ctx . plugin ( UserInteractionService )
await ctx . plugin ( ToolAskUser )
} ,
2026-07-05 17:05:33 +08:00
note :
'ask_user_question pauses the tool call until the active UI provider returns a human answer.' ,
2026-07-03 11:57:07 +08:00
} ,
2026-07-08 12:58:23 +08:00
{
pkg : '@deepseek-ai/dsh-tools' ,
dir : 'tools' ,
source : 'packages/core/tools/src/code-mode.ts' ,
requires : [ 'ctx.tools' , 'ctx.codeRuntime (execution time)' , 'ctx.systemPrompt' ] ,
2026-07-26 10:33:48 +08:00
writes : [ 'tool/call' , 'one tool/code-dispatch-start + tool/code-dispatch pair per bridged sub-call' , 'tool/result' ] ,
2026-07-08 12:58:23 +08:00
// The registry's OWN tool: run_code exists only under a non-native mode
// (the registry registers it in its constructor; the code runtime is read
// at assembly/execution time, so the schema harvest needs none mounted).
toolsConfig : { mode : 'code' } ,
async mount() { } ,
note :
2026-07-26 10:33:48 +08:00
'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.' ,
2026-07-08 12:58:23 +08:00
} ,
2026-07-10 02:57:40 +08:00
{
2026-07-22 16:57:23 +08:00
pkg : '@deepseek-ai/dsh-plan-mode' ,
dir : 'plan-mode' ,
source : 'packages/plan/plan-mode/src/index.ts' ,
2026-07-10 02:57:40 +08:00
requires : [ 'ctx.tools' , 'ctx.systemPrompt' , 'ctx.userInteraction (execution time, opportunistic)' ] ,
2026-07-22 16:57:23 +08:00
writes : [ 'tool/call' , 'plan/mode inactive on an approved review' , 'tool/result' ] ,
2026-07-10 02:57:40 +08:00
async mount ( ctx ) {
2026-07-22 16:57:23 +08:00
await ctx . plugin ( PlanModeService , { section : 'Tool catalog schema harvest.' } )
2026-07-10 02:57:40 +08:00
} ,
note :
2026-07-22 16:57:23 +08:00
'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.' ,
2026-07-10 02:57:40 +08:00
} ,
2026-07-02 02:20:24 +08:00
{
pkg : '@deepseek-ai/dsh-tool-bash' ,
dir : 'tool-bash' ,
source : 'packages/bash/tool-bash/src/index.ts' ,
2026-07-09 21:22:54 +08:00
requires : [ 'ctx.tools' , 'ctx.bash' , 'ctx.tasks at call time for run_in_background' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
2026-07-02 02:20:24 +08:00
async mount ( ctx ) {
await ctx . plugin ( LocalBashExecutor )
await ctx . plugin ( ToolBash )
} ,
2026-07-05 01:25:58 +08:00
note :
2026-07-09 21:22:54 +08:00
'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.' ,
2026-07-02 02:20:24 +08:00
} ,
2026-07-08 11:45:46 +08:00
{
pkg : '@deepseek-ai/dsh-tool-cordis' ,
dir : 'tool-cordis' ,
source : 'packages/cordis/tool-cordis/src/index.ts' ,
requires : [ 'ctx.tools' ] ,
writes : [ 'tool/call' , 'tool/result' , 'live plugin-tree mutations (mount/unmount)' ] ,
async mount ( ctx ) {
await ctx . plugin ( ToolCordis )
} ,
note :
2026-07-19 22:50:49 +08:00
'Ships in examples/cordis-agent only (a deliberate opt-in — mounted code gets the real ctx, see .agents/notes/implemented/feature/2026-07-08-self-referential-cordis-toolset.md). Plugins the model mounts may register ADDITIONAL model-visible tools at runtime; a full changed request header logs those tool-set changes.' ,
2026-07-08 11:45:46 +08:00
} ,
2026-07-02 09:30:04 +08:00
{
pkg : '@deepseek-ai/dsh-tool-fs' ,
dir : 'tool-fs' ,
source : 'packages/fs/tool-fs/src/index.ts' ,
2026-07-05 01:25:58 +08:00
requires : [ 'ctx.tools' , 'ctx.fs' , 'ctx.systemPrompt' ] ,
writes : [ 'tool/call' , 'fs/write-intent or fs/edit-intent for mutations' , 'fs/observed after successful file operations' , 'tool/result' ] ,
2026-07-02 09:30:04 +08:00
async mount ( ctx ) {
2026-07-13 23:27:00 +08:00
// The tool needs `fs`; the bare provider is sufficient because policy
// changes behavior, not schema shape.
2026-07-02 09:30:04 +08:00
await ctx . plugin ( LocalFileSystem )
await ctx . plugin ( ToolFs )
} ,
note :
'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.' ,
} ,
2026-07-09 20:44:32 +08:00
{
pkg : '@deepseek-ai/dsh-tool-fs-search' ,
dir : 'tool-fs-search' ,
source : 'packages/fs/tool-fs-search/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.bash' , 'ctx.systemPrompt' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
async mount ( ctx ) {
// The tools inject `bash` (search executes fixed `rg` commands through
2026-07-13 16:17:36 +08:00
// the executor seam, not ctx.fs). Use a catalog-only executor so the
// registration-time `rg` probe stays deterministic and the generator
// never depends on the host PATH. `ctx.spillStore` is optional (read via
// ctx.get) and does not affect the schemas, so no spill backend is mounted.
await ctx . plugin ( CatalogSearchBashExecutor )
2026-07-09 20:44:32 +08:00
await ctx . plugin ( ToolFsSearch )
} ,
note :
2026-07-13 16:17:36 +08:00
'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). 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.' ,
2026-07-09 20:44:32 +08:00
} ,
2026-07-21 16:01:00 +08:00
{
pkg : '@deepseek-ai/dsh-tool-pty' ,
dir : 'tool-pty' ,
source : 'packages/pty/tool-pty/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.pty' , 'ctx.systemPrompt' , 'ctx.tasks at call time for run_in_background' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
async mount ( ctx ) {
await ctx . plugin ( PtyService )
await ctx . plugin ( ToolPty )
} ,
note :
2026-07-21 19:29:56 +08:00
'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.' ,
2026-07-21 16:01:00 +08:00
} ,
2026-07-19 19:22:10 +08:00
{
pkg : '@deepseek-ai/dsh-tool-goal' ,
dir : 'tool-goal' ,
source : 'packages/goal/tool-goal/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.agents' , 'ctx.goals' , 'ctx.systemPrompt' , 'a calling Agent in an authorized open turn' ] ,
2026-07-23 19:15:45 +08:00
writes : [ 'tool/call' , 'user/message goal snapshot for mutations' , 'tool/result' ] ,
2026-07-19 19:22:10 +08:00
async mount ( ctx ) {
await ctx . plugin ( AgentRegistry )
await ctx . plugin ( GoalService )
await ctx . plugin ( ToolGoal )
} ,
note :
'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.' ,
} ,
2026-07-16 12:05:35 +08:00
{
pkg : '@deepseek-ai/dsh-tool-lsp' ,
dir : 'tool-lsp' ,
source : 'packages/lsp/tool-lsp/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.lsp' , 'ctx.systemPrompt' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
async mount ( ctx ) {
// The tool registers from the seam alone; the schema does not depend on any provider.
await ctx . plugin ( Lsp )
await ctx . plugin ( ToolLsp )
} ,
note :
'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.' ,
} ,
2026-07-20 00:51:19 +08:00
{
pkg : '@deepseek-ai/dsh-tool-ralph' ,
dir : 'tool-ralph' ,
source : 'packages/workflow/tool-ralph/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.workflows' , 'ctx.subagents' , 'ctx.systemPrompt' , 'a calling Agent (exec.agent parents every fresh round)' ] ,
writes : [ 'tool/call' , 'tool/result' , 'workflow and child session events during execution' ] ,
async mount ( ctx ) {
await ctx . plugin ( SubagentService )
registerCatalogSubagentProvider ( ctx , 'mock' )
await ctx . plugin ( VmWorkflowEngine , { provider : 'mock' } )
await ctx . plugin ( ToolRalph , { subagentProvider : 'mock' } )
} ,
note :
'A fixed foreground workflow starts one fresh structured child per round; the model selects only the immutable objective and an optional round cap.' ,
} ,
2026-07-03 12:26:58 +08:00
{
pkg : '@deepseek-ai/dsh-tool-skill' ,
dir : 'tool-skill' ,
2026-07-10 14:19:06 +08:00
source : 'packages/skill/tool-skill/src/index.ts' ,
2026-07-05 16:50:29 +08:00
requires : [ 'ctx.tools' , 'ctx.skills' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
2026-07-03 12:26:58 +08:00
async mount ( ctx ) {
2026-07-08 15:50:38 +08:00
await ctx . plugin ( SkillService )
await ctx . plugin ( SkillLocal , {
2026-07-03 12:26:58 +08:00
dshHome : resolve ( root , '.tmp/tool-catalog/.dsh' ) ,
agentsHome : resolve ( root , '.tmp/tool-catalog/.agents' ) ,
} )
await ctx . plugin ( ToolSkill )
} ,
} ,
2026-07-24 15:09:55 +08:00
{
pkg : '@deepseek-ai/dsh-tool-session-query' ,
dir : 'tool-session-query' ,
source : 'packages/session-query/tool-session-query/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.systemPrompt' , 'ctx.sessionQuery' , 'a calling Agent for workspace authority' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
async mount ( ctx ) {
await ctx . plugin ( SessionStore )
await ctx . plugin ( SessionQuerySqlite , { path : ':memory:' } )
await ctx . plugin ( ToolSessionQuery )
} ,
note :
2026-07-25 18:14:36 +08:00
'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.' ,
2026-07-24 15:09:55 +08:00
} ,
2026-07-02 02:20:24 +08:00
{
pkg : '@deepseek-ai/dsh-tool-subagent' ,
dir : 'tool-subagent' ,
source : 'packages/subagent/tool-subagent/src/index.ts' ,
2026-07-05 01:25:58 +08:00
requires : [ 'ctx.tools' , 'ctx.subagents' ] ,
writes : [ 'tool/call' , 'tool/result' , 'child session events through the chosen provider' ] ,
shippedNames : [ 'subagent' , 'subagent_fork' ] ,
2026-07-02 02:20:24 +08:00
async mount ( ctx ) {
await ctx . plugin ( SubagentService )
2026-07-19 11:54:37 +08:00
registerCatalogSubagentProvider ( ctx , 'mock' )
2026-07-02 02:20:24 +08:00
await ctx . plugin ( ToolSubagent , { provider : 'mock' } )
} ,
2026-07-02 03:16:17 +08:00
note :
2026-07-20 19:26:04 +08:00
'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 `examples/tui-agent/cordis.yml` and `examples/acp-agent/cordis.yml`.' ,
2026-07-02 02:20:24 +08:00
} ,
2026-07-09 21:22:54 +08:00
{
pkg : '@deepseek-ai/dsh-tool-tasks' ,
dir : 'tool-tasks' ,
source : 'packages/tasks/tool-tasks/src/index.ts' ,
requires : [ 'ctx.tools' , 'ctx.tasks' , 'ctx.systemPrompt' ] ,
2026-07-23 19:15:45 +08:00
writes : [ 'tool/call' , 'tool/result' , 'user/message via agent.inject() for background completion notices' ] ,
2026-07-09 21:22:54 +08:00
async mount ( ctx ) {
2026-07-26 05:13:39 +08:00
await ctx . plugin ( LocalTaskService )
2026-07-09 21:22:54 +08:00
await ctx . plugin ( ToolTasks )
} ,
note :
2026-07-22 21:12:16 +08:00
'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()`.' ,
2026-07-09 21:22:54 +08:00
} ,
2026-07-02 02:20:24 +08:00
{
pkg : '@deepseek-ai/dsh-tool-todo' ,
dir : 'tool-todo' ,
source : 'packages/todo/tool-todo/src/index.ts' ,
2026-07-05 01:25:58 +08:00
requires : [ 'ctx.tools' , 'owning Agent session' ] ,
writes : [ 'tool/call' , 'todo/write' , 'tool/result' ] ,
2026-07-02 02:20:24 +08:00
async mount ( ctx ) {
await ctx . plugin ( ToolTodo )
} ,
2026-07-05 01:25:58 +08:00
note :
2026-07-24 01:40:25 +08:00
'todo_write is session-owned state; UIs render the latest todo/write event as a checklist.' ,
2026-07-02 02:20:24 +08:00
} ,
2026-07-05 13:29:35 +08:00
{
pkg : '@deepseek-ai/dsh-tool-workflow' ,
dir : 'tool-workflow' ,
source : 'packages/workflow/tool-workflow/src/index.ts' ,
2026-07-06 03:14:07 +08:00
requires : [ 'ctx.tools' , 'ctx.workflows' , 'ctx.systemPrompt' , 'a calling Agent (exec.agent parents the script children)' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
2026-07-05 13:29:35 +08:00
async mount ( ctx ) {
// The tool injects `workflows`; boot the vm engine over a scripted
// subagent provider to satisfy it. The schema does not depend on which
// provider backs the engine.
await ctx . plugin ( SubagentService )
2026-07-19 11:54:37 +08:00
registerCatalogSubagentProvider ( ctx , 'mock' )
2026-07-05 13:29:35 +08:00
await ctx . plugin ( VmWorkflowEngine , { provider : 'mock' } )
await ctx . plugin ( ToolWorkflow )
2026-07-02 02:20:24 +08:00
} ,
} ,
2026-07-03 16:49:00 +08:00
{
pkg : '@deepseek-ai/dsh-tool-web' ,
dir : 'tool-web' ,
source : 'packages/web/tool-web/src/index.ts' ,
2026-07-05 01:25:58 +08:00
requires : [ 'ctx.tools' , 'ctx.web' , 'ctx.systemPrompt' ] ,
writes : [ 'tool/call' , 'tool/result' ] ,
2026-07-03 16:49:00 +08:00
async mount ( ctx ) {
2026-07-13 23:27:00 +08:00
// Mount search and fetch providers so both tools register. Their schemas
// do not depend on provider identity or availability.
2026-07-03 16:49:00 +08:00
await ctx . plugin ( WebService )
await ctx . plugin ( WebSearchExa )
await ctx . plugin ( WebFetchLocal )
await ctx . plugin ( ToolWeb )
} ,
2026-07-05 01:25:58 +08:00
note :
'web_search and web_fetch keep provider selection behind ctx.web so model-visible schemas stay stable across backend swaps.' ,
2026-07-03 16:49:00 +08:00
} ,
2026-07-02 02:20:24 +08:00
]
/** One package's contribution to the catalog: its schemas plus attribution. */
interface CatalogPackage {
pkg : string
source : string
2026-07-05 01:25:58 +08:00
requires : string [ ]
writes : string [ ]
shippedNames? : string [ ]
2026-07-02 02:20:24 +08:00
schemas : ToolSchema [ ]
2026-07-02 03:16:17 +08:00
/** A deployment note (see {@link ToolPackage.note}), rendered after the tools. */
note? : string
2026-07-02 02:20:24 +08:00
}
/** The whole catalog: one entry per booted tool package, in manifest order. */
export type ToolCatalog = CatalogPackage [ ]
/**
* Assert the boot manifest covers every shipped tool package on disk (a
* `tool-*` leaf under `packages/`).
* Booting has no source declaration to enumerate, so this glob restores the
* "a new tool cannot be silently undocumented" guarantee: an unlisted package
* fails the generator (and the freshness gate) until it is added to
* {@link TOOL_PACKAGES}. Exported for a direct negative test.
*
* `scanRoot` defaults to the repo root; a test may point it at a fixture tree.
*/
export function assertManifestComplete ( packages : ToolPackage [ ] = TOOL_PACKAGES , scanRoot : string = root ) : void {
const onDisk = globSync ( 'packages/*/tool-*' , { cwd : scanRoot } ) . map ( p = > basename ( p ) ) . sort ( )
const listed = new Set ( packages . map ( p = > p . dir ) )
const missing = onDisk . filter ( dir = > ! listed . has ( dir ) )
if ( missing . length > 0 ) {
throw new Error (
` gen-tool-catalog: ${ missing . length } tool package(s) not in the boot manifest: ${ missing . join ( ', ' ) } . `
+ 'Add each to TOOL_PACKAGES in scripts/gen-tool-catalog.ts so its schema is catalogued.' ,
)
}
}
/**
* Boot each tool package on a fresh Context and harvest its model-facing
* schemas. A fresh Context per package keeps attribution clean (each entry's
* schemas come from exactly that package) and isolates a boot failure to its
* own entry. Disposed after harvest so no executor/provider outlives the run.
*/
export async function collectToolCatalog ( packages : ToolPackage [ ] = TOOL_PACKAGES ) : Promise < ToolCatalog > {
assertManifestComplete ( packages )
const catalog : ToolCatalog = [ ]
for ( const entry of packages ) {
const ctx = new Context ( )
2026-07-02 03:16:17 +08:00
// Dispose in `finally` so a throw from `mount`/`schemas()` after earlier
// plugins mounted still tears the context down (no leaked executor/provider
// fiber) — the repo's "dispose must reach quiescence" rule.
try {
await ctx . plugin ( SystemPrompt )
2026-07-08 12:58:23 +08:00
await ctx . plugin ( ToolRegistry , entry . toolsConfig ? ? { } )
2026-07-02 03:16:17 +08:00
await entry . mount ( ctx )
const schemas = ctx . tools . schemas ( ) . sort ( ( a , b ) = > a . name . localeCompare ( b . name ) )
2026-07-05 01:25:58 +08:00
catalog . push ( {
pkg : entry.pkg ,
source : entry.source ,
requires : entry.requires ,
writes : entry.writes ,
schemas ,
. . . entry . shippedNames !== undefined ? { shippedNames : entry.shippedNames } : { } ,
. . . entry . note !== undefined ? { note : entry.note } : { } ,
} )
2026-07-02 03:16:17 +08:00
} finally {
await ctx . fiber . dispose ( )
}
2026-07-02 02:20:24 +08:00
}
return catalog
}
/** Render one tool's entry: name, description, JSON-Schema parameters, source. */
function renderTool ( schema : ToolSchema , source : string ) : string [ ] {
const out = [ ` ### \` ${ schema . name } \` ` , '' ]
if ( schema . description ) out . push ( schema . description , '' )
out . push ( '```json' , JSON . stringify ( schema . parameters , null , 2 ) , '```' , '' )
2026-07-06 22:26:06 +08:00
out . push ( ` Source: [ \` ${ source } \` ](../ ${ source } ) ` , '' )
2026-07-02 02:20:24 +08:00
return out
}
2026-07-05 01:25:58 +08:00
function codeList ( values : string [ ] | undefined ) : string {
return values ? . length ? values . map ( value = > ` \` ${ value } \` ` ) . join ( ', ' ) : '-'
}
function tableCell ( value : string | undefined ) : string {
return value ? value . replace ( /\|/g , '\\|' ) . replace ( /\n/g , '<br>' ) : '-'
}
2026-07-02 02:20:24 +08:00
/** Render the full catalog (pure, deterministic given the manifest-ordered input). */
export function render ( catalog : ToolCatalog ) : string {
const lines : string [ ] = [
'<!-- Generated by scripts/gen-tool-catalog.ts — do not edit by hand.' ,
' Run `pnpm run gen-tool-catalog` to regenerate. -->' ,
'' ,
'# Tool Schema Catalog' ,
'' ,
2026-07-06 22:26:06 +08:00
'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.' ,
2026-07-02 02:20:24 +08:00
'' ,
2026-07-19 22:50:49 +08:00
'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).' ,
2026-07-02 02:20:24 +08:00
'' ,
2026-07-02 03:16:17 +08:00
'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.' ,
2026-07-02 02:20:24 +08:00
'' ,
2026-07-05 01:25:58 +08:00
'## Tool Package Map' ,
'' ,
'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.' ,
'' ,
'| Tool package | Model-visible names | Requires | Writes / affects | Shipped aliases | Deployment note |' ,
'| --- | --- | --- | --- | --- | --- |' ,
. . . catalog . map ( entry = > ` | \` ${ entry . pkg } \` | ${ codeList ( entry . schemas . map ( schema = > schema . name ) ) } | ${ codeList ( entry . requires ) } | ${ codeList ( entry . writes ) } | ${ codeList ( entry . shippedNames ) } | ${ tableCell ( entry . note ) } | ` ) ,
'' ,
2026-07-02 02:20:24 +08:00
]
for ( const entry of catalog ) {
lines . push ( ` ## \` ${ entry . pkg } \` ` , '' )
for ( const schema of entry . schemas ) lines . push ( . . . renderTool ( schema , entry . source ) )
2026-07-02 03:16:17 +08:00
if ( entry . note ) lines . push ( entry . note , '' )
2026-07-02 02:20:24 +08:00
}
return lines . join ( '\n' )
}
/** CLI entry: default writes the catalog, `--check` fails if the committed copy
* is stale. Guarded behind an entry-point check so importing this module for
* tests neither regenerates the committed file nor calls process.exit. */
async function main ( ) : Promise < void > {
const content = render ( await collectToolCatalog ( ) )
if ( process . argv . includes ( '--check' ) ) {
let committed : string | null = null
try {
committed = readFileSync ( resolve ( root , OUT ) , 'utf8' )
} catch {
// Only ENOENT (not yet generated) is expected; a present-but-unreadable
// file is not a state this repo produces. Either way the remedy is the
// same — regenerate — so treat a read failure as "stale".
committed = null
}
if ( committed === content ) {
console . log ( ` gen-tool-catalog: ${ OUT } is up to date. ` )
process . exit ( 0 )
}
console . error ( ` gen-tool-catalog: ${ OUT } is stale. Run \` pnpm run gen-tool-catalog \` and commit ${ OUT } . ` )
process . exit ( 1 )
}
writeFileSync ( resolve ( root , OUT ) , content )
console . log ( ` gen-tool-catalog: wrote ${ OUT } . ` )
}
// Run only when invoked as a script, not when imported by a test.
if ( process . argv [ 1 ] && import . meta . filename === resolve ( process . argv [ 1 ] ) ) {
await main ( )
}