project-tiny-context-harness 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1070) hide show
  1. package/README.md +73 -543
  2. package/assets/agents/AGENTS_CORE.md +11 -87
  3. package/assets/tools/context_rules.json +2 -1
  4. package/dist/commands/context-inspect.js +19 -89
  5. package/dist/commands/context-list.d.ts +1 -0
  6. package/dist/commands/context-list.js +24 -0
  7. package/dist/commands/context.js +4 -0
  8. package/dist/commands/doctor.js +1 -18
  9. package/dist/commands/index.js +33 -63
  10. package/dist/commands/init.d.ts +0 -2
  11. package/dist/commands/init.js +26 -108
  12. package/dist/commands/upgrade.js +14 -2
  13. package/dist/commands/validate.js +1 -1
  14. package/dist/index.d.ts +0 -1
  15. package/dist/index.js +0 -1
  16. package/dist/lib/config.js +14 -45
  17. package/dist/lib/constants.d.ts +1 -1
  18. package/dist/lib/constants.js +1 -1
  19. package/dist/lib/context-catalog/catalog-default-footprint.d.ts +1 -1
  20. package/dist/lib/context-catalog/catalog-default-footprint.js +5 -7
  21. package/dist/lib/context-catalog/catalog-load.js +19 -1
  22. package/dist/lib/context-catalog/catalog-path-validation.js +10 -0
  23. package/dist/lib/context-catalog/catalog-validation.js +13 -5
  24. package/dist/lib/context-controlling-source.d.ts +4 -0
  25. package/dist/lib/context-controlling-source.js +106 -0
  26. package/dist/lib/context-create/context-create.js +2 -0
  27. package/dist/lib/context-default-footprint.js +2 -0
  28. package/dist/lib/context-doctor/context-doctor-types.d.ts +0 -10
  29. package/dist/lib/context-doctor/context-doctor-types.js +0 -12
  30. package/dist/lib/context-export.js +17 -9
  31. package/dist/lib/context-inspect/context-inspect-projection.d.ts +1 -2
  32. package/dist/lib/context-inspect/context-inspect-projection.js +0 -1
  33. package/dist/lib/context-inspect/context-inspect-render.js +0 -8
  34. package/dist/lib/context-inspect/context-inspect-types.d.ts +0 -14
  35. package/dist/lib/context-inspect/context-inspect.js +0 -27
  36. package/dist/lib/context-manifest-schema.d.ts +1 -0
  37. package/dist/lib/context-manifest-schema.js +2 -1
  38. package/dist/lib/context-manifest.js +1 -41
  39. package/dist/lib/context-markdown/context-markdown-analysis.js +8 -0
  40. package/dist/lib/context-markdown/context-markdown-extract.d.ts +2 -1
  41. package/dist/lib/context-markdown/context-markdown-extract.js +20 -0
  42. package/dist/lib/context-markdown/context-markdown-types.d.ts +26 -0
  43. package/dist/lib/context-move/context-move.js +3 -2
  44. package/dist/lib/context-mutation/manifest-lossless-patch.js +11 -0
  45. package/dist/lib/context-mutation/mutation-commit.js +2 -2
  46. package/dist/lib/context-mutation/mutation-interlock.d.ts +1 -0
  47. package/dist/lib/context-mutation/mutation-interlock.js +9 -0
  48. package/dist/lib/context-mutation/mutation-recovery.js +3 -3
  49. package/dist/lib/context-register/context-register.js +3 -0
  50. package/dist/lib/context-templates.d.ts +0 -4
  51. package/dist/lib/context-templates.js +1 -210
  52. package/dist/lib/doctor.d.ts +2 -2
  53. package/dist/lib/doctor.js +44 -133
  54. package/dist/lib/init.js +34 -39
  55. package/dist/lib/maintenance-lock.d.ts +3 -0
  56. package/dist/lib/maintenance-lock.js +203 -0
  57. package/dist/lib/maintenance-write.d.ts +3 -0
  58. package/dist/lib/maintenance-write.js +55 -0
  59. package/dist/lib/migrations.d.ts +1 -20
  60. package/dist/lib/migrations.js +48 -755
  61. package/dist/lib/package-json-config.js +34 -21
  62. package/dist/lib/package-source.js +27 -14
  63. package/dist/lib/repository-path-safety.d.ts +2 -0
  64. package/dist/lib/repository-path-safety.js +20 -0
  65. package/dist/lib/retirement-assets.d.ts +13 -0
  66. package/dist/lib/retirement-assets.js +182 -0
  67. package/dist/lib/retirement-binding.d.ts +10 -0
  68. package/dist/lib/retirement-binding.js +59 -0
  69. package/dist/lib/retirement-defaults.d.ts +7 -0
  70. package/dist/lib/retirement-defaults.js +29 -0
  71. package/dist/lib/retirement-plan.d.ts +10 -0
  72. package/dist/lib/retirement-plan.js +96 -0
  73. package/dist/lib/retirement-preflight.d.ts +2 -0
  74. package/dist/lib/retirement-preflight.js +13 -0
  75. package/dist/lib/retirement-references.d.ts +6 -0
  76. package/dist/lib/retirement-references.js +102 -0
  77. package/dist/lib/retirement-runner.d.ts +22 -0
  78. package/dist/lib/retirement-runner.js +217 -0
  79. package/dist/lib/schema-guard.d.ts +1 -0
  80. package/dist/lib/schema-guard.js +47 -6
  81. package/dist/lib/source-files.d.ts +0 -2
  82. package/dist/lib/source-files.js +0 -21
  83. package/dist/lib/source-pack-export.js +4 -1
  84. package/dist/lib/source-pack-manifest.js +93 -38
  85. package/dist/lib/sync-engine.d.ts +7 -1
  86. package/dist/lib/sync-engine.js +38 -336
  87. package/dist/lib/types.d.ts +0 -19
  88. package/dist/lib/upgrade.d.ts +3 -2
  89. package/dist/lib/upgrade.js +30 -40
  90. package/dist/lib/validators.d.ts +3 -3
  91. package/dist/lib/validators.js +72 -401
  92. package/dist/public-api-core.d.ts +14 -11
  93. package/dist/public-api-core.js +14 -11
  94. package/dist/public-types.d.ts +7 -13
  95. package/migrations/README.md +19 -178
  96. package/migrations/schema-4-owned-assets.json +170 -0
  97. package/package.json +14 -20
  98. package/source-mappings.yaml +3 -39
  99. package/assets/README.md +0 -944
  100. package/assets/README.zh-CN.md +0 -556
  101. package/assets/agents/.gitkeep +0 -1
  102. package/assets/agents/long-task-implementation.toml +0 -15
  103. package/assets/context_templates/architecture.md +0 -37
  104. package/assets/context_templates/area.md +0 -40
  105. package/assets/context_templates/context.toml +0 -46
  106. package/assets/context_templates/deployment.md +0 -35
  107. package/assets/context_templates/global.md +0 -57
  108. package/assets/context_templates/product-surface-contract.md +0 -70
  109. package/assets/context_templates/screen-contract.md +0 -205
  110. package/assets/context_templates/verification.md +0 -35
  111. package/assets/github/.gitkeep +0 -1
  112. package/assets/github/harness.yml +0 -41
  113. package/assets/make/.gitkeep +0 -1
  114. package/assets/make/ty-context.mk +0 -48
  115. package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_helpers.cs +0 -301
  116. package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_run.cs +0 -197
  117. package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_types.cs +0 -215
  118. package/assets/runtime/windows-job-supervisor/windows_job_process_supervisor.ps1 +0 -117
  119. package/assets/skills/context_development_engineer/SKILL.md +0 -58
  120. package/assets/skills/context_development_engineer/references/engineering-design-reasoning.md +0 -93
  121. package/assets/skills/context_full_project_export/SKILL.md +0 -70
  122. package/assets/skills/context_harness_upgrade/SKILL.md +0 -60
  123. package/assets/skills/context_product_plan/SKILL.md +0 -42
  124. package/assets/skills/context_surface_contract/SKILL.md +0 -205
  125. package/assets/skills/context_uiux_design/SKILL.md +0 -53
  126. package/assets/skills/context_uiux_design/references/task-uiux-analysis.md +0 -82
  127. package/assets/skills/design-resource-authoring/SKILL.md +0 -63
  128. package/assets/skills/design-resource-authoring/references/authority-delta-assessment.md +0 -52
  129. package/assets/skills/design-resource-authoring/references/downstream-handoff.md +0 -67
  130. package/assets/skills/design-resource-authoring/references/formal-selected-web-app-handoff.md +0 -114
  131. package/assets/skills/design-resource-authoring/references/implementation-feasibility.md +0 -111
  132. package/assets/skills/design-resource-authoring/references/open-design-provider.md +0 -198
  133. package/assets/skills/design-resource-authoring/references/recovery-and-writeback.md +0 -205
  134. package/assets/skills/design-resource-authoring/references/resource-selection.md +0 -290
  135. package/assets/skills/design-system-authoring/SKILL.md +0 -63
  136. package/assets/skills/design-system-authoring/agents/openai.yaml +0 -6
  137. package/assets/skills/design-system-authoring/references/authority-adoption.md +0 -58
  138. package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md +0 -114
  139. package/assets/skills/long-task-workflow/SKILL.md +0 -75
  140. package/assets/skills/long-task-workflow/agents/openai.yaml +0 -6
  141. package/assets/skills/long-task-workflow/references/authority-lifecycle.md +0 -86
  142. package/assets/skills/long-task-workflow/references/contract-authoring.md +0 -152
  143. package/assets/skills/long-task-workflow/references/evidence-design.md +0 -132
  144. package/assets/skills/long-task-workflow/references/source-authoring.md +0 -126
  145. package/assets/tools/validate_context.py +0 -667
  146. package/dist/commands/check-modularity.d.ts +0 -1
  147. package/dist/commands/check-modularity.js +0 -181
  148. package/dist/commands/composite-campaign.d.ts +0 -1
  149. package/dist/commands/composite-campaign.js +0 -8
  150. package/dist/commands/composite-long-task.d.ts +0 -1
  151. package/dist/commands/composite-long-task.js +0 -8
  152. package/dist/commands/delivery-set.d.ts +0 -1
  153. package/dist/commands/delivery-set.js +0 -8
  154. package/dist/commands/design-authority-delta.d.ts +0 -1
  155. package/dist/commands/design-authority-delta.js +0 -53
  156. package/dist/commands/design-authority.d.ts +0 -1
  157. package/dist/commands/design-authority.js +0 -104
  158. package/dist/commands/design-resource-recovery.d.ts +0 -1
  159. package/dist/commands/design-resource-recovery.js +0 -152
  160. package/dist/commands/design-resource.d.ts +0 -1
  161. package/dist/commands/design-resource.js +0 -132
  162. package/dist/commands/disable.d.ts +0 -1
  163. package/dist/commands/disable.js +0 -15
  164. package/dist/commands/enable.d.ts +0 -1
  165. package/dist/commands/enable.js +0 -16
  166. package/dist/commands/long-task-authoring.d.ts +0 -3
  167. package/dist/commands/long-task-authoring.js +0 -234
  168. package/dist/commands/long-task-command-args.d.ts +0 -4
  169. package/dist/commands/long-task-command-args.js +0 -26
  170. package/dist/commands/long-task-explain.d.ts +0 -1
  171. package/dist/commands/long-task-explain.js +0 -52
  172. package/dist/commands/long-task-revision.d.ts +0 -1
  173. package/dist/commands/long-task-revision.js +0 -177
  174. package/dist/commands/long-task-workdir.d.ts +0 -2
  175. package/dist/commands/long-task-workdir.js +0 -23
  176. package/dist/commands/long-task.d.ts +0 -1
  177. package/dist/commands/long-task.js +0 -212
  178. package/dist/commands/route.d.ts +0 -15
  179. package/dist/commands/route.js +0 -142
  180. package/dist/lib/compact-authoring-support.d.ts +0 -22
  181. package/dist/lib/compact-authoring-support.js +0 -143
  182. package/dist/lib/compact-shared-structure-authoring.d.ts +0 -5
  183. package/dist/lib/compact-shared-structure-authoring.js +0 -9
  184. package/dist/lib/compact-shared-structure-types.d.ts +0 -61
  185. package/dist/lib/compact-shared-structure-types.js +0 -1
  186. package/dist/lib/compact-shared-structure-validation.d.ts +0 -2
  187. package/dist/lib/compact-shared-structure-validation.js +0 -159
  188. package/dist/lib/compact-shared-structures.d.ts +0 -3
  189. package/dist/lib/compact-shared-structures.js +0 -204
  190. package/dist/lib/context-doctor/context-doctor.d.ts +0 -2
  191. package/dist/lib/context-doctor/context-doctor.js +0 -130
  192. package/dist/lib/context-graph-snapshot.d.ts +0 -23
  193. package/dist/lib/context-graph-snapshot.js +0 -199
  194. package/dist/lib/context-mutation/mutation-long-task-guard.d.ts +0 -6
  195. package/dist/lib/context-mutation/mutation-long-task-guard.js +0 -57
  196. package/dist/lib/context-router/context-route-budget.d.ts +0 -15
  197. package/dist/lib/context-router/context-route-budget.js +0 -14
  198. package/dist/lib/context-router/context-route-candidates.d.ts +0 -15
  199. package/dist/lib/context-router/context-route-candidates.js +0 -112
  200. package/dist/lib/context-router/context-route-order.d.ts +0 -6
  201. package/dist/lib/context-router/context-route-order.js +0 -53
  202. package/dist/lib/context-router/context-route-paths.d.ts +0 -16
  203. package/dist/lib/context-router/context-route-paths.js +0 -109
  204. package/dist/lib/context-router/context-route-render.d.ts +0 -2
  205. package/dist/lib/context-router/context-route-render.js +0 -32
  206. package/dist/lib/context-router/context-route-scan.d.ts +0 -18
  207. package/dist/lib/context-router/context-route-scan.js +0 -156
  208. package/dist/lib/context-router/context-route-selection.d.ts +0 -16
  209. package/dist/lib/context-router/context-route-selection.js +0 -72
  210. package/dist/lib/context-router/context-route-terms.d.ts +0 -13
  211. package/dist/lib/context-router/context-route-terms.js +0 -202
  212. package/dist/lib/context-router/context-route-types.d.ts +0 -101
  213. package/dist/lib/context-router/context-route-types.js +0 -1
  214. package/dist/lib/context-router/context-route.d.ts +0 -2
  215. package/dist/lib/context-router/context-route.js +0 -127
  216. package/dist/lib/context-units-migration.d.ts +0 -13
  217. package/dist/lib/context-units-migration.js +0 -217
  218. package/dist/lib/design-authority-binding.d.ts +0 -7
  219. package/dist/lib/design-authority-binding.js +0 -96
  220. package/dist/lib/design-authority-closure.d.ts +0 -3
  221. package/dist/lib/design-authority-closure.js +0 -201
  222. package/dist/lib/design-authority-delta-codec-primitives.d.ts +0 -10
  223. package/dist/lib/design-authority-delta-codec-primitives.js +0 -58
  224. package/dist/lib/design-authority-delta-codec.d.ts +0 -2
  225. package/dist/lib/design-authority-delta-codec.js +0 -193
  226. package/dist/lib/design-authority-delta-types.d.ts +0 -65
  227. package/dist/lib/design-authority-delta-types.js +0 -6
  228. package/dist/lib/design-authority-delta-validation.d.ts +0 -2
  229. package/dist/lib/design-authority-delta-validation.js +0 -16
  230. package/dist/lib/design-authority-digest.d.ts +0 -8
  231. package/dist/lib/design-authority-digest.js +0 -36
  232. package/dist/lib/design-authority-files.d.ts +0 -9
  233. package/dist/lib/design-authority-files.js +0 -62
  234. package/dist/lib/design-authority-format.d.ts +0 -2
  235. package/dist/lib/design-authority-format.js +0 -93
  236. package/dist/lib/design-authority-links.d.ts +0 -10
  237. package/dist/lib/design-authority-links.js +0 -137
  238. package/dist/lib/design-authority-manifest.d.ts +0 -4
  239. package/dist/lib/design-authority-manifest.js +0 -144
  240. package/dist/lib/design-authority-tokens.d.ts +0 -9
  241. package/dist/lib/design-authority-tokens.js +0 -45
  242. package/dist/lib/design-authority-types.d.ts +0 -80
  243. package/dist/lib/design-authority-types.js +0 -23
  244. package/dist/lib/design-md-tool-adapter.d.ts +0 -9
  245. package/dist/lib/design-md-tool-adapter.js +0 -152
  246. package/dist/lib/design-md-tool-normalization.d.ts +0 -7
  247. package/dist/lib/design-md-tool-normalization.js +0 -78
  248. package/dist/lib/design-md-tool-types.d.ts +0 -99
  249. package/dist/lib/design-md-tool-types.js +0 -8
  250. package/dist/lib/design-md.d.ts +0 -12
  251. package/dist/lib/design-md.js +0 -169
  252. package/dist/lib/design-resource-fact-enums.d.ts +0 -24
  253. package/dist/lib/design-resource-fact-enums.js +0 -182
  254. package/dist/lib/design-resource-fact-locator-extractors.d.ts +0 -8
  255. package/dist/lib/design-resource-fact-locator-extractors.js +0 -108
  256. package/dist/lib/design-resource-fact-locator-resolver.d.ts +0 -3
  257. package/dist/lib/design-resource-fact-locator-resolver.js +0 -112
  258. package/dist/lib/design-resource-fact-locator-validation.d.ts +0 -5
  259. package/dist/lib/design-resource-fact-locator-validation.js +0 -16
  260. package/dist/lib/design-resource-fact-manifest-catalog.d.ts +0 -4
  261. package/dist/lib/design-resource-fact-manifest-catalog.js +0 -249
  262. package/dist/lib/design-resource-fact-manifest-model.d.ts +0 -91
  263. package/dist/lib/design-resource-fact-manifest-model.js +0 -21
  264. package/dist/lib/design-resource-fact-manifest-shape-axes.d.ts +0 -6
  265. package/dist/lib/design-resource-fact-manifest-shape-axes.js +0 -159
  266. package/dist/lib/design-resource-fact-manifest-shape-evidence.d.ts +0 -4
  267. package/dist/lib/design-resource-fact-manifest-shape-evidence.js +0 -59
  268. package/dist/lib/design-resource-fact-manifest-shape-facts.d.ts +0 -4
  269. package/dist/lib/design-resource-fact-manifest-shape-facts.js +0 -109
  270. package/dist/lib/design-resource-fact-manifest-shape-inspector.d.ts +0 -5
  271. package/dist/lib/design-resource-fact-manifest-shape-inspector.js +0 -144
  272. package/dist/lib/design-resource-fact-manifest-shape.d.ts +0 -7
  273. package/dist/lib/design-resource-fact-manifest-shape.js +0 -75
  274. package/dist/lib/design-resource-fact-manifest-types.d.ts +0 -3
  275. package/dist/lib/design-resource-fact-manifest-types.js +0 -3
  276. package/dist/lib/design-resource-fact-manifest-universe.d.ts +0 -5
  277. package/dist/lib/design-resource-fact-manifest-universe.js +0 -50
  278. package/dist/lib/design-resource-fact-manifest-validation.d.ts +0 -5
  279. package/dist/lib/design-resource-fact-manifest-validation.js +0 -111
  280. package/dist/lib/design-resource-fact-policy.d.ts +0 -43
  281. package/dist/lib/design-resource-fact-policy.js +0 -106
  282. package/dist/lib/design-resource-fact-property-methods.d.ts +0 -3
  283. package/dist/lib/design-resource-fact-property-methods.js +0 -158
  284. package/dist/lib/design-resource-fact-shape-primitives.d.ts +0 -3
  285. package/dist/lib/design-resource-fact-shape-primitives.js +0 -18
  286. package/dist/lib/design-resource-fact-types.d.ts +0 -164
  287. package/dist/lib/design-resource-fact-types.js +0 -1
  288. package/dist/lib/design-resource-fact-universe-assets.d.ts +0 -4
  289. package/dist/lib/design-resource-fact-universe-assets.js +0 -71
  290. package/dist/lib/design-resource-fact-universe-catalog.d.ts +0 -4
  291. package/dist/lib/design-resource-fact-universe-catalog.js +0 -161
  292. package/dist/lib/design-resource-fact-universe-conditions.d.ts +0 -2
  293. package/dist/lib/design-resource-fact-universe-conditions.js +0 -92
  294. package/dist/lib/design-resource-fact-universe-facts.d.ts +0 -4
  295. package/dist/lib/design-resource-fact-universe-facts.js +0 -108
  296. package/dist/lib/design-resource-fact-universe-helpers.d.ts +0 -30
  297. package/dist/lib/design-resource-fact-universe-helpers.js +0 -171
  298. package/dist/lib/design-resource-fact-universe-inspector.d.ts +0 -7
  299. package/dist/lib/design-resource-fact-universe-inspector.js +0 -119
  300. package/dist/lib/design-resource-fact-universe-proof.d.ts +0 -4
  301. package/dist/lib/design-resource-fact-universe-proof.js +0 -113
  302. package/dist/lib/design-resource-fact-universe-subjects.d.ts +0 -5
  303. package/dist/lib/design-resource-fact-universe-subjects.js +0 -97
  304. package/dist/lib/design-resource-fact-universe-variations.d.ts +0 -2
  305. package/dist/lib/design-resource-fact-universe-variations.js +0 -75
  306. package/dist/lib/design-resource-fact-value-validation.d.ts +0 -2
  307. package/dist/lib/design-resource-fact-value-validation.js +0 -80
  308. package/dist/lib/design-resource-handoff-bundle-draft.d.ts +0 -11
  309. package/dist/lib/design-resource-handoff-bundle-draft.js +0 -40
  310. package/dist/lib/design-resource-handoff-bundle.d.ts +0 -31
  311. package/dist/lib/design-resource-handoff-bundle.js +0 -152
  312. package/dist/lib/design-resource-handoff-file-primitives.d.ts +0 -4
  313. package/dist/lib/design-resource-handoff-file-primitives.js +0 -16
  314. package/dist/lib/design-resource-handoff-file-validation.d.ts +0 -2
  315. package/dist/lib/design-resource-handoff-file-validation.js +0 -47
  316. package/dist/lib/design-resource-handoff-input-types.d.ts +0 -14
  317. package/dist/lib/design-resource-handoff-input-types.js +0 -1
  318. package/dist/lib/design-resource-handoff-manifest-projection.d.ts +0 -4
  319. package/dist/lib/design-resource-handoff-manifest-projection.js +0 -41
  320. package/dist/lib/design-resource-handoff-parser.d.ts +0 -8
  321. package/dist/lib/design-resource-handoff-parser.js +0 -49
  322. package/dist/lib/design-resource-handoff-policy.d.ts +0 -4
  323. package/dist/lib/design-resource-handoff-policy.js +0 -143
  324. package/dist/lib/design-resource-handoff-set-integrity.d.ts +0 -8
  325. package/dist/lib/design-resource-handoff-set-integrity.js +0 -94
  326. package/dist/lib/design-resource-handoff-shape-evidence.d.ts +0 -6
  327. package/dist/lib/design-resource-handoff-shape-evidence.js +0 -187
  328. package/dist/lib/design-resource-handoff-shape-primitives.d.ts +0 -14
  329. package/dist/lib/design-resource-handoff-shape-primitives.js +0 -70
  330. package/dist/lib/design-resource-handoff-shape-structure.d.ts +0 -5
  331. package/dist/lib/design-resource-handoff-shape-structure.js +0 -239
  332. package/dist/lib/design-resource-handoff-shape.d.ts +0 -6
  333. package/dist/lib/design-resource-handoff-shape.js +0 -192
  334. package/dist/lib/design-resource-handoff-snapshot.d.ts +0 -6
  335. package/dist/lib/design-resource-handoff-snapshot.js +0 -25
  336. package/dist/lib/design-resource-handoff-types.d.ts +0 -264
  337. package/dist/lib/design-resource-handoff-types.js +0 -68
  338. package/dist/lib/design-resource-handoff-validation-coverage.d.ts +0 -4
  339. package/dist/lib/design-resource-handoff-validation-coverage.js +0 -223
  340. package/dist/lib/design-resource-handoff-validation-fact-cells.d.ts +0 -2
  341. package/dist/lib/design-resource-handoff-validation-fact-cells.js +0 -60
  342. package/dist/lib/design-resource-handoff-validation-fact-records.d.ts +0 -2
  343. package/dist/lib/design-resource-handoff-validation-fact-records.js +0 -90
  344. package/dist/lib/design-resource-handoff-validation-facts.d.ts +0 -2
  345. package/dist/lib/design-resource-handoff-validation-facts.js +0 -13
  346. package/dist/lib/design-resource-handoff-validation-primitives.d.ts +0 -11
  347. package/dist/lib/design-resource-handoff-validation-primitives.js +0 -26
  348. package/dist/lib/design-resource-handoff-validation-proofs.d.ts +0 -2
  349. package/dist/lib/design-resource-handoff-validation-proofs.js +0 -67
  350. package/dist/lib/design-resource-handoff-validation-resource-closure.d.ts +0 -3
  351. package/dist/lib/design-resource-handoff-validation-resource-closure.js +0 -88
  352. package/dist/lib/design-resource-handoff-validation-structure.d.ts +0 -6
  353. package/dist/lib/design-resource-handoff-validation-structure.js +0 -124
  354. package/dist/lib/design-resource-handoff-validation.d.ts +0 -8
  355. package/dist/lib/design-resource-handoff-validation.js +0 -177
  356. package/dist/lib/design-resource-handoff-web-dependency-validation.d.ts +0 -6
  357. package/dist/lib/design-resource-handoff-web-dependency-validation.js +0 -130
  358. package/dist/lib/design-resource-implementation-feasibility-model.d.ts +0 -35
  359. package/dist/lib/design-resource-implementation-feasibility-model.js +0 -62
  360. package/dist/lib/design-resource-implementation-feasibility-shape-sections.d.ts +0 -43
  361. package/dist/lib/design-resource-implementation-feasibility-shape-sections.js +0 -142
  362. package/dist/lib/design-resource-implementation-feasibility-shape.d.ts +0 -4
  363. package/dist/lib/design-resource-implementation-feasibility-shape.js +0 -154
  364. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.d.ts +0 -24
  365. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.js +0 -106
  366. package/dist/lib/design-resource-implementation-feasibility-source-decision.d.ts +0 -21
  367. package/dist/lib/design-resource-implementation-feasibility-source-decision.js +0 -75
  368. package/dist/lib/design-resource-implementation-feasibility-types.d.ts +0 -135
  369. package/dist/lib/design-resource-implementation-feasibility-types.js +0 -37
  370. package/dist/lib/design-resource-implementation-feasibility-validation-cells.d.ts +0 -5
  371. package/dist/lib/design-resource-implementation-feasibility-validation-cells.js +0 -125
  372. package/dist/lib/design-resource-implementation-feasibility-validation-document.d.ts +0 -4
  373. package/dist/lib/design-resource-implementation-feasibility-validation-document.js +0 -167
  374. package/dist/lib/design-resource-implementation-feasibility-validation-facts.d.ts +0 -3
  375. package/dist/lib/design-resource-implementation-feasibility-validation-facts.js +0 -76
  376. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.d.ts +0 -8
  377. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.js +0 -76
  378. package/dist/lib/design-resource-implementation-feasibility-validation-support.d.ts +0 -10
  379. package/dist/lib/design-resource-implementation-feasibility-validation-support.js +0 -75
  380. package/dist/lib/design-resource-implementation-feasibility-validation.d.ts +0 -3
  381. package/dist/lib/design-resource-implementation-feasibility-validation.js +0 -138
  382. package/dist/lib/design-resource-reconciliation-codec.d.ts +0 -2
  383. package/dist/lib/design-resource-reconciliation-codec.js +0 -174
  384. package/dist/lib/design-resource-reconciliation-types.d.ts +0 -62
  385. package/dist/lib/design-resource-reconciliation-types.js +0 -1
  386. package/dist/lib/design-resource-reconciliation.d.ts +0 -3
  387. package/dist/lib/design-resource-reconciliation.js +0 -224
  388. package/dist/lib/design-resource-recovery-authority-policy.d.ts +0 -8
  389. package/dist/lib/design-resource-recovery-authority-policy.js +0 -123
  390. package/dist/lib/design-resource-recovery-catalog-resources.d.ts +0 -6
  391. package/dist/lib/design-resource-recovery-catalog-resources.js +0 -121
  392. package/dist/lib/design-resource-recovery-catalog-shape.d.ts +0 -3
  393. package/dist/lib/design-resource-recovery-catalog-shape.js +0 -104
  394. package/dist/lib/design-resource-recovery-catalog.d.ts +0 -9
  395. package/dist/lib/design-resource-recovery-catalog.js +0 -103
  396. package/dist/lib/design-resource-recovery-cleanup.d.ts +0 -2
  397. package/dist/lib/design-resource-recovery-cleanup.js +0 -11
  398. package/dist/lib/design-resource-recovery-codec-primitives.d.ts +0 -19
  399. package/dist/lib/design-resource-recovery-codec-primitives.js +0 -92
  400. package/dist/lib/design-resource-recovery-codec.d.ts +0 -4
  401. package/dist/lib/design-resource-recovery-codec.js +0 -93
  402. package/dist/lib/design-resource-recovery-current.d.ts +0 -9
  403. package/dist/lib/design-resource-recovery-current.js +0 -63
  404. package/dist/lib/design-resource-recovery-delta-policy.d.ts +0 -5
  405. package/dist/lib/design-resource-recovery-delta-policy.js +0 -108
  406. package/dist/lib/design-resource-recovery-files.d.ts +0 -37
  407. package/dist/lib/design-resource-recovery-files.js +0 -204
  408. package/dist/lib/design-resource-recovery-final-disposition-shape.d.ts +0 -2
  409. package/dist/lib/design-resource-recovery-final-disposition-shape.js +0 -47
  410. package/dist/lib/design-resource-recovery-patch-types.d.ts +0 -54
  411. package/dist/lib/design-resource-recovery-patch-types.js +0 -1
  412. package/dist/lib/design-resource-recovery-replay.d.ts +0 -7
  413. package/dist/lib/design-resource-recovery-replay.js +0 -112
  414. package/dist/lib/design-resource-recovery-repository-bindings.d.ts +0 -9
  415. package/dist/lib/design-resource-recovery-repository-bindings.js +0 -49
  416. package/dist/lib/design-resource-recovery-schema.d.ts +0 -5
  417. package/dist/lib/design-resource-recovery-schema.js +0 -5
  418. package/dist/lib/design-resource-recovery-shape.d.ts +0 -10
  419. package/dist/lib/design-resource-recovery-shape.js +0 -241
  420. package/dist/lib/design-resource-recovery-source-authority.d.ts +0 -5
  421. package/dist/lib/design-resource-recovery-source-authority.js +0 -219
  422. package/dist/lib/design-resource-recovery-text.d.ts +0 -17
  423. package/dist/lib/design-resource-recovery-text.js +0 -186
  424. package/dist/lib/design-resource-recovery-types.d.ts +0 -200
  425. package/dist/lib/design-resource-recovery-types.js +0 -1
  426. package/dist/lib/design-resource-recovery-writeback-policy.d.ts +0 -5
  427. package/dist/lib/design-resource-recovery-writeback-policy.js +0 -326
  428. package/dist/lib/design-resource-recovery-writeback-shape.d.ts +0 -6
  429. package/dist/lib/design-resource-recovery-writeback-shape.js +0 -155
  430. package/dist/lib/design-resource-recovery.d.ts +0 -44
  431. package/dist/lib/design-resource-recovery.js +0 -216
  432. package/dist/lib/design-resource-symbolic-applicability-authority.d.ts +0 -7
  433. package/dist/lib/design-resource-symbolic-applicability-authority.js +0 -19
  434. package/dist/lib/design-resource-symbolic-applicability-policy.d.ts +0 -12
  435. package/dist/lib/design-resource-symbolic-applicability-policy.js +0 -79
  436. package/dist/lib/design-resource-symbolic-applicability-profiles.d.ts +0 -8
  437. package/dist/lib/design-resource-symbolic-applicability-profiles.js +0 -55
  438. package/dist/lib/design-resource-symbolic-applicability-shape.d.ts +0 -2
  439. package/dist/lib/design-resource-symbolic-applicability-shape.js +0 -76
  440. package/dist/lib/design-resource-symbolic-applicability-validation.d.ts +0 -7
  441. package/dist/lib/design-resource-symbolic-applicability-validation.js +0 -128
  442. package/dist/lib/design-resource-symbolic-compilation.d.ts +0 -3
  443. package/dist/lib/design-resource-symbolic-compilation.js +0 -13
  444. package/dist/lib/design-resource-symbolic-denotation.d.ts +0 -3
  445. package/dist/lib/design-resource-symbolic-denotation.js +0 -167
  446. package/dist/lib/design-resource-symbolic-disposition-validation.d.ts +0 -4
  447. package/dist/lib/design-resource-symbolic-disposition-validation.js +0 -28
  448. package/dist/lib/design-resource-symbolic-fact-policy.d.ts +0 -12
  449. package/dist/lib/design-resource-symbolic-fact-policy.js +0 -12
  450. package/dist/lib/design-resource-symbolic-fact-shape.d.ts +0 -3
  451. package/dist/lib/design-resource-symbolic-fact-shape.js +0 -146
  452. package/dist/lib/design-resource-symbolic-fact-types.d.ts +0 -221
  453. package/dist/lib/design-resource-symbolic-fact-types.js +0 -1
  454. package/dist/lib/design-resource-symbolic-fact-validation.d.ts +0 -3
  455. package/dist/lib/design-resource-symbolic-fact-validation.js +0 -111
  456. package/dist/lib/design-resource-symbolic-indexes.d.ts +0 -23
  457. package/dist/lib/design-resource-symbolic-indexes.js +0 -54
  458. package/dist/lib/design-resource-symbolic-manifest-shape.d.ts +0 -3
  459. package/dist/lib/design-resource-symbolic-manifest-shape.js +0 -155
  460. package/dist/lib/design-resource-symbolic-manifest-validation.d.ts +0 -6
  461. package/dist/lib/design-resource-symbolic-manifest-validation.js +0 -132
  462. package/dist/lib/design-resource-symbolic-noninterference-artifact.d.ts +0 -33
  463. package/dist/lib/design-resource-symbolic-noninterference-artifact.js +0 -110
  464. package/dist/lib/design-resource-symbolic-noninterference-equivalence.d.ts +0 -3
  465. package/dist/lib/design-resource-symbolic-noninterference-equivalence.js +0 -77
  466. package/dist/lib/design-resource-symbolic-noninterference-recompute.d.ts +0 -4
  467. package/dist/lib/design-resource-symbolic-noninterference-recompute.js +0 -146
  468. package/dist/lib/design-resource-symbolic-noninterference-scope.d.ts +0 -7
  469. package/dist/lib/design-resource-symbolic-noninterference-scope.js +0 -49
  470. package/dist/lib/design-resource-symbolic-noninterference-shape.d.ts +0 -2
  471. package/dist/lib/design-resource-symbolic-noninterference-shape.js +0 -152
  472. package/dist/lib/design-resource-symbolic-noninterference-types.d.ts +0 -103
  473. package/dist/lib/design-resource-symbolic-noninterference-types.js +0 -1
  474. package/dist/lib/design-resource-symbolic-noninterference-validation.d.ts +0 -5
  475. package/dist/lib/design-resource-symbolic-noninterference-validation.js +0 -62
  476. package/dist/lib/design-resource-symbolic-oracle-fingerprint.d.ts +0 -1
  477. package/dist/lib/design-resource-symbolic-oracle-fingerprint.js +0 -47
  478. package/dist/lib/design-resource-symbolic-predicate-shape.d.ts +0 -6
  479. package/dist/lib/design-resource-symbolic-predicate-shape.js +0 -123
  480. package/dist/lib/design-resource-symbolic-production-closure.d.ts +0 -4
  481. package/dist/lib/design-resource-symbolic-production-closure.js +0 -144
  482. package/dist/lib/design-resource-symbolic-proof-authority-validation.d.ts +0 -10
  483. package/dist/lib/design-resource-symbolic-proof-authority-validation.js +0 -68
  484. package/dist/lib/design-resource-symbolic-proof-validation.d.ts +0 -10
  485. package/dist/lib/design-resource-symbolic-proof-validation.js +0 -89
  486. package/dist/lib/design-resource-symbolic-region-validation.d.ts +0 -19
  487. package/dist/lib/design-resource-symbolic-region-validation.js +0 -146
  488. package/dist/lib/design-resource-symbolic-resource-validation.d.ts +0 -5
  489. package/dist/lib/design-resource-symbolic-resource-validation.js +0 -90
  490. package/dist/lib/design-resource-symbolic-rule-shape.d.ts +0 -27
  491. package/dist/lib/design-resource-symbolic-rule-shape.js +0 -158
  492. package/dist/lib/design-resource-symbolic-safety-validation.d.ts +0 -6
  493. package/dist/lib/design-resource-symbolic-safety-validation.js +0 -29
  494. package/dist/lib/design-resource-symbolic-source-ir-evaluation.d.ts +0 -19
  495. package/dist/lib/design-resource-symbolic-source-ir-evaluation.js +0 -74
  496. package/dist/lib/design-resource-symbolic-source-ir-evidence.d.ts +0 -44
  497. package/dist/lib/design-resource-symbolic-source-ir-evidence.js +0 -88
  498. package/dist/lib/design-resource-symbolic-source-ir-oracle.d.ts +0 -13
  499. package/dist/lib/design-resource-symbolic-source-ir-oracle.js +0 -96
  500. package/dist/lib/design-resource-symbolic-source-ir-proof.d.ts +0 -14
  501. package/dist/lib/design-resource-symbolic-source-ir-proof.js +0 -98
  502. package/dist/lib/design-resource-symbolic-source-ir-shape.d.ts +0 -2
  503. package/dist/lib/design-resource-symbolic-source-ir-shape.js +0 -38
  504. package/dist/lib/design-resource-symbolic-source-ir-types.d.ts +0 -17
  505. package/dist/lib/design-resource-symbolic-source-ir-types.js +0 -2
  506. package/dist/lib/design-resource-symbolic-static-dependency-validation.d.ts +0 -2
  507. package/dist/lib/design-resource-symbolic-static-dependency-validation.js +0 -83
  508. package/dist/lib/design-resource-symbolic-structural-closure-validation.d.ts +0 -6
  509. package/dist/lib/design-resource-symbolic-structural-closure-validation.js +0 -79
  510. package/dist/lib/design-resource-symbolic-validation-support.d.ts +0 -29
  511. package/dist/lib/design-resource-symbolic-validation-support.js +0 -111
  512. package/dist/lib/design-resource-v1-capacity-header.d.ts +0 -8
  513. package/dist/lib/design-resource-v1-capacity-header.js +0 -231
  514. package/dist/lib/design-resource-v1-capacity.d.ts +0 -5
  515. package/dist/lib/design-resource-v1-capacity.js +0 -45
  516. package/dist/lib/execution-target-capabilities.d.ts +0 -2
  517. package/dist/lib/execution-target-capabilities.js +0 -45
  518. package/dist/lib/legacy-managed-scan.d.ts +0 -2
  519. package/dist/lib/legacy-managed-scan.js +0 -95
  520. package/dist/lib/legacy-sdlc-migration.d.ts +0 -2
  521. package/dist/lib/legacy-sdlc-migration.js +0 -199
  522. package/dist/lib/long-task-acceptance-reachability-claims.d.ts +0 -2
  523. package/dist/lib/long-task-acceptance-reachability-claims.js +0 -279
  524. package/dist/lib/long-task-acceptance-reachability-design.d.ts +0 -2
  525. package/dist/lib/long-task-acceptance-reachability-design.js +0 -96
  526. package/dist/lib/long-task-acceptance-reachability-external.d.ts +0 -9
  527. package/dist/lib/long-task-acceptance-reachability-external.js +0 -123
  528. package/dist/lib/long-task-acceptance-reachability-helpers.d.ts +0 -64
  529. package/dist/lib/long-task-acceptance-reachability-helpers.js +0 -473
  530. package/dist/lib/long-task-acceptance-reachability-semantic.d.ts +0 -2
  531. package/dist/lib/long-task-acceptance-reachability-semantic.js +0 -122
  532. package/dist/lib/long-task-acceptance-reachability-types.d.ts +0 -91
  533. package/dist/lib/long-task-acceptance-reachability-types.js +0 -1
  534. package/dist/lib/long-task-acceptance-reachability.d.ts +0 -4
  535. package/dist/lib/long-task-acceptance-reachability.js +0 -115
  536. package/dist/lib/long-task-acceptance-reference.d.ts +0 -22
  537. package/dist/lib/long-task-acceptance-reference.js +0 -46
  538. package/dist/lib/long-task-acceptance-shape.d.ts +0 -5
  539. package/dist/lib/long-task-acceptance-shape.js +0 -198
  540. package/dist/lib/long-task-activation-validation.d.ts +0 -27
  541. package/dist/lib/long-task-activation-validation.js +0 -246
  542. package/dist/lib/long-task-active-authority-lock-context.d.ts +0 -4
  543. package/dist/lib/long-task-active-authority-lock-context.js +0 -29
  544. package/dist/lib/long-task-admitted-observation-records.d.ts +0 -25
  545. package/dist/lib/long-task-admitted-observation-records.js +0 -40
  546. package/dist/lib/long-task-admitted-observation.d.ts +0 -93
  547. package/dist/lib/long-task-admitted-observation.js +0 -201
  548. package/dist/lib/long-task-applicability-identity.d.ts +0 -25
  549. package/dist/lib/long-task-applicability-identity.js +0 -60
  550. package/dist/lib/long-task-applicability-shape.d.ts +0 -4
  551. package/dist/lib/long-task-applicability-shape.js +0 -54
  552. package/dist/lib/long-task-artifacts.d.ts +0 -6
  553. package/dist/lib/long-task-artifacts.js +0 -35
  554. package/dist/lib/long-task-assertions-v2.d.ts +0 -22
  555. package/dist/lib/long-task-assertions-v2.js +0 -220
  556. package/dist/lib/long-task-authoring-authority-preview.d.ts +0 -5
  557. package/dist/lib/long-task-authoring-authority-preview.js +0 -87
  558. package/dist/lib/long-task-authoring-preflight-diagnostics.d.ts +0 -8
  559. package/dist/lib/long-task-authoring-preflight-diagnostics.js +0 -199
  560. package/dist/lib/long-task-authoring-preflight-repair-order.d.ts +0 -8
  561. package/dist/lib/long-task-authoring-preflight-repair-order.js +0 -98
  562. package/dist/lib/long-task-authoring-preflight-types.d.ts +0 -48
  563. package/dist/lib/long-task-authoring-preflight-types.js +0 -47
  564. package/dist/lib/long-task-authoring-preflight.d.ts +0 -3
  565. package/dist/lib/long-task-authoring-preflight.js +0 -102
  566. package/dist/lib/long-task-authority-material-diff.d.ts +0 -17
  567. package/dist/lib/long-task-authority-material-diff.js +0 -225
  568. package/dist/lib/long-task-authority-materials.d.ts +0 -7
  569. package/dist/lib/long-task-authority-materials.js +0 -185
  570. package/dist/lib/long-task-authority-policy.d.ts +0 -290
  571. package/dist/lib/long-task-authority-policy.js +0 -310
  572. package/dist/lib/long-task-authority-revision-analysis.d.ts +0 -34
  573. package/dist/lib/long-task-authority-revision-analysis.js +0 -121
  574. package/dist/lib/long-task-authority-revision-brief.d.ts +0 -3
  575. package/dist/lib/long-task-authority-revision-brief.js +0 -76
  576. package/dist/lib/long-task-authority-revision-details.d.ts +0 -21
  577. package/dist/lib/long-task-authority-revision-details.js +0 -205
  578. package/dist/lib/long-task-authority-revision-diagnosis.d.ts +0 -24
  579. package/dist/lib/long-task-authority-revision-diagnosis.js +0 -149
  580. package/dist/lib/long-task-authority-revision-enforcement.d.ts +0 -5
  581. package/dist/lib/long-task-authority-revision-enforcement.js +0 -53
  582. package/dist/lib/long-task-authority-revision-summary.d.ts +0 -14
  583. package/dist/lib/long-task-authority-revision-summary.js +0 -246
  584. package/dist/lib/long-task-authority-revision-types.d.ts +0 -119
  585. package/dist/lib/long-task-authority-revision-types.js +0 -1
  586. package/dist/lib/long-task-authority-revision.d.ts +0 -4
  587. package/dist/lib/long-task-authority-revision.js +0 -156
  588. package/dist/lib/long-task-authority-transition-policy.d.ts +0 -62
  589. package/dist/lib/long-task-authority-transition-policy.js +0 -62
  590. package/dist/lib/long-task-authority-types.d.ts +0 -131
  591. package/dist/lib/long-task-authority-types.js +0 -1
  592. package/dist/lib/long-task-authority.d.ts +0 -7
  593. package/dist/lib/long-task-authority.js +0 -202
  594. package/dist/lib/long-task-boundary-check.d.ts +0 -15
  595. package/dist/lib/long-task-boundary-check.js +0 -9
  596. package/dist/lib/long-task-check-evidence-decoder.d.ts +0 -3
  597. package/dist/lib/long-task-check-evidence-decoder.js +0 -84
  598. package/dist/lib/long-task-check-execution-policy.d.ts +0 -21
  599. package/dist/lib/long-task-check-execution-policy.js +0 -48
  600. package/dist/lib/long-task-check-runner.d.ts +0 -2
  601. package/dist/lib/long-task-check-runner.js +0 -307
  602. package/dist/lib/long-task-check-shape.d.ts +0 -2
  603. package/dist/lib/long-task-check-shape.js +0 -176
  604. package/dist/lib/long-task-claim-definitions.d.ts +0 -7
  605. package/dist/lib/long-task-claim-definitions.js +0 -83
  606. package/dist/lib/long-task-claim-proof-policy.d.ts +0 -4
  607. package/dist/lib/long-task-claim-proof-policy.js +0 -57
  608. package/dist/lib/long-task-claim-semantic-proof-floor.d.ts +0 -3
  609. package/dist/lib/long-task-claim-semantic-proof-floor.js +0 -78
  610. package/dist/lib/long-task-claims.d.ts +0 -10
  611. package/dist/lib/long-task-claims.js +0 -374
  612. package/dist/lib/long-task-codex-agent-profile.d.ts +0 -42
  613. package/dist/lib/long-task-codex-agent-profile.js +0 -276
  614. package/dist/lib/long-task-command-process.d.ts +0 -9
  615. package/dist/lib/long-task-command-process.js +0 -178
  616. package/dist/lib/long-task-compact-authoring-projections.d.ts +0 -12
  617. package/dist/lib/long-task-compact-authoring-projections.js +0 -67
  618. package/dist/lib/long-task-compact-authoring.d.ts +0 -3
  619. package/dist/lib/long-task-compact-authoring.js +0 -176
  620. package/dist/lib/long-task-compact-carrier.d.ts +0 -7
  621. package/dist/lib/long-task-compact-carrier.js +0 -132
  622. package/dist/lib/long-task-compact-parser.d.ts +0 -14
  623. package/dist/lib/long-task-compact-parser.js +0 -123
  624. package/dist/lib/long-task-compact-primitives.d.ts +0 -22
  625. package/dist/lib/long-task-compact-primitives.js +0 -132
  626. package/dist/lib/long-task-compact-projections.d.ts +0 -4
  627. package/dist/lib/long-task-compact-projections.js +0 -163
  628. package/dist/lib/long-task-compact-structure-targets.d.ts +0 -2
  629. package/dist/lib/long-task-compact-structure-targets.js +0 -91
  630. package/dist/lib/long-task-complete-delivery-evidence-types.d.ts +0 -38
  631. package/dist/lib/long-task-complete-delivery-evidence-types.js +0 -1
  632. package/dist/lib/long-task-completion-types.d.ts +0 -109
  633. package/dist/lib/long-task-completion-types.js +0 -1
  634. package/dist/lib/long-task-conformance-policy.d.ts +0 -6
  635. package/dist/lib/long-task-conformance-policy.js +0 -44
  636. package/dist/lib/long-task-context-authority-topology.d.ts +0 -7
  637. package/dist/lib/long-task-context-authority-topology.js +0 -39
  638. package/dist/lib/long-task-context-authority.d.ts +0 -14
  639. package/dist/lib/long-task-context-authority.js +0 -66
  640. package/dist/lib/long-task-contract-types.d.ts +0 -317
  641. package/dist/lib/long-task-contract-types.js +0 -1
  642. package/dist/lib/long-task-control-fields.d.ts +0 -12
  643. package/dist/lib/long-task-control-fields.js +0 -66
  644. package/dist/lib/long-task-control-types.d.ts +0 -1
  645. package/dist/lib/long-task-control-types.js +0 -1
  646. package/dist/lib/long-task-counterfactual-claim-policy.d.ts +0 -9
  647. package/dist/lib/long-task-counterfactual-claim-policy.js +0 -72
  648. package/dist/lib/long-task-counterfactual-sandbox.d.ts +0 -19
  649. package/dist/lib/long-task-counterfactual-sandbox.js +0 -195
  650. package/dist/lib/long-task-counterfactual-types.d.ts +0 -38
  651. package/dist/lib/long-task-counterfactual-types.js +0 -1
  652. package/dist/lib/long-task-delivery-compiler-preflight.d.ts +0 -24
  653. package/dist/lib/long-task-delivery-compiler-preflight.js +0 -32
  654. package/dist/lib/long-task-delivery-compiler.d.ts +0 -14
  655. package/dist/lib/long-task-delivery-compiler.js +0 -170
  656. package/dist/lib/long-task-delivery-parser.d.ts +0 -17
  657. package/dist/lib/long-task-delivery-parser.js +0 -153
  658. package/dist/lib/long-task-delivery-preflight.d.ts +0 -5
  659. package/dist/lib/long-task-delivery-preflight.js +0 -175
  660. package/dist/lib/long-task-delivery-shape.d.ts +0 -6
  661. package/dist/lib/long-task-delivery-shape.js +0 -6
  662. package/dist/lib/long-task-delivery-types.d.ts +0 -15
  663. package/dist/lib/long-task-delivery-types.js +0 -15
  664. package/dist/lib/long-task-delivery-validation.d.ts +0 -11
  665. package/dist/lib/long-task-delivery-validation.js +0 -267
  666. package/dist/lib/long-task-design-feasibility-binding-owners.d.ts +0 -6
  667. package/dist/lib/long-task-design-feasibility-binding-owners.js +0 -52
  668. package/dist/lib/long-task-design-feasibility-binding.d.ts +0 -14
  669. package/dist/lib/long-task-design-feasibility-binding.js +0 -114
  670. package/dist/lib/long-task-design-feasibility-source-closure.d.ts +0 -11
  671. package/dist/lib/long-task-design-feasibility-source-closure.js +0 -87
  672. package/dist/lib/long-task-design-obligation.d.ts +0 -50
  673. package/dist/lib/long-task-design-obligation.js +0 -99
  674. package/dist/lib/long-task-design-resource-handoff.d.ts +0 -20
  675. package/dist/lib/long-task-design-resource-handoff.js +0 -265
  676. package/dist/lib/long-task-design-resource-method-binding.d.ts +0 -15
  677. package/dist/lib/long-task-design-resource-method-binding.js +0 -309
  678. package/dist/lib/long-task-design-target-capabilities.d.ts +0 -14
  679. package/dist/lib/long-task-design-target-capabilities.js +0 -126
  680. package/dist/lib/long-task-effective-external-takeover.d.ts +0 -15
  681. package/dist/lib/long-task-effective-external-takeover.js +0 -109
  682. package/dist/lib/long-task-effective-external-ui-takeover.d.ts +0 -5
  683. package/dist/lib/long-task-effective-external-ui-takeover.js +0 -117
  684. package/dist/lib/long-task-evidence-adapter-policy.d.ts +0 -4
  685. package/dist/lib/long-task-evidence-adapter-policy.js +0 -15
  686. package/dist/lib/long-task-evidence-adapter-types.d.ts +0 -1
  687. package/dist/lib/long-task-evidence-adapter-types.js +0 -1
  688. package/dist/lib/long-task-evidence-capability-codec.d.ts +0 -96
  689. package/dist/lib/long-task-evidence-capability-codec.js +0 -983
  690. package/dist/lib/long-task-evidence-capability-policy.d.ts +0 -9
  691. package/dist/lib/long-task-evidence-capability-policy.js +0 -345
  692. package/dist/lib/long-task-evidence-capability-runtime.d.ts +0 -5
  693. package/dist/lib/long-task-evidence-capability-runtime.js +0 -628
  694. package/dist/lib/long-task-evidence-capability-types.d.ts +0 -277
  695. package/dist/lib/long-task-evidence-capability-types.js +0 -1
  696. package/dist/lib/long-task-evidence-findings.d.ts +0 -5
  697. package/dist/lib/long-task-evidence-findings.js +0 -120
  698. package/dist/lib/long-task-evidence-sensitivity-policy.d.ts +0 -13
  699. package/dist/lib/long-task-evidence-sensitivity-policy.js +0 -166
  700. package/dist/lib/long-task-evidence-v2.d.ts +0 -10
  701. package/dist/lib/long-task-evidence-v2.js +0 -608
  702. package/dist/lib/long-task-exact-comparison.d.ts +0 -16
  703. package/dist/lib/long-task-exact-comparison.js +0 -28
  704. package/dist/lib/long-task-execution-observation.d.ts +0 -31
  705. package/dist/lib/long-task-execution-observation.js +0 -349
  706. package/dist/lib/long-task-expected-authority.d.ts +0 -4
  707. package/dist/lib/long-task-expected-authority.js +0 -126
  708. package/dist/lib/long-task-explain-acceptance-link.d.ts +0 -50
  709. package/dist/lib/long-task-explain-acceptance-link.js +0 -100
  710. package/dist/lib/long-task-explain-claim-links.d.ts +0 -47
  711. package/dist/lib/long-task-explain-claim-links.js +0 -90
  712. package/dist/lib/long-task-explain-source-links.d.ts +0 -99
  713. package/dist/lib/long-task-explain-source-links.js +0 -51
  714. package/dist/lib/long-task-external-confirmation-artifacts.d.ts +0 -9
  715. package/dist/lib/long-task-external-confirmation-artifacts.js +0 -138
  716. package/dist/lib/long-task-external-confirmation-attestation.d.ts +0 -20
  717. package/dist/lib/long-task-external-confirmation-attestation.js +0 -115
  718. package/dist/lib/long-task-external-confirmation-challenge.d.ts +0 -23
  719. package/dist/lib/long-task-external-confirmation-challenge.js +0 -164
  720. package/dist/lib/long-task-external-confirmation-context.d.ts +0 -14
  721. package/dist/lib/long-task-external-confirmation-context.js +0 -53
  722. package/dist/lib/long-task-external-confirmation-evaluation.d.ts +0 -11
  723. package/dist/lib/long-task-external-confirmation-evaluation.js +0 -454
  724. package/dist/lib/long-task-external-confirmation-expected.d.ts +0 -8
  725. package/dist/lib/long-task-external-confirmation-expected.js +0 -200
  726. package/dist/lib/long-task-external-confirmation-identity.d.ts +0 -10
  727. package/dist/lib/long-task-external-confirmation-identity.js +0 -77
  728. package/dist/lib/long-task-external-confirmation-plan.d.ts +0 -25
  729. package/dist/lib/long-task-external-confirmation-plan.js +0 -148
  730. package/dist/lib/long-task-external-confirmation-preparation.d.ts +0 -4
  731. package/dist/lib/long-task-external-confirmation-preparation.js +0 -100
  732. package/dist/lib/long-task-external-confirmation-shape.d.ts +0 -8
  733. package/dist/lib/long-task-external-confirmation-shape.js +0 -387
  734. package/dist/lib/long-task-external-confirmation-state.d.ts +0 -10
  735. package/dist/lib/long-task-external-confirmation-state.js +0 -109
  736. package/dist/lib/long-task-external-confirmation-types.d.ts +0 -195
  737. package/dist/lib/long-task-external-confirmation-types.js +0 -1
  738. package/dist/lib/long-task-final-integrity.d.ts +0 -18
  739. package/dist/lib/long-task-final-integrity.js +0 -109
  740. package/dist/lib/long-task-final-v2.d.ts +0 -7
  741. package/dist/lib/long-task-final-v2.js +0 -275
  742. package/dist/lib/long-task-finalization-identity.d.ts +0 -27
  743. package/dist/lib/long-task-finalization-identity.js +0 -58
  744. package/dist/lib/long-task-finding-context.d.ts +0 -3
  745. package/dist/lib/long-task-finding-context.js +0 -189
  746. package/dist/lib/long-task-freshness.d.ts +0 -30
  747. package/dist/lib/long-task-freshness.js +0 -203
  748. package/dist/lib/long-task-hook-install.d.ts +0 -26
  749. package/dist/lib/long-task-hook-install.js +0 -381
  750. package/dist/lib/long-task-hook-preflight.d.ts +0 -7
  751. package/dist/lib/long-task-hook-preflight.js +0 -58
  752. package/dist/lib/long-task-json-pointer-observation.d.ts +0 -59
  753. package/dist/lib/long-task-json-pointer-observation.js +0 -184
  754. package/dist/lib/long-task-material-input-closure.d.ts +0 -3
  755. package/dist/lib/long-task-material-input-closure.js +0 -92
  756. package/dist/lib/long-task-obligation-authority-resolution.d.ts +0 -12
  757. package/dist/lib/long-task-obligation-authority-resolution.js +0 -57
  758. package/dist/lib/long-task-obligation-semantic-identity.d.ts +0 -16
  759. package/dist/lib/long-task-obligation-semantic-identity.js +0 -116
  760. package/dist/lib/long-task-observation-artifact.d.ts +0 -8
  761. package/dist/lib/long-task-observation-artifact.js +0 -58
  762. package/dist/lib/long-task-observation-authority.d.ts +0 -28
  763. package/dist/lib/long-task-observation-authority.js +0 -479
  764. package/dist/lib/long-task-observation-ownership.d.ts +0 -2
  765. package/dist/lib/long-task-observation-ownership.js +0 -22
  766. package/dist/lib/long-task-outcome-parser.d.ts +0 -4
  767. package/dist/lib/long-task-outcome-parser.js +0 -143
  768. package/dist/lib/long-task-paths.d.ts +0 -48
  769. package/dist/lib/long-task-paths.js +0 -414
  770. package/dist/lib/long-task-playwright-capability-records.d.ts +0 -7
  771. package/dist/lib/long-task-playwright-capability-records.js +0 -218
  772. package/dist/lib/long-task-playwright-case-evidence.d.ts +0 -46
  773. package/dist/lib/long-task-playwright-case-evidence.js +0 -91
  774. package/dist/lib/long-task-playwright-case-primitives.d.ts +0 -28
  775. package/dist/lib/long-task-playwright-case-primitives.js +0 -143
  776. package/dist/lib/long-task-playwright-counterfactual-policy.d.ts +0 -7
  777. package/dist/lib/long-task-playwright-counterfactual-policy.js +0 -125
  778. package/dist/lib/long-task-playwright-evidence.d.ts +0 -8
  779. package/dist/lib/long-task-playwright-evidence.js +0 -147
  780. package/dist/lib/long-task-process-observation.d.ts +0 -6
  781. package/dist/lib/long-task-process-observation.js +0 -117
  782. package/dist/lib/long-task-process-runtime-closure.d.ts +0 -13
  783. package/dist/lib/long-task-process-runtime-closure.js +0 -207
  784. package/dist/lib/long-task-process-table.d.ts +0 -9
  785. package/dist/lib/long-task-process-table.js +0 -87
  786. package/dist/lib/long-task-process-tree.d.ts +0 -8
  787. package/dist/lib/long-task-process-tree.js +0 -108
  788. package/dist/lib/long-task-product-shape.d.ts +0 -8
  789. package/dist/lib/long-task-product-shape.js +0 -197
  790. package/dist/lib/long-task-progress.d.ts +0 -4
  791. package/dist/lib/long-task-progress.js +0 -120
  792. package/dist/lib/long-task-proof-adequacy.d.ts +0 -12
  793. package/dist/lib/long-task-proof-adequacy.js +0 -57
  794. package/dist/lib/long-task-proof-capability-floor.d.ts +0 -6
  795. package/dist/lib/long-task-proof-capability-floor.js +0 -137
  796. package/dist/lib/long-task-protected-files.d.ts +0 -1
  797. package/dist/lib/long-task-protected-files.js +0 -1
  798. package/dist/lib/long-task-repair-frontier-checks.d.ts +0 -8
  799. package/dist/lib/long-task-repair-frontier-checks.js +0 -93
  800. package/dist/lib/long-task-repair-frontier-groups.d.ts +0 -2
  801. package/dist/lib/long-task-repair-frontier-groups.js +0 -64
  802. package/dist/lib/long-task-repair-frontier-utils.d.ts +0 -6
  803. package/dist/lib/long-task-repair-frontier-utils.js +0 -27
  804. package/dist/lib/long-task-repair-frontier.d.ts +0 -14
  805. package/dist/lib/long-task-repair-frontier.js +0 -132
  806. package/dist/lib/long-task-required-proof-surfaces.d.ts +0 -2
  807. package/dist/lib/long-task-required-proof-surfaces.js +0 -13
  808. package/dist/lib/long-task-requirement-shape.d.ts +0 -2
  809. package/dist/lib/long-task-requirement-shape.js +0 -21
  810. package/dist/lib/long-task-risk-surfaces.d.ts +0 -2
  811. package/dist/lib/long-task-risk-surfaces.js +0 -60
  812. package/dist/lib/long-task-risk-types.d.ts +0 -5
  813. package/dist/lib/long-task-risk-types.js +0 -12
  814. package/dist/lib/long-task-risk.d.ts +0 -10
  815. package/dist/lib/long-task-risk.js +0 -186
  816. package/dist/lib/long-task-root-shape.d.ts +0 -5
  817. package/dist/lib/long-task-root-shape.js +0 -322
  818. package/dist/lib/long-task-runner-environment.d.ts +0 -7
  819. package/dist/lib/long-task-runner-environment.js +0 -57
  820. package/dist/lib/long-task-runner-files.d.ts +0 -3
  821. package/dist/lib/long-task-runner-files.js +0 -39
  822. package/dist/lib/long-task-runner-freeze.d.ts +0 -5
  823. package/dist/lib/long-task-runner-freeze.js +0 -318
  824. package/dist/lib/long-task-runtime-types.d.ts +0 -346
  825. package/dist/lib/long-task-runtime-types.js +0 -1
  826. package/dist/lib/long-task-scoped-binding.d.ts +0 -13
  827. package/dist/lib/long-task-scoped-binding.js +0 -11
  828. package/dist/lib/long-task-semantic-assurance-policy.d.ts +0 -4
  829. package/dist/lib/long-task-semantic-assurance-policy.js +0 -43
  830. package/dist/lib/long-task-semantic-contract-types.d.ts +0 -55
  831. package/dist/lib/long-task-semantic-contract-types.js +0 -1
  832. package/dist/lib/long-task-semantic-drift-migration.d.ts +0 -3
  833. package/dist/lib/long-task-semantic-drift-migration.js +0 -150
  834. package/dist/lib/long-task-semantic-fact-binding-types.d.ts +0 -85
  835. package/dist/lib/long-task-semantic-fact-binding-types.js +0 -1
  836. package/dist/lib/long-task-semantic-fact-closure-primitives.d.ts +0 -5
  837. package/dist/lib/long-task-semantic-fact-closure-primitives.js +0 -43
  838. package/dist/lib/long-task-semantic-fact-closure.d.ts +0 -17
  839. package/dist/lib/long-task-semantic-fact-closure.js +0 -79
  840. package/dist/lib/long-task-semantic-fact-contract-closure.d.ts +0 -4
  841. package/dist/lib/long-task-semantic-fact-contract-closure.js +0 -211
  842. package/dist/lib/long-task-semantic-fact-contract-facts.d.ts +0 -4
  843. package/dist/lib/long-task-semantic-fact-contract-facts.js +0 -33
  844. package/dist/lib/long-task-semantic-fact-contract-proofs.d.ts +0 -4
  845. package/dist/lib/long-task-semantic-fact-contract-proofs.js +0 -123
  846. package/dist/lib/long-task-semantic-fact-evidence.d.ts +0 -25
  847. package/dist/lib/long-task-semantic-fact-evidence.js +0 -225
  848. package/dist/lib/long-task-semantic-fact-input-closure.d.ts +0 -18
  849. package/dist/lib/long-task-semantic-fact-input-closure.js +0 -224
  850. package/dist/lib/long-task-semantic-fact-provenance-closure.d.ts +0 -4
  851. package/dist/lib/long-task-semantic-fact-provenance-closure.js +0 -140
  852. package/dist/lib/long-task-semantic-fact-shape.d.ts +0 -4
  853. package/dist/lib/long-task-semantic-fact-shape.js +0 -134
  854. package/dist/lib/long-task-semantic-fact-value-closure.d.ts +0 -3
  855. package/dist/lib/long-task-semantic-fact-value-closure.js +0 -110
  856. package/dist/lib/long-task-semantic-mutation.d.ts +0 -7
  857. package/dist/lib/long-task-semantic-mutation.js +0 -81
  858. package/dist/lib/long-task-semantic-proof-adequacy.d.ts +0 -2
  859. package/dist/lib/long-task-semantic-proof-adequacy.js +0 -19
  860. package/dist/lib/long-task-semantic-proof-profile.d.ts +0 -5
  861. package/dist/lib/long-task-semantic-proof-profile.js +0 -187
  862. package/dist/lib/long-task-shape-primitives.d.ts +0 -21
  863. package/dist/lib/long-task-shape-primitives.js +0 -121
  864. package/dist/lib/long-task-source-anchors.d.ts +0 -10
  865. package/dist/lib/long-task-source-anchors.js +0 -102
  866. package/dist/lib/long-task-source-authority-types.d.ts +0 -61
  867. package/dist/lib/long-task-source-authority-types.js +0 -1
  868. package/dist/lib/long-task-source-claim-validation.d.ts +0 -5
  869. package/dist/lib/long-task-source-claim-validation.js +0 -135
  870. package/dist/lib/long-task-source-conservation-facts.d.ts +0 -8
  871. package/dist/lib/long-task-source-conservation-facts.js +0 -57
  872. package/dist/lib/long-task-source-conservation-types.d.ts +0 -34
  873. package/dist/lib/long-task-source-conservation-types.js +0 -1
  874. package/dist/lib/long-task-source-conservation.d.ts +0 -7
  875. package/dist/lib/long-task-source-conservation.js +0 -110
  876. package/dist/lib/long-task-source-continuity.d.ts +0 -4
  877. package/dist/lib/long-task-source-continuity.js +0 -57
  878. package/dist/lib/long-task-source-fragments.d.ts +0 -6
  879. package/dist/lib/long-task-source-fragments.js +0 -219
  880. package/dist/lib/long-task-source-inventory.d.ts +0 -2
  881. package/dist/lib/long-task-source-inventory.js +0 -21
  882. package/dist/lib/long-task-source-item-parser.d.ts +0 -11
  883. package/dist/lib/long-task-source-item-parser.js +0 -108
  884. package/dist/lib/long-task-source-markers.d.ts +0 -12
  885. package/dist/lib/long-task-source-markers.js +0 -146
  886. package/dist/lib/long-task-source-owned-sections.d.ts +0 -29
  887. package/dist/lib/long-task-source-owned-sections.js +0 -90
  888. package/dist/lib/long-task-source-projection-resolution.d.ts +0 -5
  889. package/dist/lib/long-task-source-projection-resolution.js +0 -57
  890. package/dist/lib/long-task-source-projection-validation.d.ts +0 -17
  891. package/dist/lib/long-task-source-projection-validation.js +0 -154
  892. package/dist/lib/long-task-source-shape.d.ts +0 -2
  893. package/dist/lib/long-task-source-shape.js +0 -64
  894. package/dist/lib/long-task-source-supersession.d.ts +0 -5
  895. package/dist/lib/long-task-source-supersession.js +0 -138
  896. package/dist/lib/long-task-source-target-continuity.d.ts +0 -4
  897. package/dist/lib/long-task-source-target-continuity.js +0 -141
  898. package/dist/lib/long-task-source-target-index.d.ts +0 -15
  899. package/dist/lib/long-task-source-target-index.js +0 -91
  900. package/dist/lib/long-task-source-validation.d.ts +0 -3
  901. package/dist/lib/long-task-source-validation.js +0 -46
  902. package/dist/lib/long-task-stage-policy.d.ts +0 -9
  903. package/dist/lib/long-task-stage-policy.js +0 -170
  904. package/dist/lib/long-task-state.d.ts +0 -93
  905. package/dist/lib/long-task-state.js +0 -897
  906. package/dist/lib/long-task-static-observation-freeze.d.ts +0 -83
  907. package/dist/lib/long-task-static-observation-freeze.js +0 -429
  908. package/dist/lib/long-task-status-projection.d.ts +0 -26
  909. package/dist/lib/long-task-status-projection.js +0 -211
  910. package/dist/lib/long-task-status-v2.d.ts +0 -61
  911. package/dist/lib/long-task-status-v2.js +0 -363
  912. package/dist/lib/long-task-target-policy.d.ts +0 -11
  913. package/dist/lib/long-task-target-policy.js +0 -181
  914. package/dist/lib/long-task-technical-shape.d.ts +0 -3
  915. package/dist/lib/long-task-technical-shape.js +0 -44
  916. package/dist/lib/long-task-terminal-finalization.d.ts +0 -12
  917. package/dist/lib/long-task-terminal-finalization.js +0 -190
  918. package/dist/lib/long-task-ui-design-policy.d.ts +0 -17
  919. package/dist/lib/long-task-ui-design-policy.js +0 -236
  920. package/dist/lib/long-task-ui-surface-policy.d.ts +0 -5
  921. package/dist/lib/long-task-ui-surface-policy.js +0 -112
  922. package/dist/lib/long-task-ui-surface-shape.d.ts +0 -2
  923. package/dist/lib/long-task-ui-surface-shape.js +0 -402
  924. package/dist/lib/long-task-ui-surface-types.d.ts +0 -134
  925. package/dist/lib/long-task-ui-surface-types.js +0 -1
  926. package/dist/lib/long-task-ui-surface-validation.d.ts +0 -13
  927. package/dist/lib/long-task-ui-surface-validation.js +0 -62
  928. package/dist/lib/long-task-verification-preview.d.ts +0 -65
  929. package/dist/lib/long-task-verification-preview.js +0 -120
  930. package/dist/lib/long-task-verifier-authority.d.ts +0 -12
  931. package/dist/lib/long-task-verifier-authority.js +0 -49
  932. package/dist/lib/long-task-verifier-counterfactuals.d.ts +0 -11
  933. package/dist/lib/long-task-verifier-counterfactuals.js +0 -96
  934. package/dist/lib/long-task-verifier-dependency-closure.d.ts +0 -3
  935. package/dist/lib/long-task-verifier-dependency-closure.js +0 -183
  936. package/dist/lib/long-task-verifier-execution.d.ts +0 -9
  937. package/dist/lib/long-task-verifier-execution.js +0 -67
  938. package/dist/lib/long-task-verifier-identity.d.ts +0 -2
  939. package/dist/lib/long-task-verifier-identity.js +0 -66
  940. package/dist/lib/long-task-verifier-v2.d.ts +0 -17
  941. package/dist/lib/long-task-verifier-v2.js +0 -317
  942. package/dist/lib/long-task-windows-job-supervisor-helper.d.ts +0 -1
  943. package/dist/lib/long-task-windows-job-supervisor-helper.js +0 -104
  944. package/dist/lib/long-task-windows-job-supervisor-protocol.d.ts +0 -28
  945. package/dist/lib/long-task-windows-job-supervisor-protocol.js +0 -124
  946. package/dist/lib/long-task-windows-job-supervisor-result.d.ts +0 -11
  947. package/dist/lib/long-task-windows-job-supervisor-result.js +0 -152
  948. package/dist/lib/long-task-windows-job-supervisor.d.ts +0 -2
  949. package/dist/lib/long-task-windows-job-supervisor.js +0 -126
  950. package/dist/lib/long-task-worker-selection.d.ts +0 -2
  951. package/dist/lib/long-task-worker-selection.js +0 -7
  952. package/dist/lib/long-task-workspace-manifest.d.ts +0 -8
  953. package/dist/lib/long-task-workspace-manifest.js +0 -173
  954. package/dist/lib/long-task-workspace-runtime-types.d.ts +0 -23
  955. package/dist/lib/long-task-workspace-runtime-types.js +0 -1
  956. package/dist/lib/long-task-workspace-scope.d.ts +0 -39
  957. package/dist/lib/long-task-workspace-scope.js +0 -126
  958. package/dist/lib/long-task-workspace-snapshot.d.ts +0 -8
  959. package/dist/lib/long-task-workspace-snapshot.js +0 -176
  960. package/dist/lib/long-task-workspace.d.ts +0 -6
  961. package/dist/lib/long-task-workspace.js +0 -14
  962. package/dist/lib/modularity-capability-migration.d.ts +0 -2
  963. package/dist/lib/modularity-capability-migration.js +0 -165
  964. package/dist/lib/modularity-python.d.ts +0 -7
  965. package/dist/lib/modularity-python.js +0 -191
  966. package/dist/lib/modularity.d.ts +0 -60
  967. package/dist/lib/modularity.js +0 -781
  968. package/dist/lib/profiles.d.ts +0 -13
  969. package/dist/lib/profiles.js +0 -65
  970. package/dist/lib/semantic-fact-base-types.d.ts +0 -14
  971. package/dist/lib/semantic-fact-base-types.js +0 -1
  972. package/dist/lib/semantic-fact-catalog.d.ts +0 -8
  973. package/dist/lib/semantic-fact-catalog.js +0 -191
  974. package/dist/lib/semantic-fact-compact-authoring.d.ts +0 -2
  975. package/dist/lib/semantic-fact-compact-authoring.js +0 -160
  976. package/dist/lib/semantic-fact-compact-capacity.d.ts +0 -9
  977. package/dist/lib/semantic-fact-compact-capacity.js +0 -40
  978. package/dist/lib/semantic-fact-compact-carrier.d.ts +0 -16
  979. package/dist/lib/semantic-fact-compact-carrier.js +0 -146
  980. package/dist/lib/semantic-fact-compact-parser.d.ts +0 -17
  981. package/dist/lib/semantic-fact-compact-parser.js +0 -168
  982. package/dist/lib/semantic-fact-compact-revision.d.ts +0 -11
  983. package/dist/lib/semantic-fact-compact-revision.js +0 -64
  984. package/dist/lib/semantic-fact-compact-support.d.ts +0 -23
  985. package/dist/lib/semantic-fact-compact-support.js +0 -159
  986. package/dist/lib/semantic-fact-condition-shape.d.ts +0 -48
  987. package/dist/lib/semantic-fact-condition-shape.js +0 -111
  988. package/dist/lib/semantic-fact-input-shape.d.ts +0 -39
  989. package/dist/lib/semantic-fact-input-shape.js +0 -135
  990. package/dist/lib/semantic-fact-inventory-types.d.ts +0 -153
  991. package/dist/lib/semantic-fact-inventory-types.js +0 -1
  992. package/dist/lib/semantic-fact-manifest-shape.d.ts +0 -4
  993. package/dist/lib/semantic-fact-manifest-shape.js +0 -135
  994. package/dist/lib/semantic-fact-manifest-types.d.ts +0 -58
  995. package/dist/lib/semantic-fact-manifest-types.js +0 -19
  996. package/dist/lib/semantic-fact-policy-authority.d.ts +0 -8
  997. package/dist/lib/semantic-fact-policy-authority.js +0 -79
  998. package/dist/lib/semantic-fact-policy-census.d.ts +0 -3
  999. package/dist/lib/semantic-fact-policy-census.js +0 -126
  1000. package/dist/lib/semantic-fact-policy-condition-references.d.ts +0 -7
  1001. package/dist/lib/semantic-fact-policy-condition-references.js +0 -19
  1002. package/dist/lib/semantic-fact-policy-conditions.d.ts +0 -2
  1003. package/dist/lib/semantic-fact-policy-conditions.js +0 -105
  1004. package/dist/lib/semantic-fact-policy-facts.d.ts +0 -3
  1005. package/dist/lib/semantic-fact-policy-facts.js +0 -73
  1006. package/dist/lib/semantic-fact-policy-primitives.d.ts +0 -26
  1007. package/dist/lib/semantic-fact-policy-primitives.js +0 -169
  1008. package/dist/lib/semantic-fact-policy-proofs.d.ts +0 -2
  1009. package/dist/lib/semantic-fact-policy-proofs.js +0 -75
  1010. package/dist/lib/semantic-fact-policy-properties.d.ts +0 -3
  1011. package/dist/lib/semantic-fact-policy-properties.js +0 -84
  1012. package/dist/lib/semantic-fact-policy-units.d.ts +0 -4
  1013. package/dist/lib/semantic-fact-policy-units.js +0 -103
  1014. package/dist/lib/semantic-fact-policy.d.ts +0 -17
  1015. package/dist/lib/semantic-fact-policy.js +0 -41
  1016. package/dist/lib/semantic-fact-proof-shape.d.ts +0 -51
  1017. package/dist/lib/semantic-fact-proof-shape.js +0 -121
  1018. package/dist/lib/semantic-fact-proof-types.d.ts +0 -74
  1019. package/dist/lib/semantic-fact-proof-types.js +0 -1
  1020. package/dist/lib/semantic-fact-property-shape.d.ts +0 -29
  1021. package/dist/lib/semantic-fact-property-shape.js +0 -77
  1022. package/dist/lib/semantic-fact-shape-constants.d.ts +0 -3
  1023. package/dist/lib/semantic-fact-shape-constants.js +0 -38
  1024. package/dist/lib/semantic-fact-shape-primitives.d.ts +0 -15
  1025. package/dist/lib/semantic-fact-shape-primitives.js +0 -68
  1026. package/dist/lib/semantic-fact-source-parser.d.ts +0 -14
  1027. package/dist/lib/semantic-fact-source-parser.js +0 -87
  1028. package/dist/lib/semantic-fact-support-shape.d.ts +0 -21
  1029. package/dist/lib/semantic-fact-support-shape.js +0 -59
  1030. package/dist/lib/semantic-fact-types.d.ts +0 -5
  1031. package/dist/lib/semantic-fact-types.js +0 -5
  1032. package/dist/lib/semantic-fact-unit-shape.d.ts +0 -34
  1033. package/dist/lib/semantic-fact-unit-shape.js +0 -89
  1034. package/dist/lib/semantic-fact-value-shape.d.ts +0 -12
  1035. package/dist/lib/semantic-fact-value-shape.js +0 -39
  1036. package/dist/lib/source-line-scanner.d.ts +0 -3
  1037. package/dist/lib/source-line-scanner.js +0 -42
  1038. package/dist/lib/stable-json.d.ts +0 -2
  1039. package/dist/lib/stable-json.js +0 -21
  1040. package/dist/lib/structural-closure-cost.d.ts +0 -79
  1041. package/dist/lib/structural-closure-cost.js +0 -91
  1042. package/dist/lib/symbolic-denotation-dag-builder.d.ts +0 -25
  1043. package/dist/lib/symbolic-denotation-dag-builder.js +0 -176
  1044. package/dist/lib/symbolic-denotation-domain-validation.d.ts +0 -3
  1045. package/dist/lib/symbolic-denotation-domain-validation.js +0 -56
  1046. package/dist/lib/symbolic-denotation-engine.d.ts +0 -32
  1047. package/dist/lib/symbolic-denotation-engine.js +0 -140
  1048. package/dist/lib/symbolic-denotation-public.d.ts +0 -11
  1049. package/dist/lib/symbolic-denotation-public.js +0 -12
  1050. package/dist/lib/symbolic-denotation-runtime.d.ts +0 -20
  1051. package/dist/lib/symbolic-denotation-runtime.js +0 -90
  1052. package/dist/lib/symbolic-denotation-support.d.ts +0 -11
  1053. package/dist/lib/symbolic-denotation-support.js +0 -49
  1054. package/dist/lib/symbolic-denotation-types.d.ts +0 -133
  1055. package/dist/lib/symbolic-denotation-types.js +0 -18
  1056. package/dist/lib/symbolic-denotation-validation.d.ts +0 -6
  1057. package/dist/lib/symbolic-denotation-validation.js +0 -126
  1058. package/dist/long-task-hook.d.ts +0 -2
  1059. package/dist/long-task-hook.js +0 -103
  1060. package/dist/public-api-long-task.d.ts +0 -10
  1061. package/dist/public-api-long-task.js +0 -10
  1062. package/dist/schemas/design-authority-delta-assessment-v1.schema.json +0 -191
  1063. package/dist/schemas/design-resource-symbolic-noninterference-artifact-v2.schema.json +0 -289
  1064. package/dist/schemas/design-resource-symbolic-source-ir-v1.schema.json +0 -130
  1065. package/dist/schemas/long-task-delivery-v2/long-task-delivery-v2.schema.json +0 -2354
  1066. package/dist/schemas/long-task-delivery-v2/long-task-outcomes-v2.schema.json +0 -18
  1067. package/dist/schemas/long-task-external-confirmation-record-v1.schema.json +0 -155
  1068. package/dist/schemas/long-task-external-confirmation-record-v2.schema.json +0 -209
  1069. /package/dist/lib/{long-task-git.d.ts → git.d.ts} +0 -0
  1070. /package/dist/lib/{long-task-git.js → git.js} +0 -0
@@ -1,152 +0,0 @@
1
- # Contract Authoring Reference
2
-
3
- Read this only while authoring or structurally revising the one `delivery-contract.yaml` Draft.
4
-
5
- ## Source And Semantic Boundary
6
-
7
- - Every declared Source file contains at least one Material Source Item. Mark items in original Markdown without rendering or changing meaning. Every other non-empty line belongs to the one schema-valid `design-resource-handoff-v1` formal block or a closed-grammar background block: `markdown-structure` permits only text-free anchors/horizontal rules and `provenance` permits only `ty-source-provenance` comments with fixed `input`, `mode`, conditional `source` and optional `sha256` fields. A text-bearing heading or free-form provenance field may carry authority and cannot be background. Arbitrary background prose and every other unclassified line fail closed.
8
- - Marker keys and `source_claim` keys are set-equal and globally unique. `statement` preserves marked text after line-ending normalization, surrounding blank-line removal and trailing-space cleanup.
9
- - Typed dispositions keep Result, Requirement, Control, Technical Obligation, Non-completing Claim, Acceptance, Global Constraint/Non-goal, Forbidden Shortcut, Risk, External Confirmation and Decision distinct.
10
- - Every non-decision Source item owns exactly one same-kind, text-identical canonical target; no target may collapse multiple Source items. `out_of_scope` is not a resolution.
11
- - A Source AC maps criterion-identically to one named Assertion and proves at least one independently Source-backed non-Result Claim.
12
- - At least one `technical_obligation` Source Item has `aspect=architecture`, maps text-identically to a named architecture obligation and is independently provable; a generic Result or unmarked architecture review cannot substitute.
13
- - Missing headings or keys from a pre-existing planning document never blocks authoring. Raw/mixed inputs enter this Contract Draft immediately; apply `source-authoring.md` alongside mapping until real Source, provenance and markers converge. Missing mandatory Material Source Item markers still blocks Preflight/Compile.
14
- - A revised initial proposal and selected design resources are parallel Source inputs. Preserve their stable resource/surface/control/state/target keys, declared conditions, provider/project/run/entry provenance and immutable digest/snapshot; do not flatten visual meaning into an untraceable prose summary.
15
- - `delegated` in an input proposal is provenance, not a Contract disposition or new Claim kind. An instruction to synthesize, refine, complete, implement or use judgment delegates plan-level authoring, but it does not invent material tradeoff preferences. Before comparative research or a material product, technical, architecture or provider selection, identify the criteria that could change the research scope, candidate set or recommendation. If such a preference is unknown or ambiguous, ask a concise targeted question before research or selection and keep the item `decision_required` until answered; do not impose a fixed questionnaire or re-ask preferences already supplied by the user, Source, Context or controlling constraints.
16
- - Once the material preference envelope is clear, use current authoritative or primary evidence for external capability, price, quota, license, compatibility, region, security posture or support claims. When one defensible recommendation exists, record the authoring instruction, preference/evidence or conservative-default basis and exact added meaning in real Source, then preserve that keyed item as ordinary Source of its semantic kind. If ordinary prose is the Source, append the delegated item without rewriting the user's original text; never place the choice only in Contract YAML.
17
- - A delegated plan choice is not action authorization. Payment, contracting, production deployment/publication, destructive production mutation, real permission grants, sensitive-data transmission and required legal/security/human approval remain named External Confirmations. Conflicting authority, an explicitly user-reserved choice, a missing material preference or the absence of a defensible recommendation remains `decision_required`; high impact or multiple options with known criteria alone does not.
18
- - A rolling implementation blocker is not an External Confirmation merely because work is difficult, delayed or unavailable through the current implementation path. Reclassify or remove machine-verifiable scope only through an explicit marked Source change and protected exact approval; otherwise keep the requirement and revise the implementation/evidence path.
19
- - Exactly one Source-embedded `semantic-fact-manifest-v1` is mandatory. Root `semantic_fact_manifest` binds its key, declared Source path and immutable digest. Its scope includes every Outcome and every Material Source Item; ordinary Material Source cannot be `supporting_only`, while independently validated design-owned Source may be `ui_design`. Full Controlling Context inventory and every other declared attachment/specification/repository/external/delegated input are classified with exact digest, Fact refs or explicit basis-backed disposition.
20
-
21
- ## Non-UI Semantic Fact Projection
22
-
23
- The semantic manifest is the task-local Source index, not a second Contract or durable value authority. It must already close the complete standard/custom semantic family floor, stable subject/relation/population Census, exact applicable condition axes/values/combinations, atomic property partitions, Fact Cells/Facts, proof obligations, Oracles/environments/blockers and complete-generation identities before Compile. Values stay at their Source locators; Contract freezes identities, located digests and comparison authority.
24
-
25
- For every Outcome:
26
-
27
- - `semantic_fact_bindings.manifest_ref` equals the root manifest key;
28
- - `semantic_fact_bindings.facts` is set-equal to that Outcome's manifest Facts. Each row binds one `fact_ref` to exactly the generated `semantic_fact.<fact_ref>` Claim and one matching atomic applicability profile;
29
- - `semantic_fact_bindings.proofs` is set-equal to that Outcome's Fact × required-method obligations. A machine row preserves method, proof surface and all evidence capabilities, binds one owning Check and one single-Claim Assertion at the same applicability, and is legal only when Compile can project it to one package-admitted current-Actual authority. An external row binds one typed External Confirmation to the exact Claim/applicability/Fact/proof/method/proof-surface/target/obligation tuple; `impact_claims` validates the declared Claim set but never selects authority or removes machine proof;
30
- - every declared observer resolves to an execution target and admitted package adapter capable of observing the furthest independently failing boundary; a project-authored Oracle, product/self-reporting proxy, wrapper or submitted capability record cannot impersonate that observer;
31
- - the Claim/Assertion/Check projection must be bijective. Missing, extra, duplicate, reused, narrowed or orphan Fact/proof identities block Authority Lock.
32
-
33
- The exact invariants are:
34
-
35
- `Expected Semantic Facts = Source Indexed Facts = Contract Indexed Facts`
36
-
37
- `Source Fact × required-method obligations = Contract proof bindings = current Final-Gate result identities`
38
-
39
- Do not copy raw semantic values into Contract, merge multiple atomic facts into one Claim, use one Assertion for several Fact obligations, turn a machine-verifiable Fact external because implementation is difficult, or accept a default/sample/aggregate path. Derive every floor from the closed method and standard-property profiles plus observation-scope, quantifier, Claim-kind and Control-field requirements; prose keyword matches are advisory only. A new standard property without a profile fails closed. A `custom.*` method or custom property without a standard profile requires External Confirmation. Every non-structure broad requirement, technical obligation, forbidden shortcut, non-completing or product-result Claim binds at least one Semantic Fact and inherits the union of all same-applicability Fact floors. A protected Fact uses digest-only expected authority and a policy-bound redacted/digest observation with no raw persistence. Genuine decision/external authority remains explicit and target-blocking as required.
40
-
41
- Compile first derives machine and external candidate routes for each exact obligation, then one central resolver requires exactly one legal owner. One admitted machine route is machine-owned; no machine plus one valid external route is external-owned; machine plus blocking external is `machine_external_authority_conflict`; duplicate same-kind routes are `authority_route_ambiguous`; no route is `no_admitted_proof_route`. A mixed machine/external Assertion must be split rather than partially trimmed. Current machine admission has only two choices: `package_static_json_exact` for plain `exact_value + exact` static implementation/configuration content in a pre-run-frozen UTF-8 JSON production carrier, and `package_process_json_exact` for plain exact output observed while Harness directly spawns the declared `process` product root. Every other proof—including custom/`named_external_tcb` Oracles, project wrappers, protected data, tolerance/mask, custom locators and browser/native/device/layout/pixel/accessibility/motion observations—must be authored as a blocking External Confirmation. This projection is not a new Contract field, Authority, state or registry, and unsupported machine rows fail Compile rather than auto-migrating.
42
-
43
- ## Outcome Boundary
44
-
45
- Create an Outcome only when its result is independently observable, decidable, target-verifiable, dependency-expressible and localizable to its own Claims, Assertions, Checks and owner boundary. Requirement coupling, acceptance/verification-ready projection, targeted verification, precise failure localization, semantic resume and stale-result invalidation are valid reasons to decompose. Outcome boundaries never restrict implementation order. File count, implementation layer, context length, desired parallelism and Agent capacity are not.
46
-
47
- For every Outcome declare:
48
-
49
- - one complete observable result;
50
- - atomic requirements and actually applicable controls/states;
51
- - non-completing claims;
52
- - owner Context/surfaces and expected/support/forbidden path envelopes;
53
- - stable technical obligations, Bindings, forbidden shortcuts and recovery requirements;
54
- - risk facts;
55
- - executable Checks and named AC Assertions.
56
-
57
- Global non-goals, constraints and forbidden shortcuts remain Global authority and use Global Checks/Assertions when machine proof is required.
58
-
59
- Declare only real applicability, not a blind Cartesian product. Each global or Outcome profile names one exact execution target, journey role, a non-empty duplicate-free set of atomic dimension assignments, keyed Given condition/input/state facts and ordered When actions. One profile cannot bundle phone/tablet, light/dark, default/loading or other multiple values of the same dimension. Every Claim-bearing fact lists all and only its applicable profile refs. Every Claim-bearing Assertion proves exactly one Claim in exactly one matching profile, and every required proof surface of every actual applicable cell has an attributable Assertion. Two cells may share one Check execution only when their individual Assertion failures remain distinguishable; risk-based, pairwise, representative or sampled coverage never substitutes for a declared applicable cell.
60
-
61
- ## Feedback-cost boundary
62
-
63
- Declare each Check's `input_paths` and Binding carriers as the smallest sound causal envelope for that Check. Do not use a repository, application or platform root merely because it is convenient: a broad pattern is justified only when any matching change can actually invalidate the declared result. If independent capabilities have different invalidation surfaces or useful feedback boundaries, assign them to the owning Outcomes/Checks rather than making every early Stage gate stale.
64
-
65
- Every Counterfactual mutation path must be a current production carrier with a defensible route from the declared target root to the asserted behavior. A Binding or `input_paths` declaration is not reachability proof. A static-structure proof mutates and observes the frozen structure object itself and cannot be promoted to runtime behavior; a runtime proof requires Harness mutation of the declared carrier, direct execution of the same process product root and package-observed actual change. Declare the expected affected Facts, preserved Facts and allowed fan-out Facts; baseline and mutation must retain the same obligation universe, all expected Facts must change, preserved/liveness Facts must not change and every other change must be listed fan-out. A machine-closing Check with no admitted baseline or mutated observation fails rather than skipping. Review `verify --explain` before an expensive first execution and repair obsolete routes, barrels, fixtures or duplicate Main/Counterfactual invocations.
66
-
67
- Declare cheap machine-checkable prerequisites through existing environment requirements and verification inputs. Product/API readiness probes, incremental build caches, streaming phase output and timeout heartbeats belong to the project-owned runner when they depend on its runtime. The admitted direct-process observer is the narrow exception: Harness owns bounded stdout capture plus process-tree inspection and cleanup because those are part of its host execution TCB; this remains containment rather than an absolute hostile-code sandbox.
68
-
69
- ## Stage And Target Profile
70
-
71
- - Declare one ordered `stages` DAG in the same Contract. Every Outcome belongs to exactly one Stage; every Stage names one gate Outcome; the gate transitively depends on every other Outcome in that Stage; and every later Stage Outcome transitively depends on every prerequisite gate.
72
- - A Stage Gate is not a second Final Gate or Receipt. It is one or more `stage_gate` Checks owned by the gate Outcome, and its status/frontier is derived from ordinary Outcome Progress.
73
- - A multi-Outcome Stage Gate declares `cross_surface_consistency`. Its diagnostic runtime record names at least two distinct `surface_ref` values, may use the same runtime target for several pages and reports one matching state version. Because the current slice has no package derivation for that capability, the owning machine obligation remains a blocking External Confirmation.
74
- - `task.target_profile` declares `required_state`, a non-empty duplicate-free `required_target_refs`, and `completion_authority: machine_only | declared_authorities`. Legacy omission normalizes to `machine_only` with an actionable compatibility diagnostic; do not rely on omission for new authoring. Each target ref resolves to a `product` execution target with one bounded runtime family, root entrypoint, complete `root_argv` and explicit capabilities. Give every required target one Source technical obligation whose canonical target is `execution_target.<key>` and whose exact normalized statement preserves key, role, family, root, complete argv and capabilities; the Source Claim disposition, execution target and production Binding must agree. A required process root and every argv path admitted by the finite production-Binding match belong to the production owner and a Binding, not merely to the runner, a fixture, verification input or `input_paths`. The match examines a standalone argument or explicit `--key=value`, resolves a safe repository-relative value from declared `cwd`, and accepts exact or pattern Binding coverage, including glob-owned and extensionless files. Unmatched safe relative values are labels/outputs rather than inferred dependencies and are not copied. Absolute paths, repository escapes, `file:` URLs and network URLs fail closed unless explicitly routed to the external TCB/External Confirmation boundary. An exact planned root, matched argv file or process carrier may be absent through Preflight/Compile, but Final Gate requires it to exist; materializing the already-declared path does not revise Authority. Do not guess from file extensions, substrings, output flags or a language dependency graph. Root/family/role/argv/capability declaration change is a protected Source/Contract and Authority Revision. Current machine `target_runtime` proof exists only for a Harness-direct Source-backed `process` product root; required browser/native/desktop/device targets and other unsupported families retain target-blocking External Confirmation. Every Stage Gate and every `critical_user_path` Outcome accounts for every required ref through admitted root proof or that External Confirmation. Optional support/observer targets never substitute.
75
- - Use `implementation_complete` only when code-level implementation is the selected target, `target_profile_usable` when the declared required targets must be usable, and `production_release_ready` only when release gates are part of the selected target. These are terminal target qualifications, not Outcome progress states.
76
-
77
- ## Engineering Quality Deliberation And Closure
78
-
79
- Architecture Deliberation occurs once for every implementation delivery before formal Compile and the first implementation edit; risk changes depth, not occurrence. Surface concise conclusions and repository evidence rather than private chain-of-thought. A preservation result still names the concrete owner/extension point, applicable engineering-quality attributes or their concrete preservation basis, and why durable boundaries and debt do not worsen. Material work covers module ownership, unique source of truth, dependency direction, API/schema/data boundary, state/resource lifecycle, persistence/recovery, security boundary, compatibility/migration, selected and rejected alternatives, one plausible future-change challenge, touched technical debt, forbidden bypasses and triggered failure/load/threat scenarios.
80
-
81
- Correctness/invariants and maintainability/changeability always receive at least preservation. Reliability/resource lifecycle, concurrency/consistency, performance/capacity/cost, security/privacy/safety, compatibility/migration/rollout and operability/observability/testability activate only when the Source or implementation risk makes them material. Exact expected predicates remain in Semantic Facts or selected-design authority. A performance claim additionally binds workload, metric, baseline or budget, environment, comparator/tolerance and a project-owned benchmark/probe; static shape cannot prove runtime performance.
82
-
83
- Represent every material independently falsifiable architecture or engineering-quality invariant with existing Contract fields:
84
-
85
- 1. a Source-backed technical obligation, global constraint or forbidden shortcut;
86
- 2. owner Context and expected/support/forbidden paths;
87
- 3. a Binding to the implementation carrier when Counterfactual sensitivity is required;
88
- 4. a project-owned executable type, compiler, lint, AST, dependency, contract, behavior, benchmark or probe Check; and
89
- 5. a separate Assertion when functional behavior could pass while the quality invariant fails.
90
-
91
- New or worsened debt is unacceptable unless a project-owned bounded exception identifies owner, rationale, tracking and removal/expiry condition. Unrelated legacy debt does not automatically expand delivery scope, but debt touched, relied on or worsened by the implementation cannot remain hidden. Material changes to scope, owner, Context, dependency direction, selected design or debt disposition refresh the deliberation and, after Authority Lock, use protected revision.
92
-
93
- Do not encode subjective “clean architecture”, `quality == true`, a functional pass or generic quality prose as machine authority. If no reliable observation can falsify it, keep it as durable Context/review judgment or return `decision_required`. Harness routes repository-native checks; it does not become a language-generic dependency, quality or performance analyzer. Final Gate is the only Long-Task Engineering Quality/Architecture Conformance carrier and reruns these declared Checks on its current snapshot. It proves only the declared project-check-bound invariant set, not overall code quality. Do not add a default-workflow closure, quality matrix, Source aspect, Claim/risk kind, Contract field, second Gate, state or Receipt.
94
-
95
- ## Proxy And Target Runtime Independence
96
-
97
- When a declared result can pass on a proxy surface while failing in its target runtime, author independent target-runtime proof for the exact required target ref. Put it in the earliest Outcome that owns the first runnable target boundary rather than postponing it to a terminal release/quality Outcome; this assigns proof ownership and does not dictate implementation order. Under the current admitted slice, machine runtime proof is available only through Harness direct-process observation; all other runtime families remain target-blocking External Confirmation.
98
-
99
- Use existing Contract semantics:
100
-
101
- 1. require `runtime_behavior` or the other proof surface that matches the actual Claim;
102
- 2. for machine proof, use a `project_binary` runner whose target exactly equals the declared `runtime_family: process`, `role: product` root entrypoint, has no wrapper and permits read-only or test-sandbox execution;
103
- 3. let Harness own the process handle and capture exactly one bounded `ty-context-product-observation-v1` envelope from product stdout. It proves only exact values that the root itself emits on that declared JSON output surface; project-authored instrumentation/mapping cannot reclassify arbitrary internal/UI facts as package-observed, and any Claim that cannot bind directly to the surface requires External Confirmation. Do not declare or consume an observation-path, challenge or protocol environment variable; the execution nonce is internal host-attestation data. Project-submitted v3 actual/comparison/verdict and capability records remain diagnostic only;
104
- 4. declare runtime-affecting entrypoints, modules/configuration and Claim/Counterfactual carriers through the production owner and Binding. For argv, use a standalone argument or explicit `--key=value`; Harness resolves a safe repository-relative value from declared `cwd` and includes it only when an exact or pattern production Binding covers the result. Glob-owned and extensionless files are valid, an unmatched safe relative value is not copied, and absolute/escaping/file-URL/network values fail closed unless explicitly external. `input_paths` still describes Check scope/freshness but is neither broadly role-scanned nor promoted into the process snapshot. Compile rejects any actual closure member that overlaps Source/Context/Contract/canonical expected, verification, expected-output/artifact, evidence/status/report/comparison/Receipt/Long-Task or historical-session roles. Global closure records keep `<outcome>.<binding>` logical identity while physical files deduplicate by path; authored Contract Bindings remain local and unchanged. Harness copies only this compiled closure, and a dependency that cannot be explicitly production-bound remains External Confirmation rather than triggering extension, substring, output-flag or language dependency guessing; and
105
- 5. otherwise bind the Claim to a blocking External Confirmation instead of inventing a project-verifier proof.
106
-
107
- This process path relies on the host OS/filesystem/process APIs, Node runtime, snapshot copy/digest checks, stdout decoder and process-tree inspection/cleanup. It is not a security sandbox and does not claim containment against a malicious executable using ambient filesystem/network resources or evading every process-tree mechanism. If the Contract requires that threat boundary, use an independently controlled sandbox and keep its acceptance external until a package adapter is separately admitted.
108
-
109
- A proxy check, project-verifier payload, static repository shape, tracked status report, prior screenshot, binary, historical run or new `session_id` cannot be the sole proof of a Claim that can fail independently in the target. The required target family must equal the admitted observer family. Use only the bounded execution-target runtime families and required refs in the Contract; do not add open-ended `platform_impact` flags or per-platform Progress state.
110
-
111
- ## Success, Degradation And External Boundaries
112
-
113
- - Set `success_path_required` and `degradation_path_required` explicitly. A Result Claim is proved only by a `success` Check; the same Check cannot be both success and degradation, and an honest unavailable/pending/recovery state cannot replace required success.
114
- - External confirmations declare `kind`, exact `impact_claims` and `blocks_target`. A `functional_prerequisite` blocks the selected target; a `production_release_gate` blocks a production-release target but may remain non-blocking for a lower target. Reclassification or impact changes are protected authority.
115
- - External Confirmation coverage is exact for ordinary/global Claims and Semantic Fact Claims; it creates no machine Assertion or result. Under `declared_authorities`, every blocking confirmation declares exact actor id/role/kind and `identity_assurance: { scheme: ed25519, key_id, public_key_ref }`, owner, target, environment identity, keyed Given/When scenario, non-empty evidence requirements and one exact obligation row per Claim/applicability/Fact/proof/method/capability/Expected-authority cell. The public key must be protected controlling Source/Context and its digest enters compiled identity; the private key never enters repository/workdir/package/verification inputs or a Harness signing command. Externalization changes only the Actual or explicitly Source-backed `subjective_preference | expert_assessment | authorization` judgment supplier; objective/recomputable or machine-admitted obligations cannot become judgment, and Expected/applicability/comparator/method/capabilities/granularity never weaken. A fully unsupported Outcome sets `success_path_required: false`, omits machine Checks, includes every affected Claim in `impact_claims` and binds each exact proof to the confirmation. A Stage Gate may omit its machine Check only when a blocking confirmation owns the exact gate-result obligation. Preflight requires exactly one legal route and blocks conflicts, ambiguities and no-route rows. A valid unfulfilled route is `blocked_external`; only an authenticated current whole-candidate Record v2 plus the complete Final Gate can yield `delivery_accepted`.
116
- - `boundary_invocation` and `external_side_effect` still require a declared independent `observer` target, but the current slice has no package derivation for either capability. Their project records are diagnostic and their obligations remain External Confirmation; product self-report never proves the downstream effect.
117
-
118
- ## Visual Delivery Authoring
119
-
120
- When the selected delivery includes a new/redesigned screen, primary layout/navigation/theme/component system, high-fidelity implementation or other material production UI, resolve Design Authority before Compile and author the result through existing Contract semantics. The complete design Fact universe remains mandatory Source authority, but the current machine observer does not admit browser/native/device/layout/pixel/accessibility/motion or protected/tolerance/mask observations; those Fact × method obligations must be blocking External Confirmations rather than project-verifier machine rows:
121
-
122
- - when selected external resources are an implementation handoff, place one strict marked `design-resource-handoff-v1` Markdown file in `task.source_paths` and run `ty-context design-resource preflight <handoff.md>` before Contract Preflight. A formal Web/App profile requires a canonical entry, exact dependency closure, complete acquisition and one frozen-Inspector Fact manifest proving `Expected Fact Universe = Canonical Resource Facts = Handoff Indexed Facts`. The atomic unit is an explicit `subject × target × condition × variation × property` Fact Cell: stable component instances/Anatomy Parts/relations and dynamic populations; all standard/custom target-condition and subject-variation axes/combinations; the complete standard/custom atomic property catalog; explicit N/A/exclusion basis; one Fact per covered cell; and every property-required Fact × method proof. Product Controls and eight UI/UX dimensions are semantic/roll-up owners, not the Fact ceiling. Incomplete acquisition/Census, aggregate labels, initial default-page inference, sampling/truncation, unresolved locators/lineage/conflicts/blockers, unsupported evidence and stale identities block. Canonical resources own exact values; the residual handoff projects located digests, value/design-system lineage, sensitivity, evidence, comparator/tolerance/mask, Oracle/environment and asset bindings without becoming a CSS copy. Every exact target additionally requires full-target layout and pixel Facts per condition. Deliberately partial input remains an explicitly scoped constraint or blocking unresolved and never an exact target. Treat candidates and unresolved decisions honestly; only a selected exact target with a valid selection basis, complete declared Fact universe and immutable identity can be proposed for fidelity authority, and downstream UI Authority Closure still owns adoption;
123
- - perform UI Authority Closure over stable surface/control/target keys: classify each material item as covered by owning Context/`DESIGN.md`, requiring an owner update, task-local Source, explicitly out of scope or genuinely `decision_required`. Product Surface Context owns cross-surface responsibility, Screen/interaction Context owns durable hierarchy/behavior, `DESIGN.md` owns visual-system/reference semantics and selected targets own concrete composition; Contract YAML must not duplicate or invent those owners;
124
- - inspect owning surface/interaction Context, `DESIGN.md`, its authored token source/generation direction and material design references. Classify every reference as `exact-target`, `constraint` or `inspiration`, with its surface/route/component, path/URI and covered viewport/theme/mode/state;
125
- - an unconfigured starter, style-only prose, inspiration-only set or conflicting target is not sufficient production authority. Resolve it by explicitly scoping Source to a prototype/non-fidelity result, recording an explicitly delegated and selected design target in real Source after material preferences are known, or keeping the unresolved/user-reserved direction `decision_required`;
126
- - never let implementation output authorize itself: a generated implementation screenshot/diff is an Artifact, not the target. An acceptance-affecting target or baseline must be selected Source/verifier input before fidelity implementation can be accepted;
127
- - derive the exact task-local Visual Coverage Set from declared Source, `project_context/**` and `DESIGN.md`: production surface/route/component, viewport, theme or product mode, interaction/state, content stress and accessibility/motion conditions. Do not invent an irrelevant Cartesian product, but cover every combination that is actually applicable;
128
- - never use risk-based, pairwise, representative or sampled combinations to waive an applicable cell. Equivalent execution may be shared only when each fact/method retains an independently attributable Assertion and any omitted applicable combination remains blocking;
129
- - encode each independently falsifiable visual expectation as an atomic Requirement, applicable Control field or named AC Assertion. Name the surface, viewport, theme/state/content condition and observable result when they matter to the claim;
130
- - close every real Control's canonical fields independently through `field_coverage`: `surface`, `region`, `location`, `control_type`, `label_content`, `user_task`, `visibility`, `availability`, `trigger`, `input`, `validation`, `default_value`, `interaction`, `navigation_result`, `loading_state`, `empty_state`, `success_state`, `failure_state`, `recovery`, `permission`, `feedback` and `accessibility`. `specified` names concrete meaning, `not_applicable` carries a falsifiable reason, and `unresolved` blocks Compile; specified and not-applicable entries create Claims for every declared applicability profile, so omission can never silently mean non-applicable;
131
- - close each Outcome's cross-Control/system meaning through `control_relation_closure` plus `control_relations`: shared state, dependency/order, mutual exclusion, navigation, permission, recovery, validation and feedback chains are explicit relations with Control refs, proof surfaces and applicability, while `state: not_applicable` is a negative Claim with exact applicability and an explicit assertion that no such relation applies; `unresolved` blocks;
132
- - when an Outcome declares Controls, add the minimum aggregated Product `surface_bindings`: one stable binding per owner surface and required product target, its Control refs, existing Technical route/component Binding refs, one root-entry success Check and its real entry action. Every Control must be bound and every Control Claim must have target-local disposition. The admitted direct-process observer can derive host `target_runtime` for the real process root, but it does not currently derive `interaction_trace`; interaction plus browser/native/device journeys remain blocking External Confirmations;
133
- - bind the declared result to the owning Context/`DESIGN.md`, one authored token source and generation direction, selected target/constraint inputs, production component/route carriers, path envelopes and project-owned target checks. Freeze acceptance-affecting selected target files, token sources and fixed prototype fixtures in `verification_inputs`; bind production carriers through `input_paths`/Bindings and reserve `artifact_globs` for generated implementation renders, diffs and reports. Detached kits, deep links, mocks or marketing specimens may be references or supplemental checks but not substitute implementation carriers or the production root journey;
134
- - for each selected exact/constraint target inside a surface binding, use the exact handoff target key and interpretation; declare `source_paths` as exactly the handoff plus that target's immutable resource paths and `condition_keys` as exactly its handoff condition refs. Put the same files in Check `verification_inputs`; map every covered handoff Source Item through `source_claims` to method-specific Source Claims and separate single-Claim Assertions at the target's exact applicability; and bind every handoff acceptance blocker in the surface binding. Every handoff verification method binds its own Assertion and exact per-condition `evidence_artifacts`. Each cell declares the exact proof-owned `fact_refs`, `path` for its method record, `observation_path` for its primary method-native observation and a canonical `fact_expectations` row for every Fact. That row freezes subject, variation, property, `plain|protected` sensitivity, expected canonical located digest, comparator, exact/tolerance mode, parameter/tolerance/narrow-mask located digests, Oracle key/trust/identity/version/digest and environment key/identity/definition located digest. Contract stores these references and digests, never a duplicate CSS value source. Cell Fact sets close every property-required Fact × method obligation; their exact union equals the target Fact set. Current package derivation supplies only admitted plain exact/presence results and host `target_runtime`; project or Playwright `design_method`, `fact_results`, `design_conformance` and `interaction_trace` rows remain diagnostic and cannot provide authority. Because the current slice does not admit design conformance, interaction, layout, pixel, accessibility, motion, browser/native/device, protected or tolerance/mask observation, those obligations retain their exact expectations but bind blocking External Confirmations instead of fabricated machine results. Missing/extra/duplicate/stale/failed rows, authority drift, mismatched environment, widened mask/tolerance, result reuse or indistinguishable observation still fail every admitted exact Assertion. `visual_render`, handoff preflight, Inspector counts, file hashes or registry presence remain input/resource integrity and cannot substitute for implementation conformance or omitted Fact proof;
135
- - explicitly inventory every declared design-acceptance blocker inside its surface binding. An empty array states that no blocker is declared; each declared entry preserves exactly the handoff's `source_item_refs`, `verification_methods` and non-empty `required_capabilities`. A `machine_claim` is valid only when the exact obligation compiles to a package-admitted static or direct-process exact observation and the referenced Claims have matching target-local proof; otherwise use a target-blocking External Confirmation whose impact includes the Outcome. There is no in-band not-applicable waiver: removing a blocker from scope first requires explicit revised Source and, after Authority Lock, protected Contract revision. Empty refs block Compile/Final Gate;
136
- - retain `ui_browser` assertions only as project diagnostics during this first observer slice. Browser, Expo-Web, native, mobile and desktop UI conformance cannot machine-close a Claim; bind the affected Claim or blocker to target-blocking External Confirmation rather than treating Playwright, a project binary, screenshot or device/session payload as observer authority;
137
- - keep subjective visual direction, taste or approval outside false machine proof. Resolve an undecided direction as `decision_required`; represent required human design or new-baseline approval as an explicit external confirmation.
138
- - for combined design-and-implementation delivery, ordinary design Outcomes/Stages may author candidates before selection, but candidate/planned artifacts cannot authorize fidelity Claims. Append the selected result to real marked Context-reachable Source and its owning Context/`DESIGN.md` reference; after Authority Lock adopt it through Authority Revision before downstream fidelity implementation. This creates no target-selection state, second Contract or second Gate.
139
-
140
- External design resources authorize fidelity only when they become a selected exact target with a validated handoff; they remain ordinary upstream Source rather than a Contract Draft, verification result or alternate authority. The revised initial proposal plus selected immutable canonical resources and the residual `design-resource-handoff-v1` is the recommended implementation input; no standalone intermediary authoring handoff is required. Map each exact fact set into method/condition evidence, each covered Source Item into the root conformance Assertion and each declared verification method to its own independently failing Assertion; carry blocker Source Items and methods unchanged into a target-local machine Claim or target-blocking External Confirmation. Any pre-existing planning document remains valid ordinary Source if supplied. The single Product `surface_bindings` projection is an aggregated cross-reference over existing Source, Controls, Technical Bindings, targets, Checks, Assertions, verification inputs and External Confirmations; it creates no `uiux_delivery` authority block, Claim kind, risk level, lifecycle state, required design directory, per-Control screenshot matrix or Gate, and it creates no copied style/value source.
141
-
142
- ## Symbolic Selected-Design Authoring
143
-
144
- UI symbolic V2 is explicit opt-in; V1 remains the default. Accept `design-resource-handoff-v2` only when the target explicitly declares `representation: symbolic_rules_v2`. Require equal extensional disposition, located expected semantics and complete proof-obligation denotation across every subject/relation, target, reachable condition/variation, applicable atomic property and population/quantifier point; physical V1 ground-row identity is irrelevant. V2 Rules use constant located expected values and mutually exclusive exhaustive canonical regions. Applicability may retain legacy exact remainder partitions or use package-owned subject property profiles plus frozen Inspector custom-property closure and explicit unique instance exceptions; every logical subject-property point still needs exactly one disposition. Project every required method to typed current Rule-region evidence only when its Actual comes through the admitted package observer; otherwise bind the obligation to External Confirmation. Each set-valued Rule/omitted-axis certificate remains a separate fresh package-recomputed result without materializing Rule × axis edges. An omitted axis requires both Source-side and production-side proof through frozen closed-world static dependency closure, restricted-IR exact equivalence or finite complete-domain exhaustive equivalence; dynamic/reflected/unfrozen/external or sampled dependencies block. A Contract may mix V1 and V2 targets, but records cannot cross-substitute and all converge only in the existing Final Gate. V1 over-capacity diagnostics may guide an explicit V2 decision but never switch automatically. Purpose-efficiency is package admission, not terminal safety or a new Gate. Non-UI symbolic admission remains out of scope; verifier/runner observation authority is covered by the mandatory admitted-observer boundary above.
145
-
146
- ## Compact Authoring
147
-
148
- Compact V2 may omit only deterministic defaults: empty optional arrays/nulls, `requested_level: auto`, runner `argv: []`, `cwd: .`, `timeout_ms: 30000`, `retry_policy: none`, `idempotent: false`, and empty output/artifact/assertion/environment lists. `context_snapshot_mode: full` remains explicit and is the only accepted authority mode.
149
-
150
- Goal, target profile/required targets, ordered Stages, Source/Source Claims and non-authoritative background ownership, Context, observable results, exact applicability profiles, success/degradation requirements, owners/paths, REQ, all-field CTRL closure, Control relations and production `surface_bindings`, selected target conditions/conformance artifacts, design-blocker dispositions, OBL, proof surfaces, Given/When scenarios, journey roles, Evidence Capabilities, runner targets/effects, verification inputs, single-Claim Assertions, behavioral semantic witnesses and liveness Assertions, risk, forbidden shortcuts and typed external confirmations remain explicit.
151
-
152
- Compiler-generated Outcome/Check/Claim identities replace handwritten mechanical cross-entity references. This does not authorize compiler inference of product meaning, owners, architecture, proof or risk.
@@ -1,132 +0,0 @@
1
- # Evidence Design Reference
2
-
3
- Read this only while designing or repairing Contract Checks and proof.
4
-
5
- ## General Proof Rules
6
-
7
- - Every machine-path Outcome has at least one executable semantic Check and one non-Result atomic Claim. A fully external Outcome may omit machine Checks only under the exact blocking-confirmation rules in Contract authoring.
8
- - Keep four authorities separate: Source/Context/canonical resources/Contract own Expected; a package-admitted adapter owns current Actual; Harness owns comparison/result identity and verdict; the sole current-snapshot Final Gate owns terminal status. No project runner or Oracle may own two of these layers for a machine-closing obligation.
9
- - Required proof surfaces are non-empty, unique and all-of. Every Claim-bearing Assertion proves exactly one Claim at one exact applicability profile and uses explicit comparable Observations and expected values; every Claim/applicability/proof-surface cell must be covered.
10
- - `truthy`/`falsy` are diagnostic-only. `exists` proves only implementation-structure obligations. Missing or type-incomparable Observation never proves a Claim; negative proof uses an explicit value such as `equals: false`.
11
- - Claim and Population proof is emitted only after the entire Check passes. Exit failure, missing artifact, failed population, failed Assertion or invalid Counterfactual yields no Claim proof.
12
- - Verification inputs include entrypoints, helpers, fixtures/config, package scripts and lockfiles and cannot overlap implementation carriers. The frozen runner identity recursively includes the supported direct-literal local verifier module/config/data graph; runtime-owned Check inputs/outputs/artifacts are explicitly excluded from Oracle identity, while non-literal loaders, `createRequire` and package scripts without a recoverable static Node entry fail closed. Declaring other indirect/custom Oracle access as a named TCB does not admit it for machine completion; use a package-admitted adapter or blocking External Confirmation.
13
- - Runners receive the minimum environment whitelist plus only declared environment requirements. Never expose actual secret values in findings.
14
-
15
- ## Runner And Observation Identity
16
-
17
- Runner kind still selects payload decoding, but payload decoding is not observation authority. Raw Execution identity binds the runner, its recursively frozen local dependency closure and canonical declared Environment Requirements, not actual values. Bare installed packages and the Harness/runtime remain named trusted-computing-boundary components rather than silently mutable project helpers. A project-authored verifier, `node_oracle`, wrapper or Playwright payload can provide diagnostics only unless a separate admitted package observer independently extracts the current Actual.
18
-
19
- Across all Checks sharing a Raw Execution, one Claim-bearing Observation belongs to one Assertion. Shared setup may execute once only when independent per-Check observations and artifacts remain unambiguous.
20
-
21
- ## Observation Authority Admission
22
-
23
- Compile derives one immutable internal observation-authority plan for every machine Claim or Fact × required-method obligation. It binds the obligation/Fact/Assertion/target/proof-surface/method, expected identity/value, locator policy, carriers and runtime requirements. This is a rebuildable projection, never a new Contract Authority, state or Observer registry. A machine-closing row has exactly one of these first-slice authorities:
24
-
25
- - `package_static_json_exact`: plain `exact_value + exact` content for a static implementation/configuration structure. The UTF-8 JSON carrier must already exist in the pre-run workspace manifest; its no-follow path/type/size/digest/file identity remains unchanged after the runner; it matches the declared production Binding; and it is not Source, Context, Contract, expected authority, verifier output, evidence, report, status or Receipt. Harness, not the project, selects the fixed RFC 6901 `/observations/<stable Fact-or-obligation identity>` locator and applies the package duplicate-key, UTF-8, size, depth and pointer limits. A generated bundle/configuration is eligible only when it was already in the candidate snapshot. This proves only current static content, never runtime consumption, interaction or liveness.
26
- - `package_process_json_exact`: plain exact output from a declared `runtime_family: process`, `role: product` root. The Check uses `project_binary`, its target and complete argv equal the Source-backed root invocation exactly, no project wrapper intervenes and its effect is read-only or test-sandbox. The target's canonical Source obligation, Source Claim disposition and execution target agree on key, role, family, root, complete argv and capabilities. Compile creates one internal process-runtime closure containing that invocation, the Claim/Counterfactual production carriers and only finite argv values that resolve to production Binding members. It examines a standalone argument or explicit `--key=value`, resolves safe repository-relative values from declared `cwd`, and admits a path only when an exact or pattern Binding covers it; glob-owned and extensionless files are supported. An unmatched safe relative value is ignored and not copied. Absolute paths, repository escapes, `file:` URLs and network URLs fail closed unless explicitly routed to the existing external TCB/External Confirmation boundary. It neither broadly role-scans nor copies all `input_paths`; role separation applies only to actual closure members. Global Checks use internal scoped Binding records `{ outcome_key, local_key, binding_ref, binding }` with `<outcome>.<binding>`, preserving logical refs while deduplicating identical physical paths without changing authored Contract Bindings or adding a registry. Every closure member is disjoint from Source/Context/Contract/canonical expected authority, verification inputs, verifier/evidence/status/report/comparison/Receipt/Long-Task workdir, historical session/evidence, `expected_output_paths`, `artifact_globs` and other proof-output roles. Harness copies only this compiled closure into an OS-temporary snapshot, then directly spawns/owns the root there. The child receives the minimal runner environment and no observation-path, challenge or protocol variable. It writes exactly one bounded `ty-context-product-observation-v1` envelope to stdout with exact keys `schema_version` and identity-keyed `observations`; Harness captures stdout, requires the exact compiled identity set, extracts multiple values, records host execution attestation bound to the closure identity, verifies the closure again and deletes the snapshot. The envelope proves only exact values actually emitted by that root on the declared JSON output surface. Project-authored instrumentation or mapping cannot elevate arbitrary internal/UI facts into package-observed truth; a Claim that cannot bind directly to that surface remains External Confirmation. The per-execution nonce is generated and retained only inside host attestation; it is neither a child-visible challenge nor a trust root.
27
-
28
- Everything else is unsupported and therefore a blocking External Confirmation: custom or `named_external_tcb` Oracle, indirect wrapper, browser/native/device session, layout, pixel, accessibility, motion, protected raw observation, tolerance/mask and custom locator. Target family must equal observer family. Project-submitted v3 actual/value digest, comparison result, `passed`, verdict and capability records remain optional diagnostics and never own Actual or completion. Current package derivation covers exact/presence plus host-derived `target_runtime`; `interaction_trace`, `state_delta`, `design_conformance` and every other capability without package derivation require External Confirmation even when a project record is present. A diagnostic copy that disagrees with a derived result fails closed. The public project result remains `long-task-check-result-v3`; the stdout product observation envelope is a separate v1 protocol, so no v4 is introduced.
29
-
30
- ## Scenario And Evidence Capabilities
31
-
32
- - Every Check declares non-empty keyed `scenario.given` and `scenario.when` steps. One Check covers one materially coherent journey; a different success path belongs in another Check or vertical Outcome. A Claim-bearing Assertion's `applicability_ref` must match the Check target, journey role, duplicate-free atomic dimension assignments, all keyed Given refs and ordered When refs exactly.
33
- - Every Assertion declares a non-empty all-of `evidence_capabilities` set. Proof adequacy follows the declared semantic boundary: existence needs `presence`; interaction needs `interaction_trace + state_delta`; product-result effect additionally needs `input_variation`; a boundary call needs `boundary_invocation + actual_provenance`; persistence needs `durable_readback`; identity/data-state semantics need `distinct_identity + data_state`; a complete population needs `population_coverage` and exact-set semantics; failure/recovery needs `failure_injection + recovery`; selected visual/design meaning needs `visual_render + design_conformance`; and runtime reachability needs `target_runtime`. `presence` proves static existence only and cannot alone prove a behavioral Claim. A project payload may contain one typed current-execution compatibility record per capability, but a machine Claim is satisfied only by a matching package-derived result. In the current slice that means exact/presence and, for a direct process root, host `target_runtime`; missing admission, duplicate/unknown/undeclared records or disagreement with a submitted copy fail closed.
34
- - `interaction_trace` names the exact target plus the declared Given keys and ordered action keys, but no package derivation currently owns those semantics. Project/Playwright trace rows are diagnostic and the obligation remains External Confirmation, including on a direct process root.
35
- - `state_delta` compatibility rows still require different before/after hashes and named changed fields, but they are not package-derived machine proof. The same external boundary applies to `durable_readback`, `cross_surface_consistency`, `boundary_invocation`, `actual_provenance`, `external_side_effect`, `failure_injection`, `recovery`, `input_variation`, `distinct_identity`, `data_state`, `population_coverage`, `visual_render`, `design_conformance` and `design_method` until a package adapter derives the applicable result.
36
- - `target_runtime` binds the exact target/root and is host-derived only for a direct process product root. Runtime Fact refs and every admitted package-derived exact/presence result remain set-equal to the compiled obligation cells; no aggregate project record fills a missing cell.
37
- - Structured runners emit `long-task-check-result-v3` for capability records. V2 payloads remain decodable only for presence-only compatibility; they cannot satisfy a declared non-presence capability. Evidence records contain bounded hashes/ids/refs, not unrestricted raw payloads.
38
-
39
- A Check with zero Claim-bearing Assertions is `diagnostic`; it may run and localize a repair but contributes no Claim/Fact proof, Stage acceptance or terminal status. A blocking obligation backed only by a diagnostic Check blocks Preflight/Compile. Claim-bearing Expected must resolve through `expected_ref` or `expected_authority_ref`, or equal the compiled Expected of its bound semantic Fact/proof obligation. Inline Expected is permitted only for diagnostic Assertions; implementation, test output and the Actual producer cannot become Expected authority.
40
-
41
- ## Non-UI Semantic Fact Evidence
42
-
43
- Every machine `semantic_fact` proof binding compiles one immutable expectation row identified by manifest/digest, Outcome, Fact, proof method, Claim, applicability, subject/relation/population, exact condition and property. It freezes the Source-located expected value digest, sensitivity, comparator/mode/parameters/tolerance/mask, admitted observer identity and environment definition. Runtime evidence cannot rewrite any field, and Compile rejects a machine row whose method/surface/target/sensitivity/comparison mode has no admitted observer.
44
-
45
- The owning Check may submit compatibility data, but the package observer derives exactly one authoritative current `semantic_fact` result for every and only every admitted expectation assigned to it. Each result records:
46
-
47
- - exact assertion/manifest/Outcome/target/Fact/proof/method/subject/condition/property identity;
48
- - an attributable actual-observation artifact, current digest, typed locator and value digest;
49
- - an attributable actual-environment artifact, current digest, typed locator and value digest;
50
- - the frozen expected located authority and comparison tuple, plus a current comparison artifact/locator/result digest;
51
- - explicit `passed|failed` comparison and verdict;
52
- - the exact Oracle/environment identity; and
53
- - one result for every declared independent observer where applicable.
54
-
55
- V1 ground, V2 symbolic, non-UI semantic Fact, static observer and process observer all call the same Harness-owned `evaluateExactDigestComparison` with identity, actual/expected value digests, comparator/mode and parameter/tolerance/mask digests. The admitted exact slice permits only `exact_value + exact`, requires empty tolerance/mask and fails whenever actual differs from expected. Harness recomputes result identity; submitted `passed`/verdict never participates and any submitted comparison field that disagrees fails closed. Protected and tolerance/mask observations are not admitted in this slice and remain External Confirmation; secrets, tokens, personal or regulated values never enter Contract, logs, findings, Context or artifacts in raw form.
56
-
57
- Result identities and primary observations are duplicate-free. One aggregate Boolean/report/log/screenshot, one reused artifact+locator+value tuple, one all-states row or one Check exit code cannot satisfy several Facts or methods. A Fact may legitimately require several independently admitted methods/observers, and all must pass. Population/quantified Facts additionally prove exact expected universe = eligible = observed plus valid exclusions. Evidence must reach the furthest independently failing admitted boundary; parser/request/queue acceptance or implementation self-report does not prove storage, downstream delivery, recovery, security or external effect.
58
-
59
- Final Gate requires exact expectation/result set equality on its one current snapshot and rejects missing, extra, duplicate, stale, failed, authority-drifted, environment-mismatched, proxy-only, reused or indistinguishable results. External-confirmation obligations emit no fabricated machine row and remain pending through terminal reporting. Manifest/preflight success, hashes, Census, schema validation, focused tests and Progress prove only their own input/integrity/intermediate claims.
60
-
61
- ## Authenticated External Evidence
62
-
63
- - Only `long-task-external-confirmation-record-v2` may fulfill a blocking external obligation. The Contract actor uses the closed `ed25519` identity-assurance scheme with a key id and protected controlling Source/Context public-key ref; its digest is part of compiled identity. Harness verifies possession of that bound key but does not independently establish real-world identity beyond the Source binding. `declared_only` actors and Record v1 are advisory/audit-only.
64
- - `external prepare` creates or reuses one current challenge and emits exact whole-candidate identity, actor/key binding, signable canonical payload digest, obligation Expected/method/capabilities and evidence requirements. Preparation creates no acceptance, Progress or pending completion state. Only explicit `external rotate` or revoke rotates the challenge.
65
- - The detached Ed25519 signature covers the canonical Record v2 payload excluding only `attestation.signature_base64`; `record_sha256` separately covers content integrity and is never called authentication. The actor-held private key must stay outside the repository, workdir, package, Agent-readable verification inputs and Harness commands. Harness provides no v2 signing helper or CLI.
66
- - Every result is set-equal to the exact compiled external obligation universe. `actual` is required for objective or recomputable comparison. `judgment` is legal only for a Source-backed `subjective_preference`, `expert_assessment` or `authorization` basis with matching actor, rationale and evidence; an external system, objective Fact or machine-admitted obligation cannot be relabeled judgment.
67
- - On submit, every declared evidence artifact passes bounded regular-file/no-link path safety, is hashed and copied into the existing content-addressed external-confirmation artifact store. Record v2 references only the immutable snapshot identity. Status and Final Gate reread those bytes and reject mutation, missing content or digest mismatch. This store is part of the existing record lifecycle, not a registry.
68
- - Every blocking record uses `whole_candidate`: any HEAD, tree or workspace snapshot change stales it. No bounded carry-forward is admitted. Submit, rotate, revoke and finalization share the same Active Authority lock; revoke removes the record and rotates its challenge so the old signed record cannot replay.
69
-
70
- ## Live Target Runtime Evidence
71
-
72
- - Machine target-runtime authority exists only for `package_process_json_exact`: Harness directly spawns the exact declared `runtime_family: process`, `role: product` root entrypoint and derives host execution attestation, target liveness, current exact/presence Actuals and exit result. This does not derive the semantic Given/action sequence required by `interaction_trace`. A project `target_runtime`, new `session_id`, `cold_start: true`, historical session, wrapper or child self-report is diagnostic only.
73
- - Static package observation proves structure/configuration content only. It cannot prove runtime consumption, interaction, liveness or production reachability merely because its path appears in a Binding or `input_paths`.
74
- - Browser/native/desktop/device runtime and layout/pixel/accessibility/motion observations have no admitted adapter in this slice. Playwright, H5/browser proxies, project binaries, screenshots and session payloads cannot close those machine Claims; retain a blocking External Confirmation.
75
- - Target family must equal admitted observer family. A proxy may prove only its own separately admitted Fact; it cannot substitute when proxy and required target can fail independently.
76
- - Historical reports, screenshots, binaries and logs are review material. Current-run diagnostics may accompany a Check as Artifacts, but only package extraction from the current frozen static carrier or Harness-owned direct process creates accepting Actual.
77
- - Bind every process runtime dependency through the Source-backed root plus its production owner/Binding. For argv, use only a standalone argument or explicit `--key=value`; Harness resolves a safe repository-relative value from declared `cwd` and includes it only when a production Binding exact path or pattern covers the result. Glob-owned and extensionless files are valid. An unmatched safe relative value is not copied; absolute, escaping, `file:` and network values fail closed unless explicitly external. Bind modules/configuration and Claim/Counterfactual carriers directly. Keep `input_paths` as ordinary Check scope/freshness and project verifier/helper material in `verification_inputs`: it is neither broadly role-scanned nor promoted into the snapshot. The declaration-stable compiled process closure is the only snapshot-copy input, and role separation checks only its actual members. Exact planned members may be absent through Preflight/Compile but must materialize at Final Gate. Compatible Cross-Check and implicit-preserved Facts may share one Raw Execution/envelope, but every Fact keeps its own obligation/comparison identity. A missing production binding for an actual dependency, forbidden closure-role overlap or absent Final member fails closed. This lets existing Progress freshness identify when rolling feedback is stale without a new trigger registry or dependency parser.
78
-
79
- ### Process Containment TCB
80
-
81
- The isolated runtime-closure snapshot, minimal environment, bounded stdout capture, no-follow/digest checks, direct process handle, timeout, process-tree monitoring and cleanup reduce self-attestation and cross-execution priming. Static observation likewise retains prepare-all mutation watching plus per-file pre/post identity/hash. Subtraction controls reopen transient/persistent carrier swaps or descendant/timeout leaks when those owner responsibilities are removed, so do not replace either pair with prose or a new edge mechanism. They are not an absolute security sandbox. The TCB includes the host OS/filesystem/process APIs, Node runtime and process-enumeration/termination behavior. Harness does not claim to contain a deliberately malicious executable that escapes the copied closure, accesses ambient filesystem/network resources or evades every OS process-tree mechanism. If a Claim needs that adversary boundary, run the target inside an independently controlled sandbox and retain External Confirmation until that observer is separately admitted.
82
-
83
- ## Causal Boundary Review After Revision
84
-
85
- - When a rolling blocker causes a semantic or proof revision, review only the affected weak-observability or high-risk Outcomes before adoption. Ask whether a cheaper proxy, fixed response or self-reported success could pass while the declared result still fails at a farther independent boundary.
86
- - Evidence must reach the furthest independently failing boundary named by the Claim. A proxy may prove its own result, but it cannot prove a downstream state or effect merely by reporting success.
87
- - Every behavioral Claim-bearing Assertion requires a same-Check claim-local semantic Counterfactual with admitted baseline and mutated observations. Use `replace_json_value` or `replace_text` to alter only the asserted semantic field/fragment while preserving the production carrier; the designated affected Fact set must change, `preserved_assertions` and preserved Facts/liveness must remain unchanged, other changes must belong to the explicit allowed fan-out set and the obligation universe must remain identical. `replace_file` remains compatibility-only and cannot establish semantic binding; `remove_paths` remains for non-behavioral existence/structure claims. A machine-closing Check with no admitted entries fails with `counterfactual_admitted_observation_required`; it never skips impact validation.
88
- - Static Counterfactuals prove only the mutated structure object itself. Runtime production reachability requires `Harness mutation of a compiled production carrier → direct execution of the same Source-backed process product root → package-observed actual change`; baseline and mutated execution bind the same process-closure identity and neither closure contains Authority, verification or evidence input. Binding/path declarations, synthetic status, evidence output and generated verifier carrier do not establish causality.
89
- - Keep this risk-proportional and internal. Do not create an evidence matrix, product-effect taxonomy, universal restart/end-to-end suite or persistent review state.
90
-
91
- For semantic Product Conformance, require one separate read-only Global `conformance` Check only when `weak_observability` combines with multiple Stages or multiple required product runtime families. It starts from a required root product target, uses a Raw Execution identity independent of Outcome Checks and runs inside the existing Final Gate. It can carry machine `target_runtime` only for an admitted direct-process root; unsupported families remain blocking External Confirmation and the conformance Check cannot bypass that boundary. Single-Stage/single-family weak work keeps the existing same-Check sensitivity path and does not pay this extra runtime cost.
92
-
93
- ## Playwright
94
-
95
- Playwright is a diagnostic project verifier in the current observer slice, not machine Actual authority. `[ac:<assertion-key>]` may still bind one declared AC per Test Instance for failure localization; ordinary tags are ignored and legacy `[<key>]` binds only a declared key.
96
-
97
- Missing, skipped, flaky, unexpected, timed-out, interrupted, failed, multi-AC and duplicate-within-project cases remain failed diagnostics. The same AC across distinct projects aggregates all-of for that diagnostic Check, and aggregate status/count fields remain diagnostic-only. None can close a browser/UI machine Claim.
98
-
99
- Standard frozen Playwright content remains a stable diagnostic verifier input, not an admitted Actual source. Browser/UI machine obligations are External Confirmation in the current slice. Playwright Counterfactual output can localize repairs but cannot create machine acceptance, target-runtime authority or capability proof.
100
-
101
- ## Visual UI Evidence
102
-
103
- - A selected implementation handoff must already pass `ty-context design-resource preflight`, including frozen-Inspector Census, exact manifest↔handoff universe equality, complete per-resource/Fact Cell/Fact/proof closure, non-sampling/non-truncation and exact-target layout/pixel defaults. Preserve exact handoff `fact_refs`, every property-required Fact × verification-method obligation and its exact expectation. Under the current observer slice, layout, pixel, visual, interaction, motion, accessibility, browser/native/device, protected and tolerance/mask methods bind blocking External Confirmations; project `design_method`, `fact_results`, screenshots and Playwright attachments are repair diagnostics only. A future package-admitted adapter may reuse these identities, but no project verdict can pre-admit it.
104
- - Keep separately attributable evidence where geometry/pixel/token/content, interaction/state, motion/haptic/sound timeline, accessibility semantic/navigation/visual adaptation and asset integrity cannot falsifiably share one observation method. This preserves the complete selected-design proof universe; it does not admit those currently unsupported methods for machine completion.
105
- - Never accept an aggregate Boolean, screenshot pass or one `all-states` result in place of per-Fact authority. The expected target cannot be generated from the implementation under test. Plain static/process exact observations remain attributable through package extraction; protected and tolerance/mask obligations remain External Confirmation until an admitted adapter owns their Actual and comparison.
106
- - Keep `design_resource_integrity` and `design_implementation_conformance` distinct. Stable paths/hashes, provider/export success, manifest/registry membership and expected counts prove resource integrity; `visual_render` proves a current artifact exists. Neither proves the production implementation matches a selected target.
107
- - When external design resources are Source, account for every selected exact-target/constraint condition that the Contract explicitly adopts. Candidate comparison, a mutable provider link, extraction success, metadata-only output, resource digest or an isolated prototype run is authoring/integrity material and cannot become product acceptance. Resolve each acceptance-affecting fact through a typed locator plus immutable path/hash and declared target/condition applicability before Compile. Include the handoff and every source-profile entry/dependency in `verification_inputs`; unsupported method-specific design, interaction and target-runtime obligations remain separate blocking External Confirmations on the real production target.
108
- - The decoder may validate a project `design_conformance` record against its compiled target/Assertion/current Check target, conditions and artifacts for diagnostics, but that record is not admitted Actual or comparison authority in this slice. Missing or swapped bindings fail the diagnostic Check; a matching record still cannot machine-close visual conformance or make the implementation render its own comparison authority.
109
- - Playwright may exercise declared `ui_browser` visual ACs for diagnostic localization. Give each independently falsifiable AC one `[ac:<assertion-key>]` Test Instance, but Playwright is not an admitted machine observer in this slice. Bind every browser visual obligation to blocking External Confirmation; a broad screenshot or one passing page case cannot waive an applicable cell.
110
- - Make the test environment deterministic enough for its claim: freeze the relevant browser/project, viewport, theme/mode, locale/timezone, font loading, fixtures/data and animation/motion policy in declared verifier inputs or configuration.
111
- - Any reviewed screenshot baseline that affects pass/fail must exist for the accepting Compile and be included in `verification_inputs`. Generated screenshots, diffs and reports are Artifacts and review material; they are not editable acceptance authority. Creating or replacing a baseline after Authority Lock is verifier-material revision and must never be silently auto-updated to make a failure pass.
112
- - Confirm that each baseline is a selected `exact-target` for the named surface/viewport/theme/state or implements a named `constraint`; an inspiration reference cannot become a fidelity oracle merely because it is available. The implementation's current screenshot is never its own target.
113
- - Screenshot comparison is diagnostic only under the current admitted boundary. Keep DOM/layout/accessibility/motion/responsive/input obligations distinct and blocking; one generic `design_conformance` record cannot erase Source Claims, verification methods or their External Confirmations.
114
- - Keep evidence aligned with stable surface/control/target keys. Visual similarity, interaction/navigation, validation/recovery, permission behavior, accessibility and target-runtime conformance are independently failing claims and need their own Assertions/capabilities when declared; one broad screenshot or UI pass cannot prove all Control fields.
115
- - Run diagnostic checks against production components or real product routes. Host `target_runtime` is available only when Harness directly executes the process product root; `interaction_trace` has no package derivation in the current slice and remains External Confirmation together with browser/native/device journeys. A detached kit/mock/deep-link harness cannot substitute for the production carrier or root journey.
116
- - Keep subjective visual quality and approval external. A new visual direction or baseline that needs human judgment remains an explicit external confirmation even when all machine checks pass.
117
- - `ui_browser` does not create machine proof in the current slice. Browser output cannot close native/mobile/desktop Claims; all such runtime reviews stay external until a package-owned adapter is admitted.
118
- - Preserve each handoff blocker's non-empty `required_capabilities`. A machine Claim closes it only when one admitted adapter for the exact target supplies every required observation; physical device, sensor, camera, orientation, haptic, screen-reader, pixel-density, safe-area and comparable observations are currently target-blocking External Confirmations and cannot be borrowed from a proxy.
119
-
120
- ## Symbolic Noninterference Evidence
121
-
122
- For every non-interference method, require a digest-identified frozen executable Oracle with the exact `symbolic_noninterference.<side>.<method>` capability. Source proof must use the canonical package-owned restricted Source IR in the complete current Inspector inputs; package preflight binds its current bytes to target/certificate/Rule scope and derives and memoizes the static dependency DAG, exact predicate/axis-erased equivalence or every finite-domain evaluation itself. Submitted graph/predicate/evaluation/pass fields and the artifact are recomputable cache only, and the artifact is excluded from semantic inputs. Executable/CSS/implicit-DOM/template/dynamic/reflected/computed/unfrozen/external Source blocks; production remains limited to package-parsed static HTML plus inert JSON. Both sides bind implementation closure/version/capability, environment, exact current inputs, side snapshot, scopes, omitted axes, derived result, artifact and witness. When proofs exist, Source and production proof digests must match the current Final-Gate certificate expectation/result. Extraction outside admitted representations remains an explicit TCB boundary.
123
-
124
- ## Structured Evidence And Sensitivity
125
-
126
- Every machine claim-bearing `structured_json_v2` Check needs same-Check Claim-related Counterfactual sensitivity backed by the compiled admitted observer; the project payload alone never supplies Actual. Population declares a real `universe_binding_key`; every universe carrier is an owning-Check `input_path`, and package observation proves exact universe = eligible = observed plus valid exclusions by entity id. Population never substitutes for the claim-local narrow semantic witness and host-derived target-runtime liveness required by an admitted process behavioral Claim. Artifacts and another Check never substitute for sensitivity.
127
-
128
- Outcome Counterfactual V2 names an Outcome `binding_key`; Global Counterfactual V2 resolves an Outcome-owned `binding_ref`. A Counterfactual mutates only a package-proven subset of implementation carriers, never Source, Context, runners, verification inputs, expected authority, evidence, reports or status. Behavioral witnesses use claim-local `replace_json_value` or `replace_text`, list their designated affected Fact/Assertion set, preserved Fact/liveness set and allowed fan-out set, and require package observations to establish the exact permitted actual changes.
129
-
130
- An `existing` mutation target must exist at Preflight/Compile and the JSON pointer/text fragment must resolve uniquely. An exact `planned` target, process root or argv dependency may be absent until implementation but must exist at Final Gate; materializing the declared path preserves compiled/Authority identity, while later content changes stale targeted Progress.
131
-
132
- Artifacts remain review material. They do not prove Claim sensitivity by themselves.
@@ -1,126 +0,0 @@
1
- # Source-Bound Draft Input Reference
2
-
3
- Read this alongside `contract-authoring.md` when raw, mixed, attachment-heavy or incomplete inputs need Source-quality repair while the same Contract Draft is being mapped. Inputs enter the Draft immediately; this reference is neither an earlier Source-authoring phase nor a standalone intermediary planning stage or second lifecycle.
4
-
5
- ## Objective and boundary
6
-
7
- Preserve every material user, product, technical, visual and acceptance constraint from the initial/revised proposal and supplied resources. Add only traceable necessary derivations, defensible delegated choices and evidence-backed repository facts. Make the real Source understandable without the original conversation before Preflight/Compile, while allowing Draft decomposition and repository binding to proceed incrementally.
8
-
9
- Do not create an intermediary planning schema, CLI, Preflight, Compile, Receipt, cache, authority, state or internal Source-authoring stage. Contract YAML cannot become the sole owner of a choice or missing semantic. Do not let current implementation silently redefine intent. A pre-existing planning or proposal document is simply one possible input.
10
-
11
- ## Input inventory
12
-
13
- 1. Assign every proposal, selected design resource, screenshot, document, diagram, table and other attachment a stable input ID.
14
- 2. Inspect all pages/frames/screens/tables/visible states; never silently sample a multi-part artifact. Every non-empty line in a declared Markdown Source file must ultimately belong to exactly one Material Source Item, one keyed and reasoned non-authoritative `ty-source-background:start/end` block, or the one validated `design-resource-handoff-v1` formal block.
15
- 3. Classify each input as user instruction, product requirement, technical constraint, existing proposal, selected target, repository/Context evidence, constraint, inspiration or background. Background is a closed grammar: `markdown-structure` contains only text-free anchors or horizontal rules, and `provenance` contains only `ty-source-provenance input=<key> mode=<direct|derived|delegated|evidence-backed> [source=<key>] [sha256=<64-lowercase-hex>]` comments; non-direct modes require `source`. Text-bearing headings, free-form provenance and explanatory prose are material or unclassified even when intended as non-authoritative; background must never hide a qualifier, requirement, acceptance fact, architecture meaning, design meaning or other delivery authority.
16
- 4. For visual resources, preserve selection basis, classification (`exact-target`, `constraint` or `inspiration`), stable resource/surface/control/state/target keys, declared platform/viewport/mode/state/content applicability, source profile/canonical entry/dependency set, provider/project/run/entry provenance and immutable digest/snapshot, plus typed locators. A mutable link, metadata-only response, partial file set or prose locator is incomplete. Unselected candidates authorize no fidelity.
17
- 5. Record incorporated meaning and every unreadable, conflicting or intentionally unused part. Higher authority and user-stated precedence win; unresolved conflicts remain decisions.
18
-
19
- ## Preference and research gate
20
-
21
- Before comparative research or a material product, technical, architecture or provider selection, identify decision-changing criteria such as fidelity versus cost, delivery speed, reliability/support, privacy/compliance, lock-in/control, operational burden, platform scope and extensibility.
22
-
23
- Infer preferences only from user words, Source, Context or controlling constraints. If an unknown preference would materially change research or recommendation, ask one concise targeted clarification before proceeding. Do not impose a questionnaire, re-ask known preferences or pause for minor reversible choices with the same defensible recommendation.
24
-
25
- Use current primary/authoritative evidence for changing external facts. Record source, scope and retrieval date. Preference clarification authorizes plan meaning, not payment, contracting, deployment/publication, destructive production mutation, permission grants, sensitive-data transmission or required legal/security/human approval; those remain typed external confirmations.
26
-
27
- ## Working strategies, not phases
28
-
29
- Choose locally as needed while revising the same Draft; do not expose these as lifecycle stages or ask the user to choose:
30
-
31
- - **refinement:** preserve and complete a substantially developed proposal;
32
- - **synthesis:** build coherent Source from a goal plus mixed inputs;
33
- - **hybrid:** use one proposal as backbone and fill gaps from other inputs.
34
-
35
- A short request is sufficient when roles, goal and reference authority are recoverable. Reuse an authorized writable proposal as the real Source. If the delivery exists only in conversation, materialize exactly one project-native Markdown Source according to repository convention. Do not create a parallel planning artifact.
36
-
37
- ## Semantic authoring
38
-
39
- For every material item, preserve one origin:
40
-
41
- - `direct`: stated by user or controlling input, with all qualifiers;
42
- - `derived`: unavoidable for completeness/falsifiability, identifies `Derived From`, states why necessary and changes no user capability, business rule or scope;
43
- - `delegated`: a defensible choice requested by instructions to synthesize/refine/use judgment, records `Delegated By`, preference/evidence basis and exact added meaning;
44
- - `evidence-backed`: repository/Context fact with exact source and no promotion of incidental code shape to product intent;
45
- - `decision_required`: conflicting authority, explicitly user-reserved choice, missing material preference or no defensible recommendation.
46
-
47
- High impact or several options is not itself a reason to pause when criteria support one recommendation. Keep real high-risk actions as external confirmations. Never introduce a requirement for the first time only inside acceptance criteria.
48
-
49
- ## Structure and stable keys
50
-
51
- Use stable semantic lowercase-kebab keys and Markdown anchors where practical. Preserve keys when wording changes but meaning does not; never renumber for ordering or reuse a retired key for new meaning.
52
-
53
- Define vertical Outcomes only when observable results are independently decidable and later verifiable. Do not split by response length, frontend/backend layer, module count, agent capacity or desired parallelism; do not merge distinct results merely for brevity.
54
-
55
- Use only applicable semantic types:
56
-
57
- - result/Outcome;
58
- - Requirement (`REQ`);
59
- - user-visible Control (`CTRL`);
60
- - technical obligation (`OBL`);
61
- - explicitly non-completing meaning (`NCOMP`);
62
- - acceptance scenario (`AC`);
63
- - global non-goal/constraint and forbidden shortcut;
64
- - risk with exact Fact, Affected Outcome, Basis and Consequence;
65
- - external confirmation (`EXT`);
66
- - genuine decision (`DEC`);
67
- - advisory implementation hint (`HINT`), which is not a material requirement.
68
-
69
- ## Non-UI semantic completeness
70
-
71
- For every non-UI delivery, the authoring default is the finest independently decidable semantic Fact supported by direct Source, necessary logical derivation, explicit delegation or evidence-backed preservation. Do not stop at prose paragraphs, Requirements, Product Controls, user stories, broad acceptance scenarios, an `all-states`/`all-errors` catalogue or whatever fields current code happens to expose.
72
-
73
- Before implementation and formal Compile:
74
-
75
- 1. Inventory every material request fragment, attachment, controlling Context unit, canonical schema/specification, selected external constraint, repository-preservation source and delegated instruction with stable identity, digest, disposition and basis. Derive one internal material-text view from the existing Semantic Fact Manifest for every Source item and every strict-UTF-8 material attachment, canonical specification, repository-preservation input, external constraint, delegated instruction and textual design resource. Do not infer text from an extension. Unreadable, invalid-UTF-8 or ambiguous content blocks; binary/design content continues only through its formal handoff route. Deterministically derive headings, paragraphs, nested list items, table rows, quotations, Given/When/Then steps, fenced code/configuration and textual HTML, then prove that every nonblank line belongs to exactly one Fragment or one allowed pure-separator line with no overlap. Each Fragment has exactly one explicit `fact_bearing`, `supporting_basis`, `superseded`, `decision_required` or `scope_excluded` disposition; missing, duplicate, conflicting and dangling dispositions block. Migration may generate current refs/digests plus `decision_required`, but never infer Fact lineage, support, polarity, supersession or exclusion.
76
- 2. Classify every Fragment and Fact as `delivery_semantic` or `source_integrity`, and derive its `product`, `technical`, `design`, `acceptance` or `external` authority domain. A `fact_bearing` Fragment requires owning-Source and reverse Fragment provenance, exact Claim/applicability, complete anchor coverage and matching modal polarity. A `supporting_basis` produces no independent Fact and is legal only when reverse delivery-Fact provenance mechanically carries every modal and high-signal value; an empty, integrity-only or merely same-domain target cannot hide a requirement. Supersession requires an authorized new Source and successor Facts in the same semantic cell (`Outcome + unit + family + condition + property + value-kind`); Expected may change, but subject/condition/property/domain may not. Scope exclusion names the exact Fragment plus excluded Fact/Claim/obligation, same-domain owner and rationale. A design/presentation statement cannot exclude or supersede product/technical meaning without that exact same-domain authority.
77
- 3. Derive and conserve high-signal code spans, API/route paths, versions, enum/symbol names, filenames/schema/config keys, numbers/ranges/units, exact quoted text, modal terms and frozen provider/protocol identifiers. Classify `must/shall/required/必须/应当` as positive-required and `must not/shall not/forbidden/never/不得/禁止/不可/只能/仅可` as negative-required; each maps to a Claim with matching `required_polarity`, and independent modals require split or an explicit compound cell. Every anchor maps to a delivery-semantic Fact, exact supersession, `decision_required` or exact scope exclusion; integrity-only coverage does not count. Reuse the existing Source inventory and Semantic Fact Manifest—never create a second Source ledger or generic NLP registry.
78
- 4. Explicitly disposition every standard semantic family for every Outcome and add custom families discovered from Source/repository/domain structure. The standard floor covers goal/scope/glossary; actors/roles/tenants/entitlements; business rules/calculations; data; operations/workflows/state/time; validation/output/error/API/protocol/event/job; persistence/cache/search/transactions/consistency/concurrency/idempotency; fault/retry/degradation/recovery/backup; configuration/flags/secrets; compatibility/migration/rollout; performance/capacity/cost/reliability/SLO; security/privacy/safety/compliance; observability/deployment/operations; integrations/notification/file/media/localization/commercial; hardware; AI/ML; architecture ownership/boundaries/debt.
79
- 5. Give every applicable outcome, actor, policy, entity/field/relation, operation, state/transition, interface/message/job, store/index/transaction/cache, configuration/migration/deployment/dependency, security/privacy boundary, SLO/signal/alert/runbook, device/AI/custom unit a stable subject/relation/population identity. Preserve hierarchy, owner, cardinality, causality, ordering, producer/consumer, source-of-truth and dependency relations. Static/dynamic populations need exact universe/partition/enumeration/exclusion identity.
80
- 6. Disposition every standard and custom condition axis. Enumerate each atomic applicable value and exact combination across actors/roles/tenants/jurisdictions/environments/regions/platforms/versions/features/configuration/entitlements/permissions/consent/sessions/states/input/boundary/data volume/locale/time/concurrency/repetition/dependency health/connectivity/failure/retry/consistency/freshness/migration/rollout/topology/threat/mode. Continuous domains use explicit ranges/boundaries; invariance/equivalence may share execution only while retaining distinct Fact identity and verdict. No aggregate, representative, pairwise or default-path substitute.
81
- 7. Disposition every standard and custom atomic property per unit and condition. One specified cell creates one Fact with typed value semantics, exact Source locator/digest, owner, quantifier, observation boundary, sensitivity and provenance. Every N/A/exclusion names exact affected identities, basis and rationale; `decision_required`, `unavailable`, unreadable or conflicting meaning remains blocking.
82
- 8. Expand every Fact into all required proof methods—exact/schema/decision-table/formula/invariant/transition/sequence/durable roundtrip/boundary/external effect/population/concurrency/idempotency/fault/recovery/migration/compatibility/performance/capacity/security/privacy/audit/observability/deployment/structure or custom TCB method. Freeze comparator, parameters, tolerance/mask, Oracle identity/capability, environment, observer and protected-value policy. Reach the furthest independently failing boundary; request issuance, parser success, self-reported success, artifact existence or a nearer proxy does not prove downstream persistence/effect/recovery.
83
- 9. Embed one complete `semantic-fact-manifest-v1` in declared Source. Its Inspector Census and collection counts/identity digests prove deterministic complete generation with no truncation or sampling. Require `Expected Semantic Facts = Source Indexed Facts`; later Contract authoring requires exact Fact and Fact×method projection. Values remain in Source/Context; Contract receives identities, located digests and comparison authority only.
84
-
85
- This expansion cannot invent a real product/legal/security/commercial/safety choice. A defensible delegated choice must first become traceable Material Source; an unsupported or user-reserved choice remains a blocker or typed External Confirmation. The named Inspector/Oracle is an explicit trusted-computing boundary, and custom extensions are mandatory when the standard catalog cannot observe the domain.
86
-
87
- ## UI and control completeness
88
-
89
- For each in-scope surface, record purpose, entry/exit/navigation, regions/overlays and included Control keys. For every real material interactive Control, close every canonical field independently:
90
-
91
- `surface`, `region`, `location`, `control type`, `label/content`, `user task`, `visibility`, `availability`, `trigger`, `input`, `validation`, `default`, `interaction`, `navigation/result`, `loading`, `empty`, `success`, `failure`, `recovery`, `permission`, `feedback` and `accessibility`.
92
-
93
- For each field record concrete `specified` meaning, an explicit justified `not_applicable` statement, or blocking `unresolved`; omission is not non-applicability. Also preserve every material cross-Control and system relation—including shared state, ordering/dependency, mutual exclusion, navigation, permission, recovery, validation and feedback chains—and explicitly close the Outcome as `not_applicable` only when no such relation exists. Each specified or not-applicable fact, including relation closure, must name its actual target, atomic condition/input/state dimensions and Given/When journey applicability.
94
-
95
- Do not invent controls for a non-interface delivery. A coarse frame or configured design system does not supply unshown states. Selected design resources and product/technical Source remain parallel: visuals cannot invent business/data/permission/algorithmic rules.
96
-
97
- For every selected exact/constraint target, preserve the declared platform/viewport/mode/state/content conditions and identify which surface and Control keys it governs. A formal Web/App handoff also preserves its canonical Fact-manifest identity, frozen Inspector/Census and the exact handoff projection of condition axes/combinations, subject hierarchy, subject-local variations, atomic properties, Fact Cells/Facts, proof obligations, Oracles/environments, design-system lineage, assets and blockers. Product Controls and eight UI/UX dimensions are semantic/roll-up owners, not the Fact ceiling. Do not collapse a component instance or Anatomy Part into its family, several states into `all-states`, several conditions into one label, or several property/method obligations into one broad visual claim. Canonical resources retain exact values; Source and Contract retain stable Fact identities and located-digest/comparison authority rather than copied CSS.
98
-
99
- Before Compile, confirm the formal handoff already proves `Expected Fact Universe = Canonical Resource Facts = Handoff Indexed Facts`, including explicit N/A/exclusion basis and non-sampling/non-truncation. Each covered Fact has all property-required verification methods, and each exact target condition has full-target layout and pixel Facts. Separately record any design-resource acceptance blocker supplied by the Source, including its exact Source items, verification methods and non-empty runtime-observation `required_capabilities`. Do not weaken a physical-device, sensor, camera, orientation, haptic, assistive-technology, pixel-density, safe-area or other target-local need into a generic browser/runtime label merely because the proxy is available. File identity, hashes, provider/export success, registry membership, Census counts and preflight are integrity/input-closure facts only; they do not state that a production owner, real-user journey or rendered interaction conforms.
100
-
101
- ## Acceptance and risk
102
-
103
- Each AC has exactly one Given/When/Then scenario, names the REQ/CTRL/OBL/NCOMP meaning it accepts and introduces no undeclared product semantics. Keep representative/sample/framework checks distinct from full-population claims and partial delivery distinct from completion.
104
-
105
- Use the Runtime's exact risk Fact names when marking risk. Data migration is `data_migration`; a weakly observable critical path is separate `critical_user_path` and `weak_observability` facts; preserve `multi_repository_change` in Source so Contract compilation can reject unsupported delivery honestly.
106
-
107
- ## Preflight/Compile convergence audit
108
-
109
- Before Preflight/Compile confirm:
110
-
111
- 1. Every material original statement and qualifier is preserved.
112
- 2. Every supplied input is incorporated or has an explicit unreadable/unused/conflict disposition, and every non-empty Source line is owned by a Material Item, closed-grammar structure/provenance background block or validated formal block.
113
- 3. Distinct requirements and independently decidable Outcomes were not collapsed.
114
- 4. Every real Control has all 22 canonical fields closed as specified, justified not applicable or unresolved; every material cross-Control/shared-state/navigation/permission/recovery relation is specified or the Outcome explicitly declares that no such relation exists.
115
- 5. Every REQ, specified/not-applicable CTRL field and Control relation has exact applicability plus acceptance, external confirmation, decision or explicit exception; unresolved coverage blocks.
116
- 6. Derived/delegated/evidence-backed items have traceable basis and no hidden product expansion.
117
- 7. Non-goals, forbidden shortcuts, risks and recovery are concrete.
118
- 8. No unsupported number, threshold, metric or external claim appears.
119
- 9. Selected design resources retain stable identity and exact declared coverage; formal Web/App handoffs retain manifest-backed atomic Fact/proof universes with no aggregate, sampled or truncated coverage; candidates remain non-authoritative.
120
- 10. Every material UI Fact and Control can be mapped to a production target/owner, real-user entry journey and independently attributable acceptance route, while every declared design blocker has an explicit machine or target-blocking external-confirmation disposition. Removing one from scope requires an explicit Source revision; Contract prose cannot waive it.
121
- 11. The Source is self-contained enough to own every mapped Draft semantic and names every still-required external artifact.
122
- 12. At least one marked `technical_obligation` carries `aspect=architecture`, preserves the selected owner/dependency/debt conclusion, and maps to an independently falsifiable architecture obligation rather than only a Result Claim.
123
- 13. Every derived material fragment and high-signal anchor has exactly one allowed disposition and content-semantic coverage; cross-domain exclusion and implicit/unsupported supersession are absent.
124
- 14. The one `semantic-fact-manifest-v1` exactly inventories all material non-UI inputs and complete standard/custom family, unit/relation/population, condition, property, Fact and proof-obligation universes; every ordinary Material Source Item contributes exact Fact lineage, all generation collections have complete count/digest closure, and no aggregate/sample/ungrounded N/A/unresolved row is hidden.
125
-
126
- Complete non-rendering `ty-source-item:start/end` markers in the real Markdown Source without rewriting direct text, wrap only recognized Markdown structure or structured provenance in uniquely keyed and reasoned `ty-source-background:start/end` blocks, retain at most one schema-valid `design-resource-handoff-v1` formal block, and finish the corresponding Contract mapping in the same loop. Unclassified text, arbitrary prose inside background, a background block used to hide material meaning, unresolved Control coverage or missing applicability blocks Preflight/Compile. Neither markers nor this audit delay opening the Draft.