gen-doc-graphs.ts 33 KB

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