gen-doc-graphs.ts 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865
  1. /**
  2. * Generate the relationship layer above the module, Cordis, and tool catalogs.
  3. * Enumerable facts come from source; hybrid graphs add manifests for policy the
  4. * source cannot infer, while curated graphs explain flow and ownership.
  5. * `--check` verifies the generated set.
  6. */
  7. import { existsSync, globSync, mkdirSync, readFileSync, writeFileSync } from 'node:fs'
  8. import { dirname, relative, resolve } from 'node:path'
  9. import ts from 'typescript'
  10. import { collectEvents, collectServices } from './gen-cordis-catalog.ts'
  11. import {
  12. collectPackageGraph,
  13. escapeMermaidLabel as escLabel,
  14. graphNodeId as nodeId,
  15. type PackageGraphNode,
  16. } from './package-graph.ts'
  17. const root = resolve(import.meta.dirname, '..')
  18. type Pkg = PackageGraphNode
  19. interface GraphDoc {
  20. rel: string
  21. content: string
  22. }
  23. interface ServiceRole {
  24. key: string
  25. pkg: string
  26. title: string
  27. mode: 'core' | 'seam' | 'bundle'
  28. implementations?: string[]
  29. consumers?: string[]
  30. companions?: string[]
  31. note: string
  32. }
  33. interface ExamplePlugin {
  34. id: string
  35. name: string
  36. }
  37. interface EventRelation {
  38. dispatchers: Map<string, Set<string>>
  39. listeners: Set<string>
  40. }
  41. const GROUP_ORDER = [
  42. 'util',
  43. 'llm',
  44. 'core',
  45. 'bash',
  46. 'sandbox',
  47. 'fs',
  48. 'skill',
  49. 'compact',
  50. 'subagent',
  51. 'web',
  52. 'todo',
  53. 'cordis',
  54. 'hooks',
  55. 'session-persistence',
  56. 'session-query',
  57. 'support',
  58. 'ui',
  59. ]
  60. const SERVICE_ROLES: ServiceRole[] = [
  61. {
  62. key: 'llm',
  63. pkg: 'llm',
  64. title: 'LLM adapter registry',
  65. mode: 'seam',
  66. implementations: ['llm-deepseek', 'llm-pi-ai', 'llm-replay'],
  67. consumers: ['agent-loop', 'compact-basic'],
  68. note: 'Adapters register provider implementations; the loop and compaction call the provider-neutral stream service.',
  69. },
  70. {
  71. key: 'sessions',
  72. pkg: 'session',
  73. title: 'In-memory session store',
  74. mode: 'core',
  75. consumers: ['agent-loop', 'agent', 'session-persistence', 'session-query', 'subagent-inprocess', 'invariants'],
  76. note: 'Owns append-only Session instances and emits the durable session event feed.',
  77. },
  78. {
  79. key: 'sessionPersistence',
  80. pkg: 'session-persistence',
  81. title: 'Durable session persistence seam',
  82. mode: 'seam',
  83. implementations: ['session-persistence-jsonl', 'session-persistence-sqlite'],
  84. consumers: ['agent-loop', 'acp', 'session-query'],
  85. note: 'Backends persist the same SessionEvent vocabulary; apps choose a backend at composition time.',
  86. },
  87. {
  88. key: 'sessionQuery',
  89. pkg: 'session-query',
  90. title: 'Exact session-history reads',
  91. mode: 'seam',
  92. note: 'Resolves live and optional persisted logs into one logical corpus for exact reads.',
  93. },
  94. {
  95. key: 'systemPrompt',
  96. pkg: 'system-prompt',
  97. title: 'System prompt assembly registry',
  98. mode: 'core',
  99. consumers: ['agent-loop', 'tools', 'tool-fs', 'tool-web'],
  100. note: 'Collects prompt sections and model-facing tool schemas for each step.',
  101. },
  102. {
  103. key: 'tools',
  104. pkg: 'tools',
  105. title: 'Tool registry and guarded execution pipeline',
  106. mode: 'core',
  107. consumers: ['agent-loop', 'tool-ask-user', 'tool-bash', 'tool-cordis', 'tool-fs', 'tool-skill', 'tool-subagent', 'tool-todo', 'tool-web', 'acp'],
  108. note: 'Registers capabilities, owns Code Mode transport, and routes calls through pre-policy, monotonic guards, around dispatch, post-policy, and final-result observation.',
  109. },
  110. {
  111. key: 'userInteraction',
  112. pkg: 'user-interaction',
  113. title: 'Human question/answer seam',
  114. mode: 'seam',
  115. implementations: ['stdio-agent', 'acp'],
  116. consumers: ['tool-ask-user', 'stdio-agent', 'acp'],
  117. note: 'UI front doors provide the active human-answer provider; tool-ask-user pauses a tool call on the provider-neutral ask() promise.',
  118. },
  119. {
  120. key: 'skills',
  121. pkg: 'skill',
  122. title: 'Skill provider registry',
  123. mode: 'seam',
  124. implementations: ['skill-local'],
  125. consumers: ['tool-skill'],
  126. note: 'Merges provider skill catalogs; tool-skill renders the session-prefix catalog and loads complete skill bodies.',
  127. },
  128. {
  129. key: 'agents',
  130. pkg: 'agent',
  131. title: 'Agent registry',
  132. mode: 'core',
  133. consumers: ['agent-loop', 'acp', 'subagent-inprocess', 'stdio-agent', 'invariants'],
  134. note: 'Owns live Agent handles and the create/resume factory seam.',
  135. },
  136. {
  137. key: 'agentLoop',
  138. pkg: 'agent-loop',
  139. title: 'Concrete loop driver',
  140. mode: 'bundle',
  141. consumers: ['agent-core'],
  142. note: 'The one concrete loop plugin; extension packages depend on dsh-agent events and services, not on this package.',
  143. },
  144. {
  145. key: 'bash',
  146. pkg: 'bash',
  147. title: 'Bash executor seam',
  148. mode: 'seam',
  149. implementations: ['bash-local', 'bash-sandbox'],
  150. consumers: ['tool-bash', 'hooks-claude', 'hooks-codex'],
  151. note: 'The model-facing bash tools and hook bridges consume this seam; sandboxed or remote executors replace bash-local without touching them.',
  152. },
  153. {
  154. key: 'sandbox',
  155. pkg: 'sandbox',
  156. title: 'Process-sandbox seam',
  157. mode: 'seam',
  158. implementations: ['sandbox-local'],
  159. consumers: ['bash-sandbox'],
  160. note: 'Consumers hand over the exact argv they are about to spawn; same-world backends wrap it under a per-call policy and report enforcement.',
  161. },
  162. {
  163. key: 'approval',
  164. pkg: 'approval',
  165. title: 'Approval seam',
  166. mode: 'seam',
  167. implementations: ['acp'],
  168. consumers: ['tools', 'tool-bash'],
  169. note: 'One-shot permission decisions dispatched over the `approval/request` waterfall; answerers are listeners (the ACP bridge for its own agents), absence fails closed to `unavailable`.',
  170. },
  171. {
  172. key: 'permission',
  173. pkg: 'permission',
  174. title: 'Permission presets',
  175. mode: 'core',
  176. implementations: [],
  177. consumers: ['acp'],
  178. note: 'User-facing preset table (`workspace-write`/`danger-full-access`) bundling the sandbox-mode and approval-policy knobs; a switch writes one `permission/preset` event through to both knob events.',
  179. },
  180. {
  181. key: 'codeRuntime',
  182. pkg: 'code-runtime',
  183. title: 'Code-execution seam',
  184. mode: 'seam',
  185. implementations: ['code-runtime-worker'],
  186. consumers: ['tools'],
  187. 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).',
  188. },
  189. {
  190. key: 'fs',
  191. pkg: 'fs',
  192. title: 'Filesystem provider seam',
  193. mode: 'seam',
  194. implementations: ['fs-local'],
  195. consumers: ['tool-fs'],
  196. companions: ['fs-policy'],
  197. note: 'tool-fs executes read/write/edit through ctx.fs; fs-policy contributes observed-state checks through the fs/* event gate.',
  198. },
  199. {
  200. key: 'compact',
  201. pkg: 'compact',
  202. title: 'Compaction seam',
  203. mode: 'seam',
  204. implementations: ['compact-basic'],
  205. consumers: ['compact-basic'],
  206. note: 'The basic backend currently consumes the pre-step event directly; a model-facing compact tool remains deferred.',
  207. },
  208. {
  209. key: 'subagents',
  210. pkg: 'subagent',
  211. title: 'Subagent provider registry',
  212. mode: 'seam',
  213. implementations: ['subagent-spawn', 'subagent-fork', 'subagent-acp', 'subagent-mock'],
  214. consumers: ['tool-subagent'],
  215. note: 'Providers implement transports; tool-subagent exposes one configured provider as a model-facing tool name.',
  216. },
  217. {
  218. key: 'web',
  219. pkg: 'web',
  220. title: 'Web access provider registry',
  221. mode: 'seam',
  222. implementations: ['web-search-exa', 'web-search-perplexity', 'web-search-deepseek', 'web-fetch-local'],
  223. consumers: ['tool-web'],
  224. note: 'Search and fetch providers register into one ctx.web seam; tool-web owns the stable model-facing names.',
  225. },
  226. {
  227. key: 'workflows',
  228. pkg: 'workflow',
  229. title: 'Workflow script engine',
  230. mode: 'seam',
  231. implementations: ['workflow-workerthread'],
  232. consumers: ['tool-workflow'],
  233. note: 'One engine per context (bash shape, no named-provider registry); the worker-thread engine fans agent() calls out through ctx.subagents.',
  234. },
  235. ]
  236. const DYNAMIC_EVENT_DISPATCHERS: Array<{ event: string; pkg: string; method: string }> = [
  237. // Creation notifications preserve synchronous veto/rollback but observe
  238. // returned promises explicitly so async listener rejection is not unhandled.
  239. { event: 'agent/created', pkg: 'agent', method: 'events.dispatch' },
  240. // Registry disposal reuses the stable carrier captured before entry commit
  241. // and contains each listener directly rather than rebuilding via agentEvents.
  242. { event: 'agent/disposed', pkg: 'agent', method: 'events.dispatch' },
  243. { event: 'session/created', pkg: 'session', method: 'events.dispatch' },
  244. // Session event callbacks are likewise resolved before the log push, then
  245. // invoked individually after commit so observer failures are contained.
  246. { event: 'session/event', pkg: 'session', method: 'events.dispatch' },
  247. // Flush resolves the scoped callback set directly so internal instrumentation
  248. // cannot substitute the accepted session before parallel invocation.
  249. { event: 'session/flush', pkg: 'session', method: 'events.dispatch' },
  250. // Session disposal uses direct callback resolution so teardown contains each
  251. // synchronous throw and returned-promise rejection independently.
  252. { event: 'session/disposed', pkg: 'session', method: 'events.dispatch' },
  253. // tools/result uses ctx.events.dispatch directly so the registry can invoke
  254. // every synchronous observer while containing each callback independently.
  255. { event: 'tools/result', pkg: 'tools', method: 'events.dispatch' },
  256. // Subagent lifecycle events intentionally bypass ctx.emit and call
  257. // ctx.events.dispatch directly so one throwing listener cannot starve later
  258. // listeners or strand an already-started child run.
  259. { event: 'subagent/start', pkg: 'subagent', method: 'events.dispatch' },
  260. { event: 'subagent/end', pkg: 'subagent', method: 'events.dispatch' },
  261. // provider-removed fires inside the provider registration's DISPOSER and
  262. // routes through the same contained dispatch (see emitLifecycle in
  263. // dsh-subagent), so the AST scan cannot attribute it either.
  264. { event: 'subagent/provider-removed', pkg: 'subagent', method: 'events.dispatch' },
  265. // The workflow/* lifecycle events dispatch the same way, for the same
  266. // per-listener-containment reason (WorkflowService.emitWorkflowEvent).
  267. { event: 'workflow/start', pkg: 'workflow', method: 'events.dispatch' },
  268. { event: 'workflow/phase', pkg: 'workflow', method: 'events.dispatch' },
  269. { event: 'workflow/log', pkg: 'workflow', method: 'events.dispatch' },
  270. { event: 'workflow/agent-start', pkg: 'workflow', method: 'events.dispatch' },
  271. { event: 'workflow/agent-end', pkg: 'workflow', method: 'events.dispatch' },
  272. { event: 'workflow/end', pkg: 'workflow', method: 'events.dispatch' },
  273. ]
  274. const DYNAMIC_EVENT_LISTENERS: Array<{ event: string; pkg: string }> = [
  275. // The invariants oracle marks the session started from its global
  276. // internal/dispatch listener before product session-start callbacks run.
  277. { event: 'agent/session-start', pkg: 'invariants' },
  278. ]
  279. function generatedHeader(title: string): string[] {
  280. return [
  281. '<!-- Generated by scripts/gen-doc-graphs.ts - do not edit by hand.',
  282. ' Run `pnpm run gen-doc-graphs` to regenerate. -->',
  283. '',
  284. `# ${title}`,
  285. '',
  286. ]
  287. }
  288. function maintenanceFooter(source: string): string[] {
  289. return [`Maintenance mode: ${source}.`, '']
  290. }
  291. function graphIndexLink(rel: string): string {
  292. return relative('docs', rel).replaceAll('\\', '/')
  293. }
  294. function linkFromDoc(docRel: string, targetRel: string): string {
  295. return relative(dirname(docRel), targetRel).replaceAll('\\', '/')
  296. }
  297. function mermaidCode(value: string): string {
  298. return `<code>${value.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;')}</code>`
  299. }
  300. function repoLink(path: string, label: string, up = '..'): string {
  301. return `[${label}](${up}/${path})`
  302. }
  303. function sourceLink(source: string, up = '..'): string {
  304. return repoLink(source.split(':')[0] ?? source, `\`${source}\``, up)
  305. }
  306. function pkgLink(pkg: Pkg | undefined, fallback: string, up = '..'): string {
  307. return pkg ? repoLink(pkg.rel, `\`${pkg.short}\``, up) : `\`${fallback}\``
  308. }
  309. function pkgList(names: string[] | undefined, pkgsByShort: Map<string, Pkg>): string {
  310. if (!names || names.length === 0) return '-'
  311. return names.map(name => pkgLink(pkgsByShort.get(name), name)).join(', ')
  312. }
  313. function tableCell(value: string): string {
  314. return value.replace(/\|/g, '\\|').replace(/\n/g, '<br>')
  315. }
  316. function assertServiceRolesComplete(): void {
  317. const discovered = new Set(collectServices().map(service => service.key))
  318. const classified = new Set(SERVICE_ROLES.map(role => role.key))
  319. const missing = [...discovered].filter(key => !classified.has(key)).sort()
  320. const stale = [...classified].filter(key => !discovered.has(key)).sort()
  321. if (missing.length || stale.length) {
  322. throw new Error([
  323. missing.length ? `missing service role classification: ${missing.join(', ')}` : '',
  324. stale.length ? `stale service role classification: ${stale.join(', ')}` : '',
  325. ].filter(Boolean).join('; '))
  326. }
  327. }
  328. function renderCapabilitySeams(pkgs: Pkg[]): string {
  329. assertServiceRolesComplete()
  330. const pkgsByShort = new Map(pkgs.map(pkg => [pkg.short, pkg]))
  331. 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'
  332. const nodes = new Map<string, string>()
  333. const edges = new Set<string>()
  334. const companionEdges = new Set<string>()
  335. const addNode = (id: string, label: string): void => {
  336. if (!nodes.has(id)) nodes.set(id, ` ${id}["${escLabel(label)}"]`)
  337. }
  338. const addEdge = (from: string, to: string): void => { edges.add(` ${from} --> ${to}`) }
  339. const lines = generatedHeader('Capability Seams And Core Services')
  340. lines.push(
  341. '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.',
  342. '',
  343. '```mermaid',
  344. 'flowchart LR',
  345. )
  346. for (const role of SERVICE_ROLES) {
  347. const svc = nodeId('svc', role.key)
  348. const owner = nodeId('pkg', role.pkg)
  349. addNode(owner, role.pkg)
  350. addNode(svc, `ctx.${role.key}<br/>${role.title}`)
  351. addEdge(owner, svc)
  352. for (const impl of role.implementations ?? []) {
  353. addNode(nodeId('pkg', impl), impl)
  354. addEdge(nodeId('pkg', impl), svc)
  355. }
  356. for (const consumer of role.consumers ?? []) {
  357. addNode(nodeId('pkg', consumer), consumer)
  358. addEdge(svc, nodeId('pkg', consumer))
  359. }
  360. for (const companion of role.companions ?? []) {
  361. addNode(nodeId('pkg', companion), companion)
  362. companionEdges.add(` ${svc} -. event gate .-> ${nodeId('pkg', companion)}`)
  363. }
  364. }
  365. lines.push(...nodes.values(), ...[...edges].sort(), ...[...companionEdges].sort())
  366. lines.push('```', '', '| ctx key | Role | Owner | Implementations | Direct consumers | Companion plugins | Note |', '| --- | --- | --- | --- | --- | --- | --- |')
  367. for (const role of SERVICE_ROLES) {
  368. 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)} |`)
  369. }
  370. lines.push('', ...maintenanceFooter(maintenance))
  371. return lines.join('\n')
  372. }
  373. function parseExampleCordis(rel: string): ExamplePlugin[] {
  374. const text = readFileSync(resolve(root, rel), 'utf8')
  375. const plugins: ExamplePlugin[] = []
  376. let current: { id: string; name?: string } | null = null
  377. const flush = (): void => {
  378. if (current?.name) plugins.push({ id: current.id, name: current.name })
  379. }
  380. for (const line of text.split('\n')) {
  381. const id = /^-\s+id:\s+(.+?)\s*$/.exec(line)
  382. if (id?.[1] !== undefined) {
  383. flush()
  384. current = { id: stripYamlScalar(id[1]) }
  385. continue
  386. }
  387. const name = /^\s+name:\s+(.+?)\s*$/.exec(line)
  388. if (name?.[1] !== undefined && current) current.name = stripYamlScalar(name[1])
  389. }
  390. flush()
  391. return plugins
  392. }
  393. function stripYamlScalar(value: string): string {
  394. return value.trim().replace(/^['"]|['"]$/g, '')
  395. }
  396. const APP_EXAMPLES = [
  397. {
  398. id: 'echo',
  399. rel: 'examples/echo-agent/composition.md',
  400. title: 'Echo Agent App Composition',
  401. label: 'examples/echo-agent',
  402. config: 'examples/echo-agent/cordis.yml',
  403. 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.',
  404. },
  405. {
  406. id: 'coding',
  407. rel: 'examples/coding-agent/composition.md',
  408. title: 'Coding Agent App Composition',
  409. label: 'examples/coding-agent',
  410. config: 'examples/coding-agent/cordis.yml',
  411. 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.',
  412. },
  413. {
  414. id: 'cordis',
  415. rel: 'examples/cordis-agent/composition.md',
  416. title: 'Cordis Agent App Composition',
  417. label: 'examples/cordis-agent',
  418. config: 'examples/cordis-agent/cordis.yml',
  419. 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.',
  420. },
  421. {
  422. id: 'acp',
  423. rel: 'examples/acp-agent/composition.md',
  424. title: 'ACP Agent App Composition',
  425. label: 'examples/acp-agent',
  426. config: 'examples/acp-agent/cordis.yml',
  427. 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.',
  428. },
  429. ]
  430. type AppExample = typeof APP_EXAMPLES[number]
  431. function renderAppExpansion(lines: string[], appNode: string, pluginName: string): void {
  432. const agentCore = nodeId('bundle', 'agent_core')
  433. const jsonl = nodeId('bundle', 'jsonl')
  434. lines.push(` ${appNode} --> ${agentCore}["@deepseek-ai/dsh-agent-core"]`)
  435. lines.push(` ${appNode} --> ${jsonl}["@deepseek-ai/dsh-session-persistence-jsonl"]`)
  436. if (pluginName === '@deepseek-ai/dsh-stdio-agent') {
  437. lines.push(` ${appNode} --> ${nodeId('frontdoor', 'stdio')}["readline UI<br/>console logger<br/>pre-created main agent"]`)
  438. } else if (pluginName === '@deepseek-ai/dsh-acp-agent') {
  439. lines.push(` ${appNode} --> ${nodeId('frontdoor', 'acp')}["@deepseek-ai/dsh-acp<br/>JSON-RPC stdio bridge<br/>sessions created by client"]`)
  440. }
  441. lines.push(
  442. ` ${agentCore} --> ${nodeId('spine', 'llm')}["ctx.llm"]`,
  443. ` ${agentCore} --> ${nodeId('spine', 'sessions')}["ctx.sessions"]`,
  444. ` ${agentCore} --> ${nodeId('spine', 'tools')}["ctx.tools + tool-bash"]`,
  445. ` ${agentCore} --> ${nodeId('spine', 'loop')}["ctx.agents + ctx.agentLoop"]`,
  446. )
  447. }
  448. function renderAppComposition(example: AppExample): string {
  449. const plugins = parseExampleCordis(example.config)
  450. const maintenance = 'hybrid: the leaf plugin list is parsed from its `cordis.yml`; app package expansion is curated from package source'
  451. const lines = generatedHeader(example.title)
  452. lines.push(
  453. example.summary,
  454. '',
  455. '```mermaid',
  456. 'flowchart LR',
  457. ` cfg["${escLabel(example.label)}<br/>cordis.yml"]`,
  458. )
  459. for (const plugin of plugins) {
  460. const pluginNode = nodeId(`plugin_${example.id}`, plugin.id)
  461. lines.push(` ${pluginNode}["${escLabel(plugin.id)}<br/>${escLabel(plugin.name)}"]`)
  462. lines.push(` cfg --> ${pluginNode}`)
  463. if (plugin.name === '@deepseek-ai/dsh-stdio-agent' || plugin.name === '@deepseek-ai/dsh-acp-agent') {
  464. renderAppExpansion(lines, pluginNode, plugin.name)
  465. }
  466. }
  467. lines.push(
  468. '```',
  469. '',
  470. '| Plugin id | Package / module |',
  471. '| --- | --- |',
  472. ...plugins.map(plugin => `| \`${plugin.id}\` | \`${plugin.name}\` |`),
  473. '',
  474. `Source config: [\`${example.config}\`](${linkFromDoc(example.rel, example.config)}).`,
  475. )
  476. lines.push('', ...maintenanceFooter(maintenance))
  477. return lines.join('\n')
  478. }
  479. function collectEventRelations(): Map<string, EventRelation> {
  480. const out = new Map<string, EventRelation>()
  481. const ensure = (event: string): EventRelation => {
  482. const existing = out.get(event)
  483. if (existing) return existing
  484. const next = { dispatchers: new Map<string, Set<string>>(), listeners: new Set<string>() }
  485. out.set(event, next)
  486. return next
  487. }
  488. for (const rel of globSync('packages/*/*/src/**/*.ts', { cwd: root }).sort()) {
  489. const [, , leaf] = rel.split('/')
  490. if (leaf === undefined) continue
  491. const text = readFileSync(resolve(root, rel), 'utf8')
  492. const sf = ts.createSourceFile(rel, text, ts.ScriptTarget.Latest, true)
  493. const visit = (node: ts.Node): void => {
  494. if (ts.isCallExpression(node) && ts.isPropertyAccessExpression(node.expression)) {
  495. const method = node.expression.name.text
  496. if (!isCordisContextReceiver(node.expression, sf)) {
  497. ts.forEachChild(node, visit)
  498. return
  499. }
  500. if (method === 'on') {
  501. const event = eventArg(node.arguments, method)
  502. if (event) ensure(event).listeners.add(leaf)
  503. } else if (method === 'emit' || method === 'parallel' || method === 'serial' || method === 'waterfall') {
  504. const event = eventArg(node.arguments, method)
  505. if (event) {
  506. const relation = ensure(event)
  507. const methods = relation.dispatchers.get(leaf) ?? new Set<string>()
  508. methods.add(method)
  509. relation.dispatchers.set(leaf, methods)
  510. }
  511. }
  512. }
  513. ts.forEachChild(node, visit)
  514. }
  515. visit(sf)
  516. }
  517. for (const entry of DYNAMIC_EVENT_DISPATCHERS) {
  518. const relation = ensure(entry.event)
  519. const methods = relation.dispatchers.get(entry.pkg) ?? new Set<string>()
  520. methods.add(entry.method)
  521. relation.dispatchers.set(entry.pkg, methods)
  522. }
  523. for (const entry of DYNAMIC_EVENT_LISTENERS) {
  524. ensure(entry.event).listeners.add(entry.pkg)
  525. }
  526. return out
  527. }
  528. function isCordisContextReceiver(expr: ts.PropertyAccessExpression, sf: ts.SourceFile): boolean {
  529. // The chained fused-dispatch spelling: `agentEvents(ctx, agent).emit(…)` —
  530. // the receiver is a call expression, not an identifier.
  531. if (ts.isCallExpression(expr.expression) && expr.expression.expression.getText(sf) === 'agentEvents') {
  532. return true
  533. }
  534. const target = expr.expression.getText(sf)
  535. if (target === 'ctx' || target === 'this.ctx') return true
  536. // Scoped-dispatch spellings are conventional names. Keep this list in sync
  537. // with renames or the relationship matrix can silently lose an edge.
  538. return target === 'events' || target === 'childCtx' || target === 'this.loopCtx' || target === 'emitCtx'
  539. }
  540. function eventArg(args: ts.NodeArray<ts.Expression>, method: string): string | undefined {
  541. if (method === 'waterfall') {
  542. const arg = args.find(ts.isStringLiteralLike)
  543. return arg?.text
  544. }
  545. const first = args[0]
  546. if (first && ts.isStringLiteralLike(first)) return first.text
  547. // Scope-carrier dispatch: `emit(carrier, 'event/name', …)` puts the event
  548. // name second. Accept a string literal in position 1 when position 0 is a
  549. // non-literal expression (the carrier).
  550. const second = args[1]
  551. return second && ts.isStringLiteralLike(second) ? second.text : undefined
  552. }
  553. function relationPackages(map: Map<string, Set<string>>, pkgsByShort: Map<string, Pkg>): string {
  554. if (map.size === 0) return '-'
  555. return [...map.entries()]
  556. .sort(([a], [b]) => a.localeCompare(b))
  557. .map(([pkg, methods]) => `${pkgLink(pkgsByShort.get(pkg), pkg)} (${[...methods].sort().map(m => `\`${m}\``).join(', ')})`)
  558. .join(', ')
  559. }
  560. function listenerPackages(listeners: Set<string>, pkgsByShort: Map<string, Pkg>): string {
  561. if (listeners.size === 0) return '-'
  562. return [...listeners].sort().map(pkg => pkgLink(pkgsByShort.get(pkg), pkg)).join(', ')
  563. }
  564. function renderEventRelations(pkgs: Pkg[]): string {
  565. const events = collectEvents()
  566. const relations = collectEventRelations()
  567. const pkgsByShort = new Map(pkgs.map(pkg => [pkg.short, pkg]))
  568. 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`'
  569. const lines = generatedHeader('Event Producer And Consumer Matrix')
  570. lines.push(
  571. '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.',
  572. '',
  573. '| Event | Mode | Declared in | Dispatchers | Listeners |',
  574. '| --- | --- | --- | --- | --- |',
  575. )
  576. for (const event of [...events].sort((a, b) => a.name.localeCompare(b.name))) {
  577. const relation = relations.get(event.name) ?? { dispatchers: new Map<string, Set<string>>(), listeners: new Set<string>() }
  578. lines.push(`| \`${event.name}\` | \`${event.mode}\` | ${sourceLink(event.source)} | ${relationPackages(relation.dispatchers, pkgsByShort)} | ${listenerPackages(relation.listeners, pkgsByShort)} |`)
  579. }
  580. // Every declared event needs a dispatcher: zero means dead vocabulary or an
  581. // unrecognized dispatch spelling. Listener-free extension points remain valid.
  582. const undispatched = [...events]
  583. .filter(event => (relations.get(event.name)?.dispatchers.size ?? 0) === 0)
  584. .map(event => event.name)
  585. .sort()
  586. if (undispatched.length > 0) {
  587. throw new Error(
  588. `event-producer-consumer matrix: no dispatcher found for declared event${undispatched.length > 1 ? 's' : ''} `
  589. + `${undispatched.map(name => `"${name}"`).join(', ')} — dead vocabulary, or a dispatch spelling the scan misses `
  590. + '(teach scripts/gen-doc-graphs.ts the spelling or add a DYNAMIC_EVENT_DISPATCHERS override)',
  591. )
  592. }
  593. const declared = new Set(events.map(event => event.name))
  594. const extra = [...relations.keys()].filter(event => !declared.has(event)).sort()
  595. if (extra.length > 0) {
  596. lines.push('', '## Non-harness or undeclared event strings seen in package source', '', '| Event string | Dispatchers | Listeners |', '| --- | --- | --- |')
  597. for (const event of extra) {
  598. const relation = relations.get(event)
  599. if (!relation) continue
  600. lines.push(`| \`${event}\` | ${relationPackages(relation.dispatchers, pkgsByShort)} | ${listenerPackages(relation.listeners, pkgsByShort)} |`)
  601. }
  602. }
  603. lines.push('', ...maintenanceFooter(maintenance))
  604. return lines.join('\n')
  605. }
  606. function renderLifecycle(): string {
  607. const maintenance = 'curated Mermaid sequence; exact event signatures live in the generated Cordis catalog'
  608. return [
  609. ...generatedHeader('Agent Turn And Step Lifecycle'),
  610. '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/*`.',
  611. '',
  612. '```mermaid',
  613. 'sequenceDiagram',
  614. ' participant User',
  615. ' participant Agent',
  616. ' participant Driver',
  617. ' participant Hooks as hook listeners',
  618. ' participant Prompt as ctx.systemPrompt',
  619. ' participant LLM as ctx.llm',
  620. ' participant Tools as ctx.tools',
  621. ' participant Session',
  622. ' participant Persistence',
  623. ' participant SDK as UI or SDK listener',
  624. ' User->>Agent: send(content)',
  625. ` Agent-->>SDK: ${mermaidCode('agent/queued')}`,
  626. ' Agent->>Driver: queued work wakes driver',
  627. ` Driver-->>SDK: ${mermaidCode('agent/status')} running`,
  628. ` Driver->>Session: ${mermaidCode('turn/start')}`,
  629. ` Driver->>Hooks: ${mermaidCode('agent/prompt-submit')} waterfall`,
  630. ' Hooks-->>Driver: allow, block, or add context',
  631. ` Driver->>Session: ${mermaidCode('user/message')} or rejected ${mermaidCode('turn/end')}`,
  632. ` Driver->>Prompt: ${mermaidCode('system-prompt/assemble')} waterfall`,
  633. ` Driver-->>Driver: ${mermaidCode('agent/pre-step')} serial checkpoint`,
  634. ` Driver->>Session: ${mermaidCode('step/start')}`,
  635. ` Driver->>LLM: ${mermaidCode('agent/request')} waterfall, then ${mermaidCode('llm/stream')} waterfall`,
  636. ' LLM-->>Driver: StreamChunk*',
  637. ` Driver->>Session: ${mermaidCode('assistant/chunk')}*`,
  638. ` Session-->>SDK: ${mermaidCode('session/event')} ${mermaidCode('assistant/chunk')}*`,
  639. ` Driver->>Hooks: ${mermaidCode('agent/step-result')} waterfall`,
  640. ` Driver->>Session: ${mermaidCode('assistant/message')}`,
  641. ` Driver->>Session: ${mermaidCode('tool/call')}`,
  642. ' Driver->>Tools: execute through pre and post waterfalls',
  643. ' Tools-->>Session: tool-owned events when applicable',
  644. ` Driver->>Session: ${mermaidCode('tool/result')} and ${mermaidCode('step/end')}`,
  645. ` Driver->>Hooks: ${mermaidCode('agent/turn-continuation')} waterfall`,
  646. ` Driver->>Hooks: ${mermaidCode('agent/turn-stop')} serial terminal checkpoint`,
  647. ` Driver->>Session: ${mermaidCode('turn/end')}`,
  648. ` Driver->>Persistence: ${mermaidCode('session/flush')} parallel checkpoint`,
  649. ` Driver-->>SDK: ${mermaidCode('agent/status')} idle`,
  650. '```',
  651. '',
  652. '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.',
  653. '',
  654. ...maintenanceFooter(maintenance),
  655. ].join('\n')
  656. }
  657. function renderToolPipeline(): string {
  658. const maintenance = 'curated Mermaid flow; exact tool schemas and event signatures live in generated catalogs'
  659. return [
  660. ...generatedHeader('Tool Execution Pipeline'),
  661. 'This graph shows where policy, hooks, sandboxing, filesystem guards, result rewriting, final-outcome observation, and UI rendering fit without changing the loop. The transformable extension points are the `tools/pre-execute`, `tools/execute`, and `tools/post-execute` waterfalls; monotonic guards and `tools/result` are the owner-enforced boundaries around them.',
  662. '',
  663. '```mermaid',
  664. 'flowchart TD',
  665. ' model["Assistant message contains tool-call block"]',
  666. ` toolCall["Session event: ${mermaidCode('tool/call')}<br/>logged before execution"]`,
  667. ' presentCall["UI pending card<br/>presentCall(args)"]',
  668. ` pre["${mermaidCode('tools/pre-execute')} waterfall<br/>hooks, permission, sandbox"]`,
  669. ' guards["Registered monotonic guards<br/>deny or abstain; identity protected"]',
  670. ' denied["denied or approval refused<br/>tool body skipped"]',
  671. ` approval["${mermaidCode('ctx.approval')} one-shot prompt<br/>absent or unanswerable: deny"]`,
  672. ` around["${mermaidCode('tools/execute')} waterfall<br/>timeout, retry, metrics (around dispatch)"]`,
  673. ' toolBody["Registered tool execute() body"]',
  674. ` fsGate["${mermaidCode('fs/write-intent')} or ${mermaidCode('fs/edit-intent')}<br/>tool-fs mutations only"]`,
  675. ` owned["Tool-owned session events<br/>${mermaidCode('todo/write')}, ${mermaidCode('fs/observed')}, ${mermaidCode('hook/invoked')}, ${mermaidCode('hook/result')}, ${mermaidCode('tool/code-dispatch')}"]`,
  676. ` post["${mermaidCode('tools/post-execute')} waterfall<br/>accept, block, replace, add context"]`,
  677. ` final["${mermaidCode('tools/result')} synchronous notification<br/>frozen authoritative outcome"]`,
  678. ' context["Buffered additionalContext<br/>context/message after all tool results"]',
  679. ` toolResult["Session event: ${mermaidCode('tool/result')}<br/>single model-facing outcome"]`,
  680. ' allResults["All calls in the step settled<br/>and tool/result events recorded"]',
  681. ' presentResult["UI completed card<br/>presentResult(args, result)"]',
  682. ' model --> toolCall',
  683. ' toolCall --> presentCall',
  684. ' toolCall --> pre',
  685. ' pre -->|allow| guards',
  686. ' guards -->|allow| around',
  687. ' guards -->|deny| denied',
  688. ' around --> toolBody',
  689. ' pre -->|deny| denied',
  690. ' pre -->|ask| approval',
  691. ' approval -->|allowed-once| guards',
  692. ' approval -->|rejected, cancelled, unavailable| denied',
  693. ' denied --> post',
  694. ' toolBody --> fsGate',
  695. ' fsGate --> toolBody',
  696. ' toolBody --> owned',
  697. ' toolBody --> around',
  698. ' around --> post',
  699. ' post --> final',
  700. ' final --> toolResult',
  701. ' toolResult --> presentResult',
  702. ' toolResult --> allResults',
  703. ' allResults --> context',
  704. '```',
  705. '',
  706. 'Filesystem read-before-edit checks stay below `tool-fs` on `fs/*` events. Generic pre/post waterfalls host hooks and approval policy; `ctx.approval` resolves asks before monotonic guards, and owner policy that must not be reordered remains a registered guard. Around-dispatch concerns such as timeouts wrap `tools/execute`, while `tools/result` observes the immutable outcome after transforms, lossless-JSON validation, and outer error normalization. This lets hooks span tool families without coupling the tools to one policy service. Code Mode sends both the reserved `run_code` transport and its serialized sub-calls through the pipeline; sub-calls carry the parent token, log `tool/code-dispatch`, surface denials as binding rejections, and omit `additionalContext` to preserve call/result adjacency.',
  707. '',
  708. ...maintenanceFooter(maintenance),
  709. ].join('\n')
  710. }
  711. function renderSnapshotReplay(): string {
  712. const maintenance = 'curated Mermaid sequence based on the snapshot test harness'
  713. return [
  714. ...generatedHeader('ACP Snapshot Replay'),
  715. '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.',
  716. '',
  717. '```mermaid',
  718. 'sequenceDiagram',
  719. ' participant Recorder as Real API recording',
  720. ' participant Fixture as snapshot fixture',
  721. ' participant Workspace',
  722. ' participant Replay as llm-replay adapter',
  723. ' participant ACP as acp-agent subprocess',
  724. ' participant Golden as stdout golden',
  725. ' Recorder->>Fixture: session.jsonl + workspace inputs',
  726. ' Fixture->>Workspace: seed files and hook configs',
  727. ' Fixture->>Replay: recorded StreamChunk script',
  728. ` Replay->>ACP: deterministic ${mermaidCode('llm/stream')} chunks`,
  729. ' ACP->>Workspace: bash, fs, and hook side effects',
  730. ' ACP->>Golden: normalized sessionUpdate stream',
  731. ' Golden-->>ACP: diff must be empty',
  732. '```',
  733. '',
  734. '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.',
  735. '',
  736. ...maintenanceFooter(maintenance),
  737. ].join('\n')
  738. }
  739. function renderDocs(): GraphDoc[] {
  740. const pkgs = collectPackageGraph(root, GROUP_ORDER, 'gen-doc-graphs')
  741. const docs: GraphDoc[] = [
  742. { rel: 'docs/capability-seams.md', content: renderCapabilitySeams(pkgs) },
  743. ...APP_EXAMPLES.map(example => ({ rel: example.rel, content: renderAppComposition(example) })),
  744. { rel: 'docs/event-producer-consumer.md', content: renderEventRelations(pkgs) },
  745. { rel: 'docs/agent-lifecycle.md', content: renderLifecycle() },
  746. { rel: 'docs/tool-execution-pipeline.md', content: renderToolPipeline() },
  747. { rel: 'packages/ui/acp/snapshot-replay.md', content: renderSnapshotReplay() },
  748. ]
  749. docs.unshift({ rel: 'docs/graph-atlas.md', content: renderIndex(docs) })
  750. return docs
  751. }
  752. function renderIndex(docs: GraphDoc[]): string {
  753. const labels: Record<string, string> = {
  754. 'docs/capability-seams.md': 'capability seams and core services',
  755. 'examples/echo-agent/composition.md': 'echo-agent app composition',
  756. 'examples/coding-agent/composition.md': 'coding-agent app composition',
  757. 'examples/cordis-agent/composition.md': 'cordis-agent app composition',
  758. 'examples/acp-agent/composition.md': 'acp-agent app composition',
  759. 'docs/event-producer-consumer.md': 'event producer/consumer matrix',
  760. 'docs/agent-lifecycle.md': 'agent turn and step lifecycle',
  761. 'docs/tool-execution-pipeline.md': 'tool execution pipeline',
  762. 'packages/ui/acp/snapshot-replay.md': 'ACP snapshot replay',
  763. }
  764. const modes: Record<string, string> = {
  765. 'docs/capability-seams.md': 'hybrid generated',
  766. 'examples/echo-agent/composition.md': 'hybrid generated',
  767. 'examples/coding-agent/composition.md': 'hybrid generated',
  768. 'examples/cordis-agent/composition.md': 'hybrid generated',
  769. 'examples/acp-agent/composition.md': 'hybrid generated',
  770. 'docs/event-producer-consumer.md': 'hybrid generated',
  771. 'docs/agent-lifecycle.md': 'curated',
  772. 'docs/tool-execution-pipeline.md': 'curated',
  773. 'packages/ui/acp/snapshot-replay.md': 'curated',
  774. }
  775. const rows = [
  776. '| [module dependency graph](module-graph.md) | `generated` |',
  777. '| [tool schema catalog and package map](tool-catalog.md) | `generated` |',
  778. ...docs.map((doc) => {
  779. const link = graphIndexLink(doc.rel)
  780. return `| [${labels[doc.rel] ?? link}](${link}) | \`${modes[doc.rel] ?? 'generated'}\` |`
  781. }),
  782. ]
  783. const maintenance = 'mixed: each linked page declares generated, hybrid, or curated mode'
  784. return [
  785. ...generatedHeader('Documentation Graph Index'),
  786. '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).',
  787. '',
  788. 'The process decision behind this index is recorded in [the documentation graph RFC](rfc/implemented/process/2026-07-03-documentation-graph-atlas.md).',
  789. '',
  790. '| Graph | Mode |',
  791. '| --- | --- |',
  792. ...rows,
  793. '',
  794. 'Regenerate with `pnpm run gen-doc-graphs`; verify freshness with `pnpm run verify-doc-graphs`.',
  795. '',
  796. ...maintenanceFooter(maintenance),
  797. ].join('\n')
  798. }
  799. function main(): void {
  800. const docs = renderDocs()
  801. if (process.argv.includes('--check')) {
  802. const stale: string[] = []
  803. for (const doc of docs) {
  804. const abs = resolve(root, doc.rel)
  805. const committed = existsSync(abs) ? readFileSync(abs, 'utf8') : null
  806. if (committed !== doc.content) stale.push(doc.rel)
  807. }
  808. if (stale.length === 0) {
  809. console.log(`gen-doc-graphs: ${docs.length} graph doc(s) are up to date.`)
  810. return
  811. }
  812. console.error(`gen-doc-graphs: stale graph doc(s): ${stale.join(', ')}. Run \`pnpm run gen-doc-graphs\` and commit the result.`)
  813. process.exit(1)
  814. }
  815. for (const doc of docs) {
  816. mkdirSync(dirname(resolve(root, doc.rel)), { recursive: true })
  817. writeFileSync(resolve(root, doc.rel), doc.content)
  818. }
  819. console.log(`gen-doc-graphs: wrote ${docs.length} graph doc(s).`)
  820. }
  821. if (process.argv[1] && import.meta.filename === resolve(process.argv[1])) {
  822. main()
  823. }