verify-package-readme-model-experience.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. /**
  2. * Doc-sync gate for package README Model Experience sections. It validates
  3. * audited package classifications, context-surface fields, package-owned text
  4. * blocks, generated-catalog links, and final-section order. See the
  5. * [Model Experience RFC](../docs/rfc/implemented/process/2026-07-12-package-model-experience-contract.md).
  6. */
  7. import { existsSync, globSync, readFileSync } from 'node:fs'
  8. import { relative, resolve, sep } from 'node:path'
  9. import { markdownHeadingLines, markdownProseLines, type MarkdownProseLine } from './markdown.ts'
  10. const root = resolve(import.meta.dirname, '..')
  11. const HEADING = '## Model Experience'
  12. const LIMITATIONS_HEADING = '## Known Limitations and Deferred Work'
  13. const MODEL_VIEW_LABEL = '**What the model sees**'
  14. const TOKEN_EFFECT_LABEL = '**Token effect**'
  15. type SentenceKind = 'none' | 'indirect'
  16. interface SentenceContract {
  17. kind: SentenceKind
  18. reason: string
  19. }
  20. /**
  21. * Generic packages whose public contract is model-agnostic. Their READMEs omit
  22. * Model Experience entirely; the reason stays here as reviewable audit evidence
  23. * so an absent section cannot be mistaken for forgotten documentation.
  24. */
  25. const NO_MODEL_EXPERIENCE_SECTION: Readonly<Record<string, string>> = {
  26. 'packages/core/scope': 'The package is a model-agnostic registration and lifecycle primitive; model-facing consumers own any context selection.',
  27. 'packages/util/brand': 'The package is a type-only primitive erased at compile time.',
  28. }
  29. /**
  30. * Packages whose Model Experience is simple enough for one gated sentence.
  31. * Every other package must carry canonical context-surface blocks. A package
  32. * moves on or off this list with the change to its context behavior.
  33. */
  34. const SENTENCE_MODEL_EXPERIENCE: Readonly<Record<string, SentenceContract>> = {
  35. 'packages/bash/bash': { kind: 'indirect', reason: 'The service interface delegates all model rendering to dsh-tool-bash.' },
  36. 'packages/bash/bash-local': { kind: 'indirect', reason: 'The executor backend delegates model rendering to dsh-tool-bash.' },
  37. 'packages/code-runtime/code-runtime': { kind: 'indirect', reason: 'The service interface delegates model rendering to Code Mode in dsh-tools.' },
  38. 'packages/code-runtime/code-runtime-worker': { kind: 'indirect', reason: 'The worker backend delegates model rendering to Code Mode in dsh-tools.' },
  39. 'packages/examples/agent-spine-demo': { kind: 'indirect', reason: 'The bundle only mounts model-facing child plugins.' },
  40. 'packages/fs/fs': { kind: 'indirect', reason: 'The service interface delegates model rendering to dsh-tool-fs.' },
  41. 'packages/fs/fs-local': { kind: 'indirect', reason: 'The provider backend delegates model rendering to dsh-tool-fs.' },
  42. 'packages/hooks/hook-protocol': { kind: 'indirect', reason: 'Only the hook bridge plugins render decoded hook output to a model.' },
  43. 'packages/llm/llm': { kind: 'none', reason: 'The adapter registry forwards already-assembled requests unchanged.' },
  44. 'packages/sandbox/sandbox-local': { kind: 'indirect', reason: 'The provider backend delegates model rendering to dsh-bash-sandbox and dsh-tool-bash.' },
  45. 'packages/session-query/session-query': { kind: 'none', reason: 'The trusted query service exposes cloned records only to callers and registers no model surface.' },
  46. 'packages/skill/skill': { kind: 'indirect', reason: 'The provider registry delegates model rendering to dsh-tool-skill.' },
  47. 'packages/skill/skill-local': { kind: 'indirect', reason: 'The provider backend delegates model rendering to dsh-tool-skill.' },
  48. 'packages/subagent/subagent': { kind: 'indirect', reason: 'The provider registry delegates parent-model rendering to dsh-tool-subagent.' },
  49. 'packages/subagent/subagent-subprocess': { kind: 'indirect', reason: 'Only process-based subagent backends compose a child model request.' },
  50. 'packages/support/acp-snapshot': { kind: 'none', reason: 'The test harness observes and normalizes transcripts without changing live requests.' },
  51. 'packages/support/invariants': { kind: 'none', reason: 'The observer validates requests but never rewrites their context.' },
  52. 'packages/support/loader-smoke': { kind: 'none', reason: 'The test harness observes child-process streams without changing live requests.' },
  53. 'packages/support/llm-replay': { kind: 'none', reason: 'The keyless adapter invokes no provider model.' },
  54. 'packages/support/subagent-mock': { kind: 'indirect', reason: 'Only dsh-tool-subagent renders its configured test outcome.' },
  55. 'packages/examples/acp-demo': { kind: 'indirect', reason: 'The app bundle delegates request composition to dsh-agent-spine-demo and dsh-acp.' },
  56. 'packages/ui/app-boot': { kind: 'indirect', reason: 'Only the loaded plugin tree contributes model context.' },
  57. 'packages/examples/jsonrpc-demo': { kind: 'indirect', reason: 'Only the externally configured plugin tree contributes model context.' },
  58. 'packages/ui/permission': { kind: 'indirect', reason: 'The service writes mechanism events rendered by dsh-user-approval and dsh-tool-bash.' },
  59. 'packages/ui/user-interaction': { kind: 'indirect', reason: 'Model-facing consumers render provider answers and seam errors.' },
  60. 'packages/util/timeout': { kind: 'indirect', reason: 'Only timeout consumers render timeout outcomes.' },
  61. 'packages/web/web': { kind: 'indirect', reason: 'The provider registry delegates model rendering to dsh-tool-web.' },
  62. 'packages/web/web-fetch-local': { kind: 'indirect', reason: 'The provider backend delegates model rendering to dsh-tool-web.' },
  63. 'packages/web/web-search-exa': { kind: 'indirect', reason: 'The provider backend delegates model rendering to dsh-tool-web.' },
  64. 'packages/workflow/workflow': { kind: 'indirect', reason: 'The service delegates parent and child model rendering to its consumer and engine.' },
  65. }
  66. interface Failure {
  67. path: string
  68. message: string
  69. }
  70. type Line = MarkdownProseLine
  71. interface ContextSurface {
  72. heading: Line
  73. modelView: Line
  74. tokenEffect: Line
  75. title: string
  76. verbatimBlocks: number
  77. }
  78. /** Validate H4-plus-markdown literals nested after one context surface's fields. */
  79. function validateNestedVerbatim(raw: readonly string[]): { blocks: number; error?: string } {
  80. let cursor = 0
  81. while (raw[cursor]?.trim().length === 0) cursor += 1
  82. if (cursor === raw.length) return { blocks: 0 }
  83. let blocks = 0
  84. const fragments = new Set<string>()
  85. while (true) {
  86. while (raw[cursor]?.trim().length === 0) cursor += 1
  87. if (cursor === raw.length) break
  88. if (!/^#### \S/.test(raw[cursor] ?? '')) {
  89. return { blocks, error: 'content after Token effect must be a titled H4 verbatim block' }
  90. }
  91. const title = (raw[cursor] as string).slice('#### '.length)
  92. const fragment = headingFragment(title)
  93. if (fragment.length === 0) return { blocks, error: 'verbatim H4 title must be non-empty' }
  94. if (fragments.has(fragment)) {
  95. return { blocks, error: `verbatim H4 title ${JSON.stringify(title)} is duplicated within its context surface` }
  96. }
  97. fragments.add(fragment)
  98. cursor += 1
  99. while (raw[cursor]?.trim().length === 0) cursor += 1
  100. if (raw[cursor] !== '```markdown') {
  101. return { blocks, error: 'each nested verbatim H4 requires an exact ```markdown fence' }
  102. }
  103. cursor += 1
  104. const contentStart = cursor
  105. while (cursor < raw.length && raw[cursor] !== '```') cursor += 1
  106. if (cursor === raw.length) return { blocks, error: 'unterminated nested ```markdown fence' }
  107. if (cursor === contentStart) return { blocks, error: 'nested ```markdown fence must not be empty' }
  108. cursor += 1
  109. blocks += 1
  110. }
  111. return { blocks }
  112. }
  113. /** GitHub-style fragment for the simple ASCII H4 titles allowed by this contract. */
  114. function headingFragment(title: string): string {
  115. return title.toLowerCase().replaceAll('`', '').replaceAll(/[^a-z0-9 _-]/g, '').trim().replaceAll(/\s+/g, '-')
  116. }
  117. /** A direct stable system-prompt contribution, as named by the README contract. */
  118. function isDirectSystemPromptSurface(title: string): boolean {
  119. return /\bsystem prompt\b/i.test(title)
  120. }
  121. /** Anchored generated-catalog links in one model-view field. */
  122. function toolCatalogLinkFragments(text: string): string[] {
  123. return [...text.matchAll(/\]\(\.\.\/\.\.\/\.\.\/docs\/tool-catalog\.md#([a-z0-9_-]+)\)/g)]
  124. .map(match => match[1] as string)
  125. }
  126. const toolCatalogFragments = new Set<string>()
  127. for (const line of readFileSync(resolve(root, 'docs/tool-catalog.md'), 'utf8').split('\n')) {
  128. const title = /^## (.+)$/.exec(line)?.[1]
  129. if (title !== undefined) toolCatalogFragments.add(headingFragment(title))
  130. }
  131. const failures: Failure[] = []
  132. const packageJsons = globSync('packages/*/*/package.json', { cwd: root }).map(path => path.split(sep).join('/')).sort()
  133. const scannedPackages = new Set(packageJsons.map(path => path.slice(0, -'/package.json'.length)))
  134. let structuredCount = 0
  135. let contextSurfaceCount = 0
  136. let omittedSectionCount = 0
  137. let explainedNoneCount = 0
  138. let indirectCount = 0
  139. let verbatimBlockCount = 0
  140. let systemPromptSurfaceCount = 0
  141. let toolSchemaSurfaceCount = 0
  142. for (const [pkg, reason] of Object.entries(NO_MODEL_EXPERIENCE_SECTION)) {
  143. if (!scannedPackages.has(pkg)) {
  144. failures.push({ path: `${pkg}/README.md`, message: 'no-section allowlist entry does not name a scanned package' })
  145. }
  146. if (reason.trim().length === 0) {
  147. failures.push({ path: `${pkg}/README.md`, message: 'no-section allowlist entry must retain its audit justification' })
  148. }
  149. if (SENTENCE_MODEL_EXPERIENCE[pkg] !== undefined) {
  150. failures.push({ path: `${pkg}/README.md`, message: 'package cannot appear in both Model Experience allowlists' })
  151. }
  152. }
  153. for (const [pkg, contract] of Object.entries(SENTENCE_MODEL_EXPERIENCE)) {
  154. if (!scannedPackages.has(pkg)) {
  155. failures.push({ path: `${pkg}/README.md`, message: 'sentence allowlist entry does not name a scanned package' })
  156. }
  157. if (contract.reason.trim().length === 0) {
  158. failures.push({ path: `${pkg}/README.md`, message: 'sentence allowlist entry must justify why structured context surfaces are unnecessary' })
  159. }
  160. }
  161. for (const packageJson of packageJsons) {
  162. const pkg = packageJson.slice(0, -'/package.json'.length)
  163. const readme = packageJson.replace(/package\.json$/, 'README.md')
  164. const abs = resolve(root, readme)
  165. if (!existsSync(abs)) {
  166. failures.push({ path: readme, message: 'missing package README' })
  167. continue
  168. }
  169. const text = readFileSync(abs, 'utf8')
  170. const rawLines = text.split('\n')
  171. const lines = markdownProseLines(text)
  172. const headings = markdownHeadingLines(text)
  173. const h2Headings = headings.filter(heading => heading.depth === 2)
  174. const modelExperienceHeadings = headings.filter(heading => heading.text
  175. .trim().replaceAll(/\s+/g, ' ').toLowerCase() === 'model experience')
  176. const modelHeadings = modelExperienceHeadings.filter(heading => heading.depth === 2 && heading.raw === HEADING)
  177. if (NO_MODEL_EXPERIENCE_SECTION[pkg] !== undefined) {
  178. if (modelExperienceHeadings.length !== 0) {
  179. for (const heading of modelExperienceHeadings) {
  180. failures.push({ path: readme, message: `line ${heading.index}: audited model-agnostic package must omit every Model Experience heading; found ${JSON.stringify(heading.raw)}` })
  181. }
  182. } else {
  183. omittedSectionCount += 1
  184. }
  185. continue
  186. }
  187. const nonCanonicalModelHeading = modelExperienceHeadings.find(heading => heading.depth !== 2 || heading.raw !== HEADING)
  188. if (nonCanonicalModelHeading !== undefined) {
  189. failures.push({ path: readme, message: `line ${nonCanonicalModelHeading.index}: non-canonical Model Experience heading ${JSON.stringify(nonCanonicalModelHeading.raw)}; use exactly ${JSON.stringify(HEADING)}` })
  190. continue
  191. }
  192. const modelHeading = modelHeadings.at(0)
  193. if (modelHeading === undefined) {
  194. failures.push({
  195. path: readme,
  196. message: `missing ${HEADING}`,
  197. })
  198. continue
  199. }
  200. if (modelHeadings.length !== 1) {
  201. failures.push({ path: readme, message: `contains ${modelHeadings.length} copies of ${HEADING}` })
  202. continue
  203. }
  204. const modelH2Index = h2Headings.indexOf(modelHeading)
  205. const limitationsH2Index = h2Headings.findIndex(heading => heading.depth === 2 && heading.raw === LIMITATIONS_HEADING)
  206. if (limitationsH2Index >= 0) {
  207. if (modelH2Index !== h2Headings.length - 2 || limitationsH2Index !== h2Headings.length - 1) {
  208. failures.push({
  209. path: readme,
  210. message: `${HEADING} and ${LIMITATIONS_HEADING} must be the final two H2 sections, in that order`,
  211. })
  212. continue
  213. }
  214. } else if (modelH2Index !== h2Headings.length - 1) {
  215. failures.push({ path: readme, message: `${HEADING} must be the final H2 when ${LIMITATIONS_HEADING} is absent` })
  216. continue
  217. }
  218. const modelHeadingAt = lines.findIndex(line => line.index === modelHeading.index)
  219. const body = lines.slice(modelHeadingAt + 1)
  220. const h2Lines = new Set(h2Headings.map(heading => heading.index))
  221. const nextH2 = body.findIndex(line => h2Lines.has(line.index))
  222. const section = nextH2 < 0 ? body : body.slice(0, nextH2)
  223. const nextH2Line = nextH2 < 0 ? rawLines.length + 1 : (body[nextH2] as Line).index
  224. const rawSection = rawLines.slice(modelHeading.index, nextH2Line - 1)
  225. const content = section.filter(line => line.raw.trim().length > 0)
  226. const sentenceContract = SENTENCE_MODEL_EXPERIENCE[pkg]
  227. if (sentenceContract !== undefined) {
  228. const pattern = sentenceContract.kind === 'none' ? /^None, as .+\.$/ : /^Indirectly, through .+\.$/
  229. const rawContent = rawSection.filter(line => line.trim().length > 0)
  230. if (content.length !== 1 || rawContent.length !== 1 || !pattern.test(content[0]?.raw ?? '')) {
  231. const prefix = sentenceContract.kind === 'none' ? 'None, as ' : 'Indirectly, through '
  232. failures.push({ path: readme, message: `must contain exactly one sentence beginning ${JSON.stringify(prefix)} and ending with a period` })
  233. continue
  234. }
  235. if (sentenceContract.kind === 'none') explainedNoneCount += 1
  236. else indirectCount += 1
  237. continue
  238. }
  239. const shortSentence = content.find(line => line.raw === 'None.' || /^None, as |^Indirectly, through /.test(line.raw))
  240. if (shortSentence !== undefined) {
  241. failures.push({ path: readme, message: `line ${shortSentence.index}: short Model Experience form requires an audited entry in SENTENCE_MODEL_EXPERIENCE` })
  242. continue
  243. }
  244. const surfaceStarts = content
  245. .map((line, index) => ({ line, index }))
  246. .filter(entry => /^### \S/.test(entry.line.raw))
  247. if (surfaceStarts.length === 0 || surfaceStarts[0]?.index !== 0) {
  248. failures.push({ path: readme, message: 'must contain one or more complete context-surface blocks' })
  249. continue
  250. }
  251. const surfaces: ContextSurface[] = []
  252. const surfaceFragments = new Set<string>()
  253. let surfaceError = false
  254. for (let surfaceIndex = 0; surfaceIndex < surfaceStarts.length; surfaceIndex += 1) {
  255. const start = surfaceStarts[surfaceIndex] as { line: Line; index: number }
  256. const end = surfaceStarts[surfaceIndex + 1]?.index ?? content.length
  257. const entries = content.slice(start.index, end)
  258. const heading = entries[0] as Line
  259. const modelView = entries[1]
  260. const tokenEffect = entries[2]
  261. const title = heading.raw.slice('### '.length)
  262. const fragment = headingFragment(title)
  263. if (fragment.length === 0) {
  264. failures.push({ path: readme, message: `line ${heading.index}: each context surface requires a non-empty H3 heading` })
  265. surfaceError = true
  266. break
  267. }
  268. if (surfaceFragments.has(fragment)) {
  269. failures.push({ path: readme, message: `line ${heading.index}: duplicate context-surface link fragment ${JSON.stringify(fragment)}` })
  270. surfaceError = true
  271. break
  272. }
  273. if (modelView === undefined || !modelView.raw.startsWith(`${MODEL_VIEW_LABEL}: `) || modelView.raw.slice(`${MODEL_VIEW_LABEL}: `.length).trim().length === 0) {
  274. failures.push({ path: readme, message: `line ${modelView?.index ?? heading.index}: context surface requires non-empty ${MODEL_VIEW_LABEL}: text` })
  275. surfaceError = true
  276. break
  277. }
  278. if (tokenEffect === undefined || !tokenEffect.raw.startsWith(`${TOKEN_EFFECT_LABEL}: `) || tokenEffect.raw.slice(`${TOKEN_EFFECT_LABEL}: `.length).trim().length === 0) {
  279. failures.push({ path: readme, message: `line ${tokenEffect?.index ?? heading.index}: context surface requires non-empty ${TOKEN_EFFECT_LABEL}: text` })
  280. surfaceError = true
  281. break
  282. }
  283. if ((surfaceIndex === 0 && heading.index !== modelHeading.index + 2)
  284. || rawLines[heading.index - 2]?.trim().length !== 0
  285. || modelView.index !== heading.index + 2
  286. || tokenEffect.index !== modelView.index + 2) {
  287. failures.push({ path: readme, message: `line ${heading.index}: context-surface heading and fields require one blank line between each element` })
  288. surfaceError = true
  289. break
  290. }
  291. const unexpected = entries.slice(3).find(line => !/^#### \S/.test(line.raw))
  292. if (unexpected !== undefined) {
  293. failures.push({ path: readme, message: `line ${unexpected.index}: content after ${TOKEN_EFFECT_LABEL} must be a titled H4 plus \`markdown\` fence inside this context surface` })
  294. surfaceError = true
  295. break
  296. }
  297. const nextHeadingLine = surfaceStarts[surfaceIndex + 1]?.line.index ?? nextH2Line
  298. const verbatim = validateNestedVerbatim(rawLines.slice(tokenEffect.index, nextHeadingLine - 1))
  299. if (verbatim.error !== undefined) {
  300. failures.push({ path: readme, message: `line ${tokenEffect.index}: ${verbatim.error}` })
  301. surfaceError = true
  302. break
  303. }
  304. if (entries.length - 3 !== verbatim.blocks) {
  305. failures.push({ path: readme, message: `line ${tokenEffect.index}: every nested H4 must own exactly one \`markdown\` fence` })
  306. surfaceError = true
  307. break
  308. }
  309. if (/\]\(#[^)]+\)/.test(modelView.raw) || /\]\(#[^)]+\)/.test(tokenEffect.raw)) {
  310. failures.push({ path: readme, message: `line ${heading.index}: Model Experience fields must not link between local subsections; nest the H4 in its owning H3` })
  311. surfaceError = true
  312. break
  313. }
  314. surfaceFragments.add(fragment)
  315. surfaces.push({ heading, modelView, tokenEffect, title, verbatimBlocks: verbatim.blocks })
  316. }
  317. if (surfaceError) continue
  318. const promptWithoutVerbatim = surfaces.find(surface => isDirectSystemPromptSurface(surface.title)
  319. && surface.verbatimBlocks === 0)
  320. if (promptWithoutVerbatim !== undefined) {
  321. failures.push({ path: readme, message: `line ${promptWithoutVerbatim.heading.index}: system-prompt surface must contain a titled H4 plus verbatim \`markdown\` block` })
  322. continue
  323. }
  324. const hasConcreteLiteral = surfaces.some(surface => surface.verbatimBlocks > 0
  325. || surface.modelView.raw.includes('`')
  326. || surface.tokenEffect.raw.includes('`')
  327. || toolCatalogLinkFragments(surface.modelView.raw).length > 0)
  328. if (!hasConcreteLiteral) {
  329. failures.push({ path: readme, message: 'structured Model Experience must ground at least one surface with inline code, a nested `markdown` block, or an anchored tool-catalog link' })
  330. continue
  331. }
  332. let catalogError = false
  333. for (const surface of surfaces) {
  334. if (!/\bschemas?\b/i.test(surface.title)) continue
  335. const fragments = toolCatalogLinkFragments(surface.modelView.raw)
  336. if (fragments.length === 0) {
  337. failures.push({ path: readme, message: `line ${surface.heading.index}: tool-schema surface must link an anchored section of ../../../docs/tool-catalog.md` })
  338. catalogError = true
  339. break
  340. }
  341. const invalid = fragments.find(fragment => !toolCatalogFragments.has(fragment))
  342. if (invalid !== undefined) {
  343. failures.push({ path: readme, message: `line ${surface.modelView.index}: tool-catalog link fragment ${JSON.stringify(invalid)} does not name an H2 section` })
  344. catalogError = true
  345. break
  346. }
  347. }
  348. if (catalogError) continue
  349. verbatimBlockCount += surfaces.reduce((total, surface) => total + surface.verbatimBlocks, 0)
  350. contextSurfaceCount += surfaces.length
  351. systemPromptSurfaceCount += surfaces.filter(surface => isDirectSystemPromptSurface(surface.title)).length
  352. toolSchemaSurfaceCount += surfaces.filter(surface => /\bschemas?\b/i.test(surface.title)).length
  353. structuredCount += 1
  354. }
  355. if (failures.length === 0) {
  356. console.log(`verify-package-readme-model-experience: ${packageJsons.length} README(s) checked (${omittedSectionCount} audited omissions, ${structuredCount} structured, ${contextSurfaceCount} context surfaces, ${systemPromptSurfaceCount} fenced system-prompt surfaces, ${toolSchemaSurfaceCount} catalog-linked tool-schema surfaces, ${explainedNoneCount} explained none, ${indirectCount} indirect, ${verbatimBlockCount} verbatim markdown blocks), all conform.`)
  357. process.exit(0)
  358. }
  359. console.error('verify-package-readme-model-experience failed:')
  360. for (const failure of failures) {
  361. console.error(` ${relative(root, resolve(root, failure.path))}: ${failure.message}`)
  362. }
  363. process.exit(1)