gen-doc-graphs.ts 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835
  1. /**
  2. * Generate (and verify) the relationship-diagram docs.
  3. *
  4. * This is the relationship layer above the existing catalogs:
  5. * - module-graph.md answers "which packages depend on which packages?"
  6. * - cordis-catalog/ answers "which events and services exist?"
  7. * - tool-catalog.md answers "which tools does the model see?"
  8. * - generated relationship diagrams answer "how do those pieces fit together?"
  9. *
  10. * Generated pages discover the enumerable facts from source. Hybrid pages use
  11. * discovered inventory plus small manifests for policy that source cannot infer
  12. * (for example, whether a package is an implementation or consumer in a seam).
  13. * Curated pages are still emitted here so the graph docs are one regenerated unit,
  14. * but their diagrams intentionally explain flow and ownership rather than
  15. * pretending to enumerate every source edge.
  16. *
  17. * `tsx scripts/gen-doc-graphs.ts` -> write generated diagram docs
  18. * `tsx scripts/gen-doc-graphs.ts --check` -> exit 1 if any file is stale
  19. */
  20. import { existsSync, globSync, mkdirSync, readFileSync, writeFileSync } from 'node:fs'
  21. import { dirname, relative, resolve } from 'node:path'
  22. import ts from 'typescript'
  23. import { collectEvents, collectServices } from './gen-cordis-catalog.ts'
  24. const root = resolve(import.meta.dirname, '..')
  25. const SCOPE = '@deepseek-ai/dsh-'
  26. interface PkgJson {
  27. name: string
  28. peerDependencies?: Record<string, string>
  29. }
  30. interface Pkg {
  31. short: string
  32. name: string
  33. group: string
  34. rel: string
  35. deps: string[]
  36. }
  37. interface GraphDoc {
  38. rel: string
  39. content: string
  40. }
  41. interface ServiceRole {
  42. key: string
  43. pkg: string
  44. title: string
  45. mode: 'core' | 'seam' | 'bundle'
  46. implementations?: string[]
  47. consumers?: string[]
  48. companions?: string[]
  49. note: string
  50. }
  51. interface ExamplePlugin {
  52. id: string
  53. name: string
  54. }
  55. interface EventRelation {
  56. dispatchers: Map<string, Set<string>>
  57. listeners: Set<string>
  58. }
  59. const GROUP_ORDER = [
  60. 'util',
  61. 'llm',
  62. 'core',
  63. 'bash',
  64. 'fs',
  65. 'skill',
  66. 'compact',
  67. 'subagent',
  68. 'web',
  69. 'todo',
  70. 'cordis',
  71. 'hooks',
  72. 'session-persistence',
  73. 'support',
  74. 'ui',
  75. ]
  76. const SERVICE_ROLES: ServiceRole[] = [
  77. {
  78. key: 'llm',
  79. pkg: 'llm',
  80. title: 'LLM adapter registry',
  81. mode: 'seam',
  82. implementations: ['llm-deepseek', 'llm-pi-ai', 'llm-replay'],
  83. consumers: ['agent-loop', 'compact-basic'],
  84. note: 'Adapters register provider implementations; the loop and compaction call the provider-neutral stream service.',
  85. },
  86. {
  87. key: 'sessions',
  88. pkg: 'session',
  89. title: 'In-memory session store',
  90. mode: 'core',
  91. consumers: ['agent-loop', 'agent', 'session-persistence', 'subagent-inprocess', 'invariants'],
  92. note: 'Owns append-only Session instances and emits the durable session event feed.',
  93. },
  94. {
  95. key: 'sessionPersistence',
  96. pkg: 'session-persistence',
  97. title: 'Durable session persistence seam',
  98. mode: 'seam',
  99. implementations: ['session-persistence-jsonl', 'session-persistence-sqlite'],
  100. consumers: ['agent-loop', 'acp'],
  101. note: 'Backends persist the same SessionEvent vocabulary; apps choose a backend at composition time.',
  102. },
  103. {
  104. key: 'systemPrompt',
  105. pkg: 'system-prompt',
  106. title: 'System prompt assembly registry',
  107. mode: 'core',
  108. consumers: ['agent-loop', 'tools', 'tool-fs', 'tool-web'],
  109. note: 'Collects prompt sections and model-facing tool schemas for each step.',
  110. },
  111. {
  112. key: 'tools',
  113. pkg: 'tools',
  114. title: 'Tool registry and execution waterfall',
  115. mode: 'core',
  116. consumers: ['agent-loop', 'tool-ask-user', 'tool-bash', 'tool-cordis', 'tool-fs', 'tool-skill', 'tool-subagent', 'tool-todo', 'tool-web', 'acp'],
  117. note: 'Registers tool definitions, exposes schemas to the prompt, and routes calls through tools/pre-execute and tools/post-execute.',
  118. },
  119. {
  120. key: 'userInteraction',
  121. pkg: 'user-interaction',
  122. title: 'Human question/answer seam',
  123. mode: 'seam',
  124. implementations: ['stdio-agent', 'acp'],
  125. consumers: ['tool-ask-user', 'stdio-agent', 'acp'],
  126. note: 'UI front doors provide the active human-answer provider; tool-ask-user pauses a tool call on the provider-neutral ask() promise.',
  127. },
  128. {
  129. key: 'skills',
  130. pkg: 'skill',
  131. title: 'Skill provider registry',
  132. mode: 'seam',
  133. implementations: ['skill-local'],
  134. consumers: ['tool-skill'],
  135. note: 'Merges provider skill catalogs; tool-skill renders the session-prefix catalog and loads complete skill bodies.',
  136. },
  137. {
  138. key: 'agents',
  139. pkg: 'agent',
  140. title: 'Agent registry',
  141. mode: 'core',
  142. consumers: ['agent-loop', 'acp', 'subagent-inprocess', 'stdio-agent', 'invariants'],
  143. note: 'Owns live Agent handles and the create/resume factory seam.',
  144. },
  145. {
  146. key: 'agentLoop',
  147. pkg: 'agent-loop',
  148. title: 'Concrete loop driver',
  149. mode: 'bundle',
  150. consumers: ['agent-core'],
  151. note: 'The one concrete loop plugin; extension packages depend on dsh-agent events and services, not on this package.',
  152. },
  153. {
  154. key: 'bash',
  155. pkg: 'bash',
  156. title: 'Bash executor seam',
  157. mode: 'seam',
  158. implementations: ['bash-local'],
  159. consumers: ['tool-bash', 'hooks-claude', 'hooks-codex'],
  160. note: 'The model-facing bash tools and hook bridges consume this seam; sandboxed or remote executors can replace bash-local.',
  161. },
  162. {
  163. key: 'codeRuntime',
  164. pkg: 'code-runtime',
  165. title: 'Code-execution seam',
  166. mode: 'seam',
  167. implementations: ['code-runtime-worker'],
  168. consumers: ['tools'],
  169. note: 'Runs one model-written program against host-provided async bindings; backends differ by substrate and language (the tool registry consumes it for Code Mode).',
  170. },
  171. {
  172. key: 'fs',
  173. pkg: 'fs',
  174. title: 'Filesystem provider seam',
  175. mode: 'seam',
  176. implementations: ['fs-local'],
  177. consumers: ['tool-fs'],
  178. companions: ['fs-policy'],
  179. note: 'tool-fs executes read/write/edit through ctx.fs; fs-policy contributes observed-state checks through the fs/* event gate.',
  180. },
  181. {
  182. key: 'compact',
  183. pkg: 'compact',
  184. title: 'Compaction seam',
  185. mode: 'seam',
  186. implementations: ['compact-basic'],
  187. consumers: ['compact-basic'],
  188. note: 'The basic backend currently consumes the pre-step event directly; a model-facing compact tool remains deferred.',
  189. },
  190. {
  191. key: 'subagents',
  192. pkg: 'subagent',
  193. title: 'Subagent provider registry',
  194. mode: 'seam',
  195. implementations: ['subagent-spawn', 'subagent-fork', 'subagent-acp', 'subagent-mock'],
  196. consumers: ['tool-subagent'],
  197. note: 'Providers implement transports; tool-subagent exposes one configured provider as a model-facing tool name.',
  198. },
  199. {
  200. key: 'web',
  201. pkg: 'web',
  202. title: 'Web access provider registry',
  203. mode: 'seam',
  204. implementations: ['web-search-exa', 'web-search-perplexity', 'web-search-deepseek', 'web-fetch-local'],
  205. consumers: ['tool-web'],
  206. note: 'Search and fetch providers register into one ctx.web seam; tool-web owns the stable model-facing names.',
  207. },
  208. {
  209. key: 'workflows',
  210. pkg: 'workflow',
  211. title: 'Workflow script engine',
  212. mode: 'seam',
  213. implementations: ['workflow-workerthread'],
  214. consumers: ['tool-workflow'],
  215. note: 'One engine per context (bash shape, no named-provider registry); the worker-thread engine fans agent() calls out through ctx.subagents.',
  216. },
  217. ]
  218. const DYNAMIC_EVENT_DISPATCHERS: Array<{ event: string; pkg: string; method: string }> = [
  219. // Subagent lifecycle events intentionally bypass ctx.emit and call
  220. // ctx.events.dispatch directly so one throwing listener cannot starve later
  221. // listeners or strand an already-started child run.
  222. { event: 'subagent/start', pkg: 'subagent', method: 'events.dispatch' },
  223. { event: 'subagent/end', pkg: 'subagent', method: 'events.dispatch' },
  224. // The workflow/* lifecycle events dispatch the same way, for the same
  225. // per-listener-containment reason (WorkflowService.emitWorkflowEvent).
  226. { event: 'workflow/start', pkg: 'workflow', method: 'events.dispatch' },
  227. { event: 'workflow/phase', pkg: 'workflow', method: 'events.dispatch' },
  228. { event: 'workflow/log', pkg: 'workflow', method: 'events.dispatch' },
  229. { event: 'workflow/agent-start', pkg: 'workflow', method: 'events.dispatch' },
  230. { event: 'workflow/agent-end', pkg: 'workflow', method: 'events.dispatch' },
  231. { event: 'workflow/end', pkg: 'workflow', method: 'events.dispatch' },
  232. ]
  233. function generatedHeader(title: string): string[] {
  234. return [
  235. '<!-- Generated by scripts/gen-doc-graphs.ts - do not edit by hand.',
  236. ' Run `pnpm run gen-doc-graphs` to regenerate. -->',
  237. '',
  238. `# ${title}`,
  239. '',
  240. ]
  241. }
  242. function maintenanceFooter(source: string): string[] {
  243. return [`Maintenance mode: ${source}.`, '']
  244. }
  245. function graphIndexLink(rel: string): string {
  246. return relative('docs', rel).replaceAll('\\', '/')
  247. }
  248. function linkFromDoc(docRel: string, targetRel: string): string {
  249. return relative(dirname(docRel), targetRel).replaceAll('\\', '/')
  250. }
  251. function collectPackages(): Pkg[] {
  252. const pkgs: Pkg[] = []
  253. for (const rel of globSync('packages/*/*/package.json', { cwd: root }).sort()) {
  254. const json = JSON.parse(readFileSync(resolve(root, rel), 'utf8')) as PkgJson
  255. if (!json.name.startsWith(SCOPE)) continue
  256. const [, group, leaf] = rel.split('/')
  257. if (group === undefined || leaf === undefined) throw new Error(`gen-doc-graphs: unexpected package path ${rel}`)
  258. const deps = Object.keys(json.peerDependencies ?? {})
  259. .filter(dep => dep.startsWith(SCOPE))
  260. .map(dep => dep.slice(SCOPE.length))
  261. .sort()
  262. pkgs.push({
  263. short: json.name.slice(SCOPE.length),
  264. name: json.name,
  265. group,
  266. rel: dirname(rel),
  267. deps,
  268. })
  269. }
  270. return topoSort(pkgs)
  271. }
  272. function topoSort(pkgs: Pkg[]): Pkg[] {
  273. const remaining = new Map(pkgs.map(p => [p.short, p]))
  274. const placed = new Set<string>()
  275. const out: Pkg[] = []
  276. while (remaining.size > 0) {
  277. const ready = [...remaining.values()]
  278. .filter(pkg => pkg.deps.every(dep => placed.has(dep)))
  279. .sort(comparePackages)
  280. if (ready.length === 0) throw new Error(`gen-doc-graphs: dependency cycle among ${[...remaining.keys()].join(', ')}`)
  281. for (const pkg of ready) {
  282. out.push(pkg)
  283. placed.add(pkg.short)
  284. remaining.delete(pkg.short)
  285. }
  286. }
  287. return out
  288. }
  289. function comparePackages(a: Pkg, b: Pkg): number {
  290. const groupA = GROUP_ORDER.indexOf(a.group)
  291. const groupB = GROUP_ORDER.indexOf(b.group)
  292. const normA = groupA === -1 ? Number.MAX_SAFE_INTEGER : groupA
  293. const normB = groupB === -1 ? Number.MAX_SAFE_INTEGER : groupB
  294. return normA - normB || a.group.localeCompare(b.group) || a.short.localeCompare(b.short)
  295. }
  296. function nodeId(prefix: string, value: string): string {
  297. return `${prefix}_${value.replace(/[^a-zA-Z0-9_]/g, '_')}`
  298. }
  299. function escLabel(value: string): string {
  300. return value.replace(/"/g, '\\"')
  301. }
  302. function mermaidCode(value: string): string {
  303. return `<code>${value.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;')}</code>`
  304. }
  305. function repoLink(path: string, label: string, up = '..'): string {
  306. return `[${label}](${up}/${path})`
  307. }
  308. function sourceLink(source: string, up = '..'): string {
  309. return repoLink(source.split(':')[0] ?? source, `\`${source}\``, up)
  310. }
  311. function pkgLink(pkg: Pkg | undefined, fallback: string, up = '..'): string {
  312. return pkg ? repoLink(pkg.rel, `\`${pkg.short}\``, up) : `\`${fallback}\``
  313. }
  314. function pkgList(names: string[] | undefined, pkgsByShort: Map<string, Pkg>): string {
  315. if (!names || names.length === 0) return '-'
  316. return names.map(name => pkgLink(pkgsByShort.get(name), name)).join(', ')
  317. }
  318. function tableCell(value: string): string {
  319. return value.replace(/\|/g, '\\|').replace(/\n/g, '<br>')
  320. }
  321. function assertServiceRolesComplete(): void {
  322. const discovered = new Set(collectServices().map(service => service.key))
  323. const classified = new Set(SERVICE_ROLES.map(role => role.key))
  324. const missing = [...discovered].filter(key => !classified.has(key)).sort()
  325. const stale = [...classified].filter(key => !discovered.has(key)).sort()
  326. if (missing.length || stale.length) {
  327. throw new Error([
  328. missing.length ? `missing service role classification: ${missing.join(', ')}` : '',
  329. stale.length ? `stale service role classification: ${stale.join(', ')}` : '',
  330. ].filter(Boolean).join('; '))
  331. }
  332. }
  333. function renderCapabilitySeams(pkgs: Pkg[]): string {
  334. assertServiceRolesComplete()
  335. const pkgsByShort = new Map(pkgs.map(pkg => [pkg.short, pkg]))
  336. const maintenance = 'hybrid: services are discovered from Cordis declarations; interface/implementation/consumer roles are classified in `scripts/gen-doc-graphs.ts` with a completeness guard'
  337. const nodes = new Map<string, string>()
  338. const edges = new Set<string>()
  339. const companionEdges = new Set<string>()
  340. const addNode = (id: string, label: string): void => {
  341. if (!nodes.has(id)) nodes.set(id, ` ${id}["${escLabel(label)}"]`)
  342. }
  343. const addEdge = (from: string, to: string): void => { edges.add(` ${from} --> ${to}`) }
  344. const lines = generatedHeader('Capability Seams And Core Services')
  345. lines.push(
  346. 'A service can be a core spine service, a swappable capability seam, or a bundle/composition point. The graph shows the package that owns the service declaration, known implementation packages, and packages that consume the service directly.',
  347. '',
  348. '```mermaid',
  349. 'flowchart LR',
  350. )
  351. for (const role of SERVICE_ROLES) {
  352. const svc = nodeId('svc', role.key)
  353. const owner = nodeId('pkg', role.pkg)
  354. addNode(owner, role.pkg)
  355. addNode(svc, `ctx.${role.key}<br/>${role.title}`)
  356. addEdge(owner, svc)
  357. for (const impl of role.implementations ?? []) {
  358. addNode(nodeId('pkg', impl), impl)
  359. addEdge(nodeId('pkg', impl), svc)
  360. }
  361. for (const consumer of role.consumers ?? []) {
  362. addNode(nodeId('pkg', consumer), consumer)
  363. addEdge(svc, nodeId('pkg', consumer))
  364. }
  365. for (const companion of role.companions ?? []) {
  366. addNode(nodeId('pkg', companion), companion)
  367. companionEdges.add(` ${svc} -. event gate .-> ${nodeId('pkg', companion)}`)
  368. }
  369. }
  370. lines.push(...nodes.values(), ...[...edges].sort(), ...[...companionEdges].sort())
  371. lines.push('```', '', '| ctx key | Role | Owner | Implementations | Direct consumers | Companion plugins | Note |', '| --- | --- | --- | --- | --- | --- | --- |')
  372. for (const role of SERVICE_ROLES) {
  373. lines.push(`| \`ctx.${role.key}\` | \`${role.mode}\` | ${pkgLink(pkgsByShort.get(role.pkg), role.pkg)} | ${pkgList(role.implementations, pkgsByShort)} | ${pkgList(role.consumers, pkgsByShort)} | ${pkgList(role.companions, pkgsByShort)} | ${tableCell(role.note)} |`)
  374. }
  375. lines.push('', ...maintenanceFooter(maintenance))
  376. return lines.join('\n')
  377. }
  378. function parseExampleCordis(rel: string): ExamplePlugin[] {
  379. const text = readFileSync(resolve(root, rel), 'utf8')
  380. const plugins: ExamplePlugin[] = []
  381. let current: { id: string; name?: string } | null = null
  382. const flush = (): void => {
  383. if (current?.name) plugins.push({ id: current.id, name: current.name })
  384. }
  385. for (const line of text.split('\n')) {
  386. const id = /^-\s+id:\s+(.+?)\s*$/.exec(line)
  387. if (id?.[1] !== undefined) {
  388. flush()
  389. current = { id: stripYamlScalar(id[1]) }
  390. continue
  391. }
  392. const name = /^\s+name:\s+(.+?)\s*$/.exec(line)
  393. if (name?.[1] !== undefined && current) current.name = stripYamlScalar(name[1])
  394. }
  395. flush()
  396. return plugins
  397. }
  398. function stripYamlScalar(value: string): string {
  399. return value.trim().replace(/^['"]|['"]$/g, '')
  400. }
  401. const APP_EXAMPLES = [
  402. {
  403. id: 'echo',
  404. rel: 'examples/echo-agent/composition.md',
  405. title: 'Echo Agent App Composition',
  406. label: 'examples/echo-agent',
  407. config: 'examples/echo-agent/cordis.yml',
  408. summary: 'The echo demo swaps in a local mock LLM and teaching echo tool, then loads the stdio app package for the shared spine and terminal front door.',
  409. },
  410. {
  411. id: 'coding',
  412. rel: 'examples/coding-agent/composition.md',
  413. title: 'Coding Agent App Composition',
  414. label: 'examples/coding-agent',
  415. config: 'examples/coding-agent/cordis.yml',
  416. summary: 'The coding REPL demo adds the real DeepSeek adapter, filesystem tools, todo_write, compaction, and both subagent transports on top of the stdio app package.',
  417. },
  418. {
  419. id: 'cordis',
  420. rel: 'examples/cordis-agent/composition.md',
  421. title: 'Cordis Agent App Composition',
  422. label: 'examples/cordis-agent',
  423. config: 'examples/cordis-agent/cordis.yml',
  424. summary: 'The self-referential demo puts @deepseek-ai/dsh-tool-cordis on the coding spine, letting the agent inspect its own runtime and mount/unmount plugins into it.',
  425. },
  426. {
  427. id: 'acp',
  428. rel: 'examples/acp-agent/composition.md',
  429. title: 'ACP Agent App Composition',
  430. label: 'examples/acp-agent',
  431. config: 'examples/acp-agent/cordis.yml',
  432. summary: 'The ACP demo exposes the same agent spine over JSON-RPC stdio, with no stdout logger and no pre-created agent; clients create sessions through the ACP bridge.',
  433. },
  434. ]
  435. type AppExample = typeof APP_EXAMPLES[number]
  436. function renderAppExpansion(lines: string[], appNode: string, pluginName: string): void {
  437. const agentCore = nodeId('bundle', 'agent_core')
  438. const jsonl = nodeId('bundle', 'jsonl')
  439. lines.push(` ${appNode} --> ${agentCore}["@deepseek-ai/dsh-agent-core"]`)
  440. lines.push(` ${appNode} --> ${jsonl}["@deepseek-ai/dsh-session-persistence-jsonl"]`)
  441. if (pluginName === '@deepseek-ai/dsh-stdio-agent') {
  442. lines.push(` ${appNode} --> ${nodeId('frontdoor', 'stdio')}["readline UI<br/>console logger<br/>pre-created main agent"]`)
  443. } else if (pluginName === '@deepseek-ai/dsh-acp-agent') {
  444. lines.push(` ${appNode} --> ${nodeId('frontdoor', 'acp')}["@deepseek-ai/dsh-acp<br/>JSON-RPC stdio bridge<br/>sessions created by client"]`)
  445. }
  446. lines.push(
  447. ` ${agentCore} --> ${nodeId('spine', 'llm')}["ctx.llm"]`,
  448. ` ${agentCore} --> ${nodeId('spine', 'sessions')}["ctx.sessions"]`,
  449. ` ${agentCore} --> ${nodeId('spine', 'tools')}["ctx.tools + tool-bash"]`,
  450. ` ${agentCore} --> ${nodeId('spine', 'loop')}["ctx.agents + ctx.agentLoop"]`,
  451. )
  452. }
  453. function renderAppComposition(example: AppExample): string {
  454. const plugins = parseExampleCordis(example.config)
  455. const maintenance = 'hybrid: the leaf plugin list is parsed from its `cordis.yml`; app package expansion is curated from package source'
  456. const lines = generatedHeader(example.title)
  457. lines.push(
  458. example.summary,
  459. '',
  460. '```mermaid',
  461. 'flowchart LR',
  462. ` cfg["${escLabel(example.label)}<br/>cordis.yml"]`,
  463. )
  464. for (const plugin of plugins) {
  465. const pluginNode = nodeId(`plugin_${example.id}`, plugin.id)
  466. lines.push(` ${pluginNode}["${escLabel(plugin.id)}<br/>${escLabel(plugin.name)}"]`)
  467. lines.push(` cfg --> ${pluginNode}`)
  468. if (plugin.name === '@deepseek-ai/dsh-stdio-agent' || plugin.name === '@deepseek-ai/dsh-acp-agent') {
  469. renderAppExpansion(lines, pluginNode, plugin.name)
  470. }
  471. }
  472. lines.push(
  473. '```',
  474. '',
  475. '| Plugin id | Package / module |',
  476. '| --- | --- |',
  477. ...plugins.map(plugin => `| \`${plugin.id}\` | \`${plugin.name}\` |`),
  478. '',
  479. `Source config: [\`${example.config}\`](${linkFromDoc(example.rel, example.config)}).`,
  480. )
  481. lines.push('', ...maintenanceFooter(maintenance))
  482. return lines.join('\n')
  483. }
  484. function collectEventRelations(): Map<string, EventRelation> {
  485. const out = new Map<string, EventRelation>()
  486. const ensure = (event: string): EventRelation => {
  487. const existing = out.get(event)
  488. if (existing) return existing
  489. const next = { dispatchers: new Map<string, Set<string>>(), listeners: new Set<string>() }
  490. out.set(event, next)
  491. return next
  492. }
  493. for (const rel of globSync('packages/*/*/src/**/*.ts', { cwd: root }).sort()) {
  494. const [, , leaf] = rel.split('/')
  495. if (leaf === undefined) continue
  496. const text = readFileSync(resolve(root, rel), 'utf8')
  497. const sf = ts.createSourceFile(rel, text, ts.ScriptTarget.Latest, true)
  498. const visit = (node: ts.Node): void => {
  499. if (ts.isCallExpression(node) && ts.isPropertyAccessExpression(node.expression)) {
  500. const method = node.expression.name.text
  501. if (!isCordisContextReceiver(node.expression, sf)) {
  502. ts.forEachChild(node, visit)
  503. return
  504. }
  505. if (method === 'on') {
  506. const event = eventArg(node.arguments, method)
  507. if (event) ensure(event).listeners.add(leaf)
  508. } else if (method === 'emit' || method === 'parallel' || method === 'serial' || method === 'waterfall') {
  509. const event = eventArg(node.arguments, method)
  510. if (event) {
  511. const relation = ensure(event)
  512. const methods = relation.dispatchers.get(leaf) ?? new Set<string>()
  513. methods.add(method)
  514. relation.dispatchers.set(leaf, methods)
  515. }
  516. }
  517. }
  518. ts.forEachChild(node, visit)
  519. }
  520. visit(sf)
  521. }
  522. for (const entry of DYNAMIC_EVENT_DISPATCHERS) {
  523. const relation = ensure(entry.event)
  524. const methods = relation.dispatchers.get(entry.pkg) ?? new Set<string>()
  525. methods.add(entry.method)
  526. relation.dispatchers.set(entry.pkg, methods)
  527. }
  528. return out
  529. }
  530. function isCordisContextReceiver(expr: ts.PropertyAccessExpression, sf: ts.SourceFile): boolean {
  531. const target = expr.expression.getText(sf)
  532. return target === 'ctx' || target === 'this.ctx'
  533. }
  534. function eventArg(args: ts.NodeArray<ts.Expression>, method: string): string | undefined {
  535. if (method === 'waterfall') {
  536. const arg = args.find(ts.isStringLiteralLike)
  537. return arg?.text
  538. }
  539. const first = args[0]
  540. return first && ts.isStringLiteralLike(first) ? first.text : undefined
  541. }
  542. function relationPackages(map: Map<string, Set<string>>, pkgsByShort: Map<string, Pkg>): string {
  543. if (map.size === 0) return '-'
  544. return [...map.entries()]
  545. .sort(([a], [b]) => a.localeCompare(b))
  546. .map(([pkg, methods]) => `${pkgLink(pkgsByShort.get(pkg), pkg)} (${[...methods].sort().map(m => `\`${m}\``).join(', ')})`)
  547. .join(', ')
  548. }
  549. function listenerPackages(listeners: Set<string>, pkgsByShort: Map<string, Pkg>): string {
  550. if (listeners.size === 0) return '-'
  551. return [...listeners].sort().map(pkg => pkgLink(pkgsByShort.get(pkg), pkg)).join(', ')
  552. }
  553. function renderEventRelations(pkgs: Pkg[]): string {
  554. const events = collectEvents()
  555. const relations = collectEventRelations()
  556. const pkgsByShort = new Map(pkgs.map(pkg => [pkg.short, pkg]))
  557. const maintenance = 'hybrid generated: Cordis event declarations and most producer/listener edges are AST-scanned; dynamic dispatch sites are classified in `scripts/gen-doc-graphs.ts`'
  558. const lines = generatedHeader('Event Producer And Consumer Matrix')
  559. lines.push(
  560. 'This matrix shows which packages dispatch each harness-owned event and which packages listen to it. It is intentionally a table rather than one large graph: events are many-to-many, and dense relation data is easier to review in rows. Dynamic dispatch overrides cover sites that deliberately bypass `ctx.emit`, such as subagent lifecycle containment.',
  561. '',
  562. '| Event | Mode | Declared in | Dispatchers | Listeners |',
  563. '| --- | --- | --- | --- | --- |',
  564. )
  565. for (const event of [...events].sort((a, b) => a.name.localeCompare(b.name))) {
  566. const relation = relations.get(event.name) ?? { dispatchers: new Map<string, Set<string>>(), listeners: new Set<string>() }
  567. lines.push(`| \`${event.name}\` | \`${event.mode}\` | ${sourceLink(event.source)} | ${relationPackages(relation.dispatchers, pkgsByShort)} | ${listenerPackages(relation.listeners, pkgsByShort)} |`)
  568. }
  569. const declared = new Set(events.map(event => event.name))
  570. const extra = [...relations.keys()].filter(event => !declared.has(event)).sort()
  571. if (extra.length > 0) {
  572. lines.push('', '## Non-harness or undeclared event strings seen in package source', '', '| Event string | Dispatchers | Listeners |', '| --- | --- | --- |')
  573. for (const event of extra) {
  574. const relation = relations.get(event)
  575. if (!relation) continue
  576. lines.push(`| \`${event}\` | ${relationPackages(relation.dispatchers, pkgsByShort)} | ${listenerPackages(relation.listeners, pkgsByShort)} |`)
  577. }
  578. }
  579. lines.push('', ...maintenanceFooter(maintenance))
  580. return lines.join('\n')
  581. }
  582. function renderLifecycle(): string {
  583. const maintenance = 'curated Mermaid sequence; exact event signatures live in the generated Cordis catalog'
  584. return [
  585. ...generatedHeader('Agent Turn And Step Lifecycle'),
  586. 'This sequence is the visual companion to [architecture.md](architecture.md#loop-lifecycle-session--turn--step). It keeps durable replay facts on `session/event` and live control/status on `agent/*`.',
  587. '',
  588. '```mermaid',
  589. 'sequenceDiagram',
  590. ' participant User',
  591. ' participant Agent',
  592. ' participant Driver',
  593. ' participant Hooks as hook listeners',
  594. ' participant Prompt as ctx.systemPrompt',
  595. ' participant LLM as ctx.llm',
  596. ' participant Tools as ctx.tools',
  597. ' participant Session',
  598. ' participant Persistence',
  599. ' participant SDK as UI or SDK listener',
  600. ' User->>Agent: send(content)',
  601. ` Agent-->>SDK: ${mermaidCode('agent/queued')}`,
  602. ' Agent->>Driver: queued work wakes driver',
  603. ` Driver-->>SDK: ${mermaidCode('agent/status')} running`,
  604. ` Driver->>Session: ${mermaidCode('turn/start')}`,
  605. ` Driver->>Hooks: ${mermaidCode('agent/prompt-submit')} waterfall`,
  606. ' Hooks-->>Driver: allow, block, or add context',
  607. ` Driver->>Session: ${mermaidCode('user/message')} or rejected ${mermaidCode('turn/end')}`,
  608. ` Driver->>Prompt: ${mermaidCode('system-prompt/assemble')} waterfall`,
  609. ` Driver-->>Driver: ${mermaidCode('agent/pre-step')} serial checkpoint`,
  610. ` Driver->>Session: ${mermaidCode('step/start')}`,
  611. ` Driver->>LLM: ${mermaidCode('agent/request')} waterfall, then ${mermaidCode('llm/stream')} waterfall`,
  612. ' LLM-->>Driver: StreamChunk*',
  613. ` Driver->>Session: ${mermaidCode('assistant/chunk')}*`,
  614. ` Session-->>SDK: ${mermaidCode('session/event')} ${mermaidCode('assistant/chunk')}*`,
  615. ` Driver->>Hooks: ${mermaidCode('agent/step-result')} waterfall`,
  616. ` Driver->>Session: ${mermaidCode('assistant/message')}`,
  617. ` Driver->>Session: ${mermaidCode('tool/call')}`,
  618. ' Driver->>Tools: execute through pre and post waterfalls',
  619. ' Tools-->>Session: tool-owned events when applicable',
  620. ` Driver->>Session: ${mermaidCode('tool/result')} and ${mermaidCode('step/end')}`,
  621. ` Driver->>Hooks: ${mermaidCode('agent/turn-continuation')} waterfall`,
  622. ` Driver->>Session: ${mermaidCode('turn/end')}`,
  623. ` Driver->>Persistence: ${mermaidCode('session/flush')} parallel checkpoint`,
  624. ` Driver-->>SDK: ${mermaidCode('agent/status')} idle`,
  625. '```',
  626. '',
  627. 'SDK users that need replayable transcript data should consume `session/event`; `agent/*` is the live coordination surface for queue/status, prompt interception, request shaping, steering, continuation, and errors.',
  628. '',
  629. ...maintenanceFooter(maintenance),
  630. ].join('\n')
  631. }
  632. function renderToolPipeline(): string {
  633. const maintenance = 'curated Mermaid flow; exact tool schemas and event signatures live in generated catalogs'
  634. return [
  635. ...generatedHeader('Tool Execution Pipeline'),
  636. 'This graph shows where policy, hooks, sandboxing, filesystem guards, result rewriting, and UI rendering fit without changing the loop. The key extension points are the `tools/pre-execute`, `tools/execute`, and `tools/post-execute` waterfalls.',
  637. '',
  638. '```mermaid',
  639. 'flowchart TD',
  640. ' model["Assistant message contains tool-call block"]',
  641. ` toolCall["Session event: ${mermaidCode('tool/call')}<br/>logged before execution"]`,
  642. ' presentCall["UI pending card<br/>presentCall(args)"]',
  643. ` pre["${mermaidCode('tools/pre-execute')} waterfall<br/>hooks, permission, sandbox"]`,
  644. ' denied["deny or ask<br/>tool body skipped"]',
  645. ` around["${mermaidCode('tools/execute')} waterfall<br/>timeout, retry, metrics (around dispatch)"]`,
  646. ' toolBody["Registered tool execute() body"]',
  647. ` fsGate["${mermaidCode('fs/write-intent')} or ${mermaidCode('fs/edit-intent')}<br/>tool-fs mutations only"]`,
  648. ` owned["Tool-owned session events<br/>${mermaidCode('todo/write')}, ${mermaidCode('fs/observed')}, ${mermaidCode('hook/invoked')}, ${mermaidCode('hook/result')}, ${mermaidCode('tool/code-dispatch')}"]`,
  649. ` post["${mermaidCode('tools/post-execute')} waterfall<br/>accept, block, replace, add context"]`,
  650. ' context["Buffered additionalContext<br/>context/message after all tool results"]',
  651. ` toolResult["Session event: ${mermaidCode('tool/result')}<br/>single model-facing outcome"]`,
  652. ' presentResult["UI completed card<br/>presentResult(args, result)"]',
  653. ' model --> toolCall',
  654. ' toolCall --> presentCall',
  655. ' toolCall --> pre',
  656. ' pre -->|allow| around',
  657. ' around --> toolBody',
  658. ' pre -->|deny or ask| denied',
  659. ' denied --> post',
  660. ' toolBody --> fsGate',
  661. ' fsGate --> toolBody',
  662. ' toolBody --> owned',
  663. ' toolBody --> around',
  664. ' around --> post',
  665. ' post --> context',
  666. ' post --> toolResult',
  667. ' toolResult --> presentResult',
  668. '```',
  669. '',
  670. 'Filesystem read-before-edit checks live below `tool-fs` on the `fs/*` event gate; hook bridges and future permission prompts live on the generic pre/post tool waterfalls; and around-dispatch concerns like the tool-call timeout policy (`@deepseek-ai/dsh-timeout-policy`) wrap core dispatch on `tools/execute`. That split lets the same hooks observe bash, fs, web, todo, and subagent calls without coupling those tools to one policy service. Code Mode rides the same pipeline twice over: `run_code` is itself a registered tool body, and each tool call its program makes re-enters `ctx.tools.execute()` through BOTH waterfalls — serialized one at a time, logged as a `tool/code-dispatch` session event, with a deny surfacing to the program as a binding rejection (a sub-call\'s `additionalContext` is deliberately dropped — no safe outlet mid-run preserves call/result adjacency).',
  671. '',
  672. ...maintenanceFooter(maintenance),
  673. ].join('\n')
  674. }
  675. function renderSnapshotReplay(): string {
  676. const maintenance = 'curated Mermaid sequence based on the snapshot test harness'
  677. return [
  678. ...generatedHeader('ACP Snapshot Replay'),
  679. 'This graph explains what a snapshot scenario proves: recorded real-model session logs are replayed keylessly, ACP stdout is normalized and diffed, and scenario workspaces preserve tool side effects that the UI stream alone cannot prove.',
  680. '',
  681. '```mermaid',
  682. 'sequenceDiagram',
  683. ' participant Recorder as Real API recording',
  684. ' participant Fixture as snapshot fixture',
  685. ' participant Workspace',
  686. ' participant Replay as llm-replay adapter',
  687. ' participant ACP as acp-agent subprocess',
  688. ' participant Golden as stdout golden',
  689. ' Recorder->>Fixture: session.jsonl + workspace inputs',
  690. ' Fixture->>Workspace: seed files and hook configs',
  691. ' Fixture->>Replay: recorded StreamChunk script',
  692. ` Replay->>ACP: deterministic ${mermaidCode('llm/stream')} chunks`,
  693. ' ACP->>Workspace: bash, fs, and hook side effects',
  694. ' ACP->>Golden: normalized sessionUpdate stream',
  695. ' Golden-->>ACP: diff must be empty',
  696. '```',
  697. '',
  698. 'The fs and hook snapshot matrix is valuable because it proves world state, hook decisions, and failed tool-card rendering, not just that replay returns text.',
  699. '',
  700. ...maintenanceFooter(maintenance),
  701. ].join('\n')
  702. }
  703. function renderDocs(): GraphDoc[] {
  704. const pkgs = collectPackages()
  705. const docs: GraphDoc[] = [
  706. { rel: 'docs/capability-seams.md', content: renderCapabilitySeams(pkgs) },
  707. ...APP_EXAMPLES.map(example => ({ rel: example.rel, content: renderAppComposition(example) })),
  708. { rel: 'docs/event-producer-consumer.md', content: renderEventRelations(pkgs) },
  709. { rel: 'docs/agent-lifecycle.md', content: renderLifecycle() },
  710. { rel: 'docs/tool-execution-pipeline.md', content: renderToolPipeline() },
  711. { rel: 'packages/ui/acp/snapshot-replay.md', content: renderSnapshotReplay() },
  712. ]
  713. docs.unshift({ rel: 'docs/graph-atlas.md', content: renderIndex(docs) })
  714. return docs
  715. }
  716. function renderIndex(docs: GraphDoc[]): string {
  717. const labels: Record<string, string> = {
  718. 'docs/capability-seams.md': 'capability seams and core services',
  719. 'examples/echo-agent/composition.md': 'echo-agent app composition',
  720. 'examples/coding-agent/composition.md': 'coding-agent app composition',
  721. 'examples/cordis-agent/composition.md': 'cordis-agent app composition',
  722. 'examples/acp-agent/composition.md': 'acp-agent app composition',
  723. 'docs/event-producer-consumer.md': 'event producer/consumer matrix',
  724. 'docs/agent-lifecycle.md': 'agent turn and step lifecycle',
  725. 'docs/tool-execution-pipeline.md': 'tool execution pipeline',
  726. 'packages/ui/acp/snapshot-replay.md': 'ACP snapshot replay',
  727. }
  728. const modes: Record<string, string> = {
  729. 'docs/capability-seams.md': 'hybrid generated',
  730. 'examples/echo-agent/composition.md': 'hybrid generated',
  731. 'examples/coding-agent/composition.md': 'hybrid generated',
  732. 'examples/cordis-agent/composition.md': 'hybrid generated',
  733. 'examples/acp-agent/composition.md': 'hybrid generated',
  734. 'docs/event-producer-consumer.md': 'hybrid generated',
  735. 'docs/agent-lifecycle.md': 'curated',
  736. 'docs/tool-execution-pipeline.md': 'curated',
  737. 'packages/ui/acp/snapshot-replay.md': 'curated',
  738. }
  739. const rows = [
  740. '| [module dependency graph](module-graph.md) | `generated` |',
  741. '| [tool schema catalog and package map](tool-catalog.md) | `generated` |',
  742. ...docs.map((doc) => {
  743. const link = graphIndexLink(doc.rel)
  744. return `| [${labels[doc.rel] ?? link}](${link}) | \`${modes[doc.rel] ?? 'generated'}\` |`
  745. }),
  746. ]
  747. const maintenance = 'mixed: each linked page declares generated, hybrid, or curated mode'
  748. return [
  749. ...generatedHeader('Documentation Graph Index'),
  750. 'These diagrams are the relationship layer above the generated catalogs. Use them to navigate package topology, capability seams, event flow, model-facing tools, app composition, and runtime lifecycle paths. Exact signatures and type shapes still live in the generated [events](cordis-catalog/events.md) / [services](cordis-catalog/services.md) catalogs, [tool-catalog.md](tool-catalog.md), and [core-data-structures/](core-data-structures/core.md).',
  751. '',
  752. 'The process decision behind this index is recorded in [the documentation graph RFC](rfc/implemented/process/2026-07-03-documentation-graph-atlas.md).',
  753. '',
  754. '| Graph | Mode |',
  755. '| --- | --- |',
  756. ...rows,
  757. '',
  758. 'Regenerate with `pnpm run gen-doc-graphs`; verify freshness with `pnpm run verify-doc-graphs`.',
  759. '',
  760. ...maintenanceFooter(maintenance),
  761. ].join('\n')
  762. }
  763. function main(): void {
  764. const docs = renderDocs()
  765. if (process.argv.includes('--check')) {
  766. const stale: string[] = []
  767. for (const doc of docs) {
  768. const abs = resolve(root, doc.rel)
  769. const committed = existsSync(abs) ? readFileSync(abs, 'utf8') : null
  770. if (committed !== doc.content) stale.push(doc.rel)
  771. }
  772. if (stale.length === 0) {
  773. console.log(`gen-doc-graphs: ${docs.length} graph doc(s) are up to date.`)
  774. return
  775. }
  776. console.error(`gen-doc-graphs: stale graph doc(s): ${stale.join(', ')}. Run \`pnpm run gen-doc-graphs\` and commit the result.`)
  777. process.exit(1)
  778. }
  779. for (const doc of docs) {
  780. mkdirSync(dirname(resolve(root, doc.rel)), { recursive: true })
  781. writeFileSync(resolve(root, doc.rel), doc.content)
  782. }
  783. console.log(`gen-doc-graphs: wrote ${docs.length} graph doc(s).`)
  784. }
  785. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  786. main()
  787. }