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,205 +0,0 @@
1
- # DRA Semantic Replay, Recovery And Proposal Writeback
2
-
3
- Load this reference only for a material generation/revision loop which needs complete semantic replay, a selected-Proposal writeback, current bidirectional audit or real recovery across interruption. It strengthens upstream Source quality and does not become Design Authority, implementation acceptance or Long-Task proof.
4
-
5
- ## Simple path and admission
6
-
7
- A simple scoped preview creates zero recovery files and persisted recovery bytes, adds no user pause or Provider generation beyond the one requested commission, runs no formal handoff/preflight, performs no Proposal writeback and opens no helper write transaction. Its ordinary requested preview is the commission itself; recovery adds and reports zero tool actions. Keep its temporary reasoning in the current turn.
8
-
9
- Ordinary conversational review and selection remains legal outside this deterministic path. It creates no approval record or persistent selection state and must be reconfirmed if lost before authorized materialization. Deterministic cross-interruption selection uses only the existing raw-digest-bound marked Source, `ty-dra-authority-v1`, selected-resource binding and conditional checkpoint below; do not invent `review_set_id`, approval status or another checkpoint kind.
10
-
11
- Without the complete bindings below, an ordinary loop may report only conservative impact analysis from readable Source, identify unverified scope and regenerate conservatively within the hard ceiling or return `decision-required`. It cannot claim that only identified resources are affected. When this recoverable path has a complete current catalog, change and preservation claims remain bounded to its exact Requirements-to-Resource, Resource-to-Requirements, explicitly unchanged, blast-radius and inactive-leakage universes.
12
-
13
- Use a recovery checkpoint only when interruption would otherwise lose material accepted/rejected/unresolved semantics, immutable Provider identity or a pending CAS writeback. It is versioned, ignored, task-local, non-authoritative and deletable. It is not Source, Context, a Contract, Authority, Evidence, Receipt, Gate, Provider registry, scheduler, acceptance state or completion conclusion. There is no global session registry, event log, heartbeat, polling loop or state-machine service.
14
-
15
- For deterministic classification, apply four fail-closed invariants before details: validate every semantic key independently; retain every valid accepted/rejected/unresolved decision and its authority row even when a later patch, audit or owner fails; reject deterministic checkpoint input whose claimed Source authority is invalid; and report a requested or pending unsafe reconciliation/writeback as blocked rather than as no action. Provider/resource selection never fills a missing authority row, and one key's authority never covers another key.
16
-
17
- ## Base and replayable Delta
18
-
19
- Freeze one current Base with:
20
-
21
- ```yaml
22
- locator: repository/relative/file
23
- raw_byte_digest: sha256
24
- encoding: detected-by-helper
25
- eol_policy: detected-by-helper
26
- scope_ceiling: bounded-scope-key
27
- in_scope_keys: []
28
- explicitly_excluded_keys: []
29
- ```
30
-
31
- The Base must be repository-readable and raw-digest verifiable: ordinary project Source, a materialized project-native Proposal, or an explicitly authorized disclosure-reviewed recovery snapshot. A Provider resource is recoverable only when its immutable identity can be fetched again and checked. Conversation-only input, expiring external documents, unavailable attachments and sensitive inputs are not recovered from locators. Materialize only with explicit user authorization. Never persist credentials, tokens, secrets, protected raw values or sensitive originals. Otherwise report exactly `cross-session deterministic recovery unavailable`; when no checkpoint exists, its checkpoint disposition is `none`, not rejection of a nonexistent file.
32
-
33
- Every Delta stores actual replay semantics, never only an ID:
34
-
35
- ```yaml
36
- delta_id: stable-key
37
- sequence: 1
38
- supersedes: []
39
- proposes_replacement_of: []
40
- operation: add | replace | remove | preserve
41
- semantic_kind: exact-visual | product | business | permission | data | algorithm | commercial | safety-security | technical
42
- target_keys: []
43
- before_semantics: complete-value-or-null
44
- after_semantics: complete-value-or-null
45
- origin: user-direct | necessary-derived | repository-evidence-backed | provider-suggested
46
- decision_authority: explicit-user | delegated:<bounded-scope-key> | none
47
- evidence_refs: []
48
- source_refs: []
49
- explicitly_unchanged_keys: []
50
- status: accepted | rejected | unresolved
51
- ```
52
-
53
- Retain all statuses, exact ordering, one-way supersession and explicit unchanged keys. Only an accepted Delta may supersede an earlier active accepted Delta, and it must replace the same target set, semantic kind and exact prior `after_semantics`; a rejected or unresolved Delta never deactivates accepted meaning. Use `proposes_replacement_of` for a rejected/unresolved proposal which may be decided later. Cross-target or semantic mismatch fails closed.
54
-
55
- After legal supersession, every stable semantic target key has at most one active accepted Delta owner. Two active accepted Deltas for one target without a legal replacement relationship fail closed. This version deliberately has no generic merge or composition DSL; a future need to compose one semantic key from several Deltas requires a separately admitted mechanism.
56
-
57
- Derive the complete inactive universe as rejected plus unresolved plus superseded accepted Delta IDs. The current audit supplies exactly one leakage row for every inactive ID with the matching reason and `leaked: false`; missing, extra, duplicate or active-ID rows fail closed. If an inactive meaning remains in the Proposal, selected-resource projection or resulting writeback, reconciliation is blocked.
58
-
59
- Status inventories contain stable target-key identities, never `key=value` strings; semantic values stay in the Delta rows. The same key can therefore remain in the accepted inventory while a later rejected or unresolved proposal for that key remains visible in its own inventory. A blocked audit or illegal final owner does not rewrite an independently authorized accepted Delta as unresolved.
60
-
61
- Each `source_ref` resolves through `authority_sources` to one repository-contained Source document, its current raw-byte digest, one actual marked Source item, the item kind and item-text digest. An arbitrary string or conversation-only locator cannot create authority or enter deterministic recovery. For deterministic accepted authority, that same marked Source Item also contains one strict, non-rendered, package-owned single-line `ty-dra-authority-v1` JSON projection covered by the Item text digest. Free text without this projection can continue through ordinary conversational DRA, but it cannot machine-close deterministic recovery authority or enter a checkpoint as accepted authority.
62
-
63
- An explicit projection uses `mode: explicit-user` and enumerates exact target keys, semantic kinds, allowed origins and the canonical `after_semantics` SHA-256. Its `target_keys` set must equal the bound Delta target set; a coupled `[A, B]` decision cannot be rebound as an independently authorized `[A]` meaning. A delegation projection uses `mode: delegation` and enumerates its stable delegation key plus exact allowed target keys, semantic kinds and origins. `delegated:<id>` names the matching task-local delegation row, and the accepted Delta binds that same decision Source. Delegation is deliberately a bounded superset: every Delta target must be a member of the delegation's allowed targets. Do not substitute an incidental target path for delegation identity. A hierarchical-looking key such as `checkout.confirmation` does not implicitly authorize `checkout.confirmation.fade_duration`, a sibling or a broader target.
64
-
65
- `origin` records where the meaning arose, not where its Source item happens to be stored. Materializing a direct user choice in the repository leaves it `user-direct`; use `repository-evidence-backed` only when repository evidence itself supplies the meaning. A separate decision Source can authorize a meaning without changing that meaning's origin.
66
-
67
- A selected resource is evidence and never authorizes itself. An accepted Provider suggestion requires explicit user authority or a delegation which covers its origin, semantic kind and every target. Delegation authorizes bounded choice; it is not automatically the Source for the chosen non-visual meaning. Product capability, business, permission, data, algorithm, commercial and safety/security meaning additionally binds an independent authoritative Source Item, separate from the delegation item, whose own projection simultaneously matches the exact target set, semantic kind, origin and canonical `after_semantics` digest. An unrelated requirement kind cannot fill that slot. A specific explicit-user decision item may carry both meaning and acceptance, but a general bounded-delegation decision alone is not the meaning. Exact visual values may remain exclusively resource-owned, but their adoption authority remains independently Source-bound. A visual-color delegation therefore cannot be rebound to product, business or permission meaning. Provider-added meaning lacking authority remains `unresolved` unless an authoritative decision explicitly rejects it. Rejected/unresolved meaning never enters accepted requirements or writeback.
68
-
69
- The helper proves consistency between Source-owned structured scope and Delta fields. Interpreting the higher-level semantics of arbitrary free text remains part of the Authoring TCB; the helper does not implement general natural-language entailment.
70
-
71
- Reconstruct each round only from:
72
-
73
- ```text
74
- current Base@raw digest
75
- + ordered active accepted Delta semantics
76
- + current unresolved decisions
77
- + current scope/exclusions
78
- + current Design Authority identity
79
- ```
80
-
81
- Never use a prior Agent summary or generated resource as the next Base. Missing semantics, stale Base, invalid sequence/supersession/delegation or an out-of-scope/excluded target fails closed.
82
-
83
- ## Conditional checkpoint and helper
84
-
85
- Prepare one disclosure-reviewed JSON input using schema `design-resource-recovery-input-v4`, including session identity, Base, `authority_sources`, delegations/Deltas, exact accepted/rejected/unresolved sets, current Design Authority identity, immutable Provider project/run/resource references, `selected_resource_bindings`, one frozen `audit_expectations` catalog and optional writeback. The catalog owns the exact changed, unchanged, resource-decision, blast-radius and inactive-leakage row expectations, including Delta/resource/condition/basis/binding identities. Every resource-decision binding freezes one and only one `final_disposition`: `proposal-written` with its exact operation ID, `resource-owned-exact-visual` with its selected resource/conditions/structured owner, `not-adopted` for rejected or superseded meaning, or `unresolved` for unresolved meaning. Audit observes and verifies this owner; it never selects it. Changing an owner requires checkpoint `update` with digest CAS. The catalog is the only checkpoint audit-universe/owner owner; current audit rows must be set-equal to it rather than merely non-empty. Selected resource bindings declare one unique resource key, generic `repository-snapshot` or `external-immutable` identity, locator, raw-byte digest and exact condition identities. Arbitrary condition strings and duplicate identities fail closed.
86
-
87
- The existing selected-resource, condition, Design-Authority and authority-Source fields jointly bind deterministic selection to the canonical selected-source digest, target, declared conditions and controlling Source/Design-Authority identity; no new selection field or status is added. Preview URLs, names and exports are derived outputs. A proved equivalent export does not change the selection binding, while a visible or semantic difference requires a new user review/selection and, when retained here, the existing digest-CAS checkpoint update.
88
-
89
- Create/retain a checkpoint for a real interruption or pending CAS writeback; use `none` when neither exists, and `reject` when a requested new checkpoint, input, destination or existing checkpoint cannot be admitted. Never turn an invalid authority request into `none` merely because no file was written. Then explicitly create it when required:
90
-
91
- ```text
92
- ty-context design-resource recovery create <session> --input <state.json>
93
- ```
94
-
95
- When a real recovered loop changes Delta, resource or pending writeback inputs, replace the existing checkpoint only through digest CAS:
96
-
97
- ```text
98
- ty-context design-resource recovery update <session> --input <state.json> --expected-sha256 <current-checkpoint-sha256>
99
- ```
100
-
101
- The helper writes the next canonical checkpoint to an exclusive same-directory temporary file, rechecks the current digest, atomically replaces and rereads it. A mismatch retains the old checkpoint and fails closed. Repeated identical input is an idempotent no-write. This creates no session registry.
102
-
103
- The helper writes only:
104
-
105
- ```text
106
- tmp/ty-context/design-resource-recovery/<session>/checkpoint.json
107
- ```
108
-
109
- and requires the path to be ignored and untracked. It validates strict schema/version, canonical bytes, Base identity, complete Delta/delegation semantics, repository containment/no-follow parents, symlink/junction/hardlink and user collision boundaries. The checkpoint adds detected Base encoding/EOL and, when applicable, detected target encoding/EOL. It stores no current activity, live Provider execution, Artifact readiness, Design suitability, next action, readiness/completion or acceptance.
110
-
111
- Use `inspect` after interruption. It re-reads Base and repository Design Authority, validates raw identities, reconstructs ordered active accepted/rejected/unresolved semantics and derives writeback state. External Provider/resource and external Design Authority identities remain explicitly listed for current revalidation; the helper does not contact or manage Providers.
112
-
113
- ```text
114
- ty-context design-resource recovery inspect <session> [--json]
115
- ```
116
-
117
- Unknown schema, corrupt JSON, stale Base/authority or unavailable semantics fails closed. In particular, v3 input/checkpoint/audit and exact-patch-v3 are never silently interpreted as v4/exact-patch-v4; reconstruct current state from Source, Provider identities and Proposal instead of inferring missing bindings or establishing a migration registry. The helper's deterministic boundary is supported repository files and exact bytes; a locator alone is not proof of recoverability.
118
-
119
- ## Current audits and status card
120
-
121
- Before selection/writeback and after every material revision, re-read current resources and perform three upstream audits:
122
-
123
- 1. **Requirements → Resource:** every frozen active accepted changed key has the catalog's exact Delta, selected immutable resource and condition bindings. Every frozen explicit-unchanged key has exactly the catalog's resource, condition and authority-basis Source bindings. A referenced condition must belong to the selected resource's declared conditions. Missing, extra, duplicate, unresolved, distorted or falsely claimed coverage fails closed.
124
- 2. **Resource → Requirements:** freeze every material resource-decision row and its one final disposition per binding in the checkpoint catalog. Each row binds exact Delta IDs and a separate stable binding ID plus requirement-key/Delta/origin/decision-authority/Source tuple for every key; authorization of one key never covers another. The global `(resource_ref, requirement_key, delta_id)` and `(delta_id, target_key)` identities are unique across all rows; duplicate arrays or cross-row bindings fail before any Map/Set normalization. Every active non-preserve `Delta × target` has exactly one final disposition. `proposal-written` binds one real patch operation ID. `resource-owned-exact-visual` is limited to exact visual meaning and binds one immutable selected resource, exact declared conditions and a structured `selected-source-record` or `external-immutable` owner. Rejected/superseded uses `not-adopted`; unresolved uses `unresolved` and blocks readiness. Provider success, audit choice or a selected file cannot create authority.
125
- 3. **Unexpected Blast Radius and inactive leakage:** the catalog freezes the complete blast-radius universe, including every explicit Base exclusion, and every inactive Delta leakage row. Inspect every blast row for out-of-scope pages, controls, copy, layout, tokens and states, and every leakage row for reappearance of rejected, unresolved or superseded meaning. Missing, extra, duplicate, unexpected or unresolved rows fail closed.
126
-
127
- Provider execution, Artifact readiness and Design suitability are independent. Provider success, complete fields or repeated values never prove suitability; a valid shared Token or inherited component variant must not be rejected merely because a value repeats. Block direct/Design-Authority conflict, wrong target/condition, missing material state, placeholder-final content, unsupported added meaning, unresolved promotion, stale identity and incomplete formal closure.
128
-
129
- Derive—not restore—a status card containing Base identity; accepted/rejected/unresolved Delta; current changed and explicitly unchanged keys; Provider run identity; current live Provider execution; current Artifact readiness; freshly audited Design suitability; all three audit findings; current digest-derived writeback CAS state; and next action. A requested status card re-runs the current audits: an executing run or incomplete current resource is `blocked`, not a restored or `not-applicable` audit conclusion. The checkpoint contains none of those live conclusions.
130
-
131
- Derive status fields with one meaning each:
132
-
133
- - checkpoint: `none` when no checkpoint exists or is needed, `create` for a real interruption/pending CAS writeback, `retain` for an existing valid checkpoint, and `reject` for a proposed or existing invalid/unsupported checkpoint, input or unsafe destination;
134
- - write action: `none` when no Proposal writeback/promotion is pending or requested (including a recovery-availability inquiry), `preview` for a safe pending patch not yet approved for apply, `apply` only for pre-digest plus balanced audit, `idempotent-no-write` for expected-post bytes, and `block` when a requested/pending writeback is unauthorized, stale, conflicting or audit-blocked;
135
- - audit: `not-applicable` only when no current selected/resource surface is available to audit, `blocked` when any current audit cannot balance, and `balanced` only after all three current audits and leakage checks pass.
136
-
137
- An unauthorized meaning in a selected resource therefore blocks its Proposal promotion/writeback even if the file remains valid visual evidence; an unavailable conversation-only Base with no writeback request reports no write action.
138
-
139
- Project the decision inventory before projecting the action result. An independently Source-valid accepted Delta stays in the accepted inventory and keeps its authority row when a later patch, resource identity, condition/basis binding, audit row or final owner is invalid; those later defects block reconciliation, readiness and writeback but do not demote or erase the accepted meaning. When balanced reconciliation, promotion, handoff or writeback is requested or imminent, any duplicate identity/cross-row binding, condition/basis mismatch, illegal/multiple/unreadable final owner, inactive leakage or patch mismatch means a blocked result, blocked current audit and blocked write action—not `none` or `unavailable`—with every affected audit direction reported. If the authority Source/projection itself fails target, semantic kind, origin, meaning digest or repository identity, reject the deterministic input/checkpoint and do not accept that meaning. For a deterministic create/update input, this is checkpoint `reject` even when no prior checkpoint exists; normalizing the invalid claimed acceptance into rejected or unresolved meaning does not turn the invalid input into checkpoint `none`. Retain an existing valid checkpoint when an update/cleanup conflict or partial cleanup prevents the requested operation.
140
-
141
- Apply the table to imminent work, not only completed commands: a valid authorized Delta plus an immutable resource and a real interruption expected before writeback requires checkpoint `create` and write action `preview`; a handoff-ready request with any current audit/authority gap requires write action `block`; and frozen pre/post digests plus a balanced current audit are a pending CAS writeback requiring checkpoint `create` or `retain` and write action `apply`.
142
-
143
- ## Safe writeback and reconciliation
144
-
145
- Create a writeback only when at least one frozen active binding is `proposal-written`. Freeze target locator, pre-write raw digest, exact `design-resource-exact-patch-v4`, canonical patch digest, expected post bytes/digest, selected resource identities and `proposal_written_delta_ids`. The immutable replay Base and mutable writeback target must be distinct locators; if the current Proposal itself must be updated, first use an explicitly authorized immutable Source/snapshot as Base. The exact patch universe is only the active accepted `Delta × target` bindings frozen as `proposal-written`; resource-owned exact values remain in effective requirements and audit but never enter or get copied into Proposal.
146
-
147
- Every patch operation has one unique ID, exactly one Delta, one target, one semantic binding and one `source_span` in `utf16-code-unit-v1` coordinates over the original decoded pre-write Proposal. Every non-null before/after semantics has exactly one JSON scalar leaf, and the declared local text projection must cover that leaf. Ordinary string scalars containing CR, LF, NUL or another control character are unsupported; never permit a value such as `red\npermission.admin: true` to escape its scalar carrier.
148
-
149
- For `replace`, split each local before/after text at its projected scalar. The complete prefix before the scalar and suffix after it must be character-for-character equal; only the projected scalar may change. Adding a permission line, renaming a label or deleting nearby prose inside the same operation is blocked and requires a separately authorized Delta rather than piggybacking on the scalar replacement.
150
-
151
- Free-text add/remove cannot establish non-interference. `add` requires null before semantics, preserves one exact nonempty insertion anchor and adds exactly one package-canonical single-line `ty-dra-proposal-scalar-v1` carrier plus the current uniform EOL. That carrier contains only `target_key`, `semantic_path` and the canonical JSON scalar value. `remove` projects one before leaf to null, requires empty `after_text` and deletes exactly one already canonical carrier whose target/path/value match the Delta; it cannot widen over an adjacent heading, requirement, explanation or other target. `disabled`, `removed`, `deprecated` or another non-empty substitute is new meaning requiring a separate Delta. If the current Proposal has no supported anchor/carrier, report exactly `deterministic Proposal writeback unavailable`; return a complete revised Proposal for user confirmation or retain the exact value as resource-owned instead of falling back to generic string replacement.
152
-
153
- Fail closed from the actual patch-v4 operation and Proposal bytes, not from omitted detail in a concise audit summary. A statement that an operation exactly projects its one leaf and that its anchor/carrier, preimage and expected post bytes are current is a positive claim of those named invariants unless another fact contradicts it; do not invent a missing carrier, malformed carrier or free-text fallback merely because the summary does not repeat the serialized carrier. Conversely, a claimed valid operation never overrides an observed parser, target/path/value, anchor, scaffold or span mismatch.
154
-
155
- For a decision-only review whose supplied facts are an invariant summary rather than the serialized operation, treat these as sufficient positive patch-v4 claims unless another supplied fact names a mismatch: an add with null before semantics, exactly one after scalar, `before_text` used only as a preserved structural anchor, exact after projection and current pre/post bytes; or a remove with exactly one before scalar, null after semantics, empty `after_text`, exact before projection and current post bytes in which the old `before_text` is absent. Such a positive summary is `allow`/balanced and does not itself reveal missing carrier bytes. This interpretation never relaxes create/update: when actual operation bytes are available, the helper must parse and verify the canonical carrier, anchor and source span and fail closed on any mismatch.
156
-
157
- A carrier, scaffold, projection or source-span defect is a downstream patch defect, not a new authority decision. When the Delta's Source and decision authority remain valid, preserve that Delta in `accepted_keys` and preserve its authority row while returning a blocked disposition/audit/write action and rejecting the invalid checkpoint input. Never erase or demote already accepted meaning merely to express that its proposed patch cannot be applied; only an actual Source/authority failure changes the accepted inventory.
158
-
159
- Checkpoint create/update resolves every source span against the same original Proposal before mutation. The frozen interval must equal `before_text` and both text digests, and all spans must be pairwise disjoint and non-nested; operations cannot share a character or insertion anchor. Apply sorts original spans by descending offset and replaces only those intervals, so a later operation cannot consume output generated by an earlier operation. Readback calculates each final interval from original offsets and length deltas, checks its exact output plus the whole-file expected digest and thereby conserves untouched prefix, suffix and inter-operation gaps. A source span cannot represent two independent meanings. Inactive, unknown or resource-owned bindings cannot enter the patch, and changing red semantics to purple text without changing the Delta is rejected during create/update. For an active superseder, the declared prior `before_text` projection must also be absent from the computed and reread post-write Proposal; its survival is inactive-meaning leakage. This is a bounded scalar-carrier projection proof, not general NLP entailment or arbitrary text-diff semantics. Preview before mutation:
160
-
161
- ```text
162
- ty-context design-resource recovery preview <session> [--json]
163
- ```
164
-
165
- Current target digest determines state:
166
-
167
- ```text
168
- current == pre-write digest => unapplied
169
- current == expected post digest => already applied/idempotent
170
- otherwise => concurrent conflict; fail closed
171
- ```
172
-
173
- Produce a fresh `design-resource-reconciliation-audit-v4` bound to the same Base, Design Authority, Provider run, selected resource digests, optional expected target digest, current decision sets and the checkpoint's complete audit-expectations catalog. Include Requirements→Resource, per-key Resource→Requirements, blast-radius and inactive-leakage rows. For a Proposal writeback, apply:
174
-
175
- ```text
176
- ty-context design-resource recovery apply <session> --audit <audit.json>
177
- ```
178
-
179
- The helper first requires a balanced fresh audit, validates checkpoint-frozen structured downstream owners and CAS, reapplies the exact patch from the frozen original spans in memory, preserves supported UTF-8/BOM or UTF-16 encoding and the existing non-mixed EOL policy, writes a same-directory exclusive temporary file, syncs it, rechecks the target, atomically renames, rereads expected bytes, verifies every operation's calculated final interval—or removed canonical carrier—plus whole-file digest, and reconciles again. An already-post state performs no write. A `selected-source-record` owner must be repository-readable at its bound digest; an external-only Provider locator stays revalidation-pending.
180
-
181
- When no binding is `proposal-written`, omit writeback and do not invent an empty patch or transaction. Re-read Source, selected resources and downstream owners and reconcile the complete catalog read-only:
182
-
183
- ```text
184
- ty-context design-resource recovery reconcile <session> --audit <audit.json>
185
- ```
186
-
187
- Recovery uses only generic repository snapshot/source-record identity. It does not accept a `formal-handoff-target` label, an implementation-feasibility-readiness label, duplicate either formal parser, or persist a selected production strategy. Formal Web/App input closure remains owned by `ty-context design-resource preflight`, while production ownership remains downstream.
188
-
189
- A valid resource-owned-only case may be `allow` plus `reconciliation-balanced` with `write_action: none`, but the helper-level `handoff_ready` projection remains false. Any later readiness claim waits for the Skill-owned composition of current Provider/resource revalidation, durable final ownership and applicable formal preflight; never infer readiness merely from a balanced read-only reconcile.
190
-
191
- The helper reports only `reconciliation-balanced`, `writeback-applied`, `writeback-idempotent`, `blocked` or `external-resource-revalidation-pending`. It does not report `handoff-ready`. Missing/extra/duplicate/unresolved/distorted/unsupported coverage, per-key authority mismatch, ambiguous/illegal final ownership, inactive leakage, changed explicit-unchanged meaning, unexpected blast radius or any identity mismatch returns `blocked`. A selected external resource which the helper cannot currently reread keeps external revalidation pending even after a valid Proposal writeback.
192
-
193
- Same-directory rename, filesystem durability and the remaining same-user pre-rename race are the named Windows/macOS filesystem TCB. This is not hostile-writer linearizability or crash-proof storage. Cleanup failure is explicit. The helper removes only an exact digest-matched valid checkpoint and its now-empty session directory:
194
-
195
- ```text
196
- ty-context design-resource recovery remove <session> --expected-sha256 <sha256>
197
- ```
198
-
199
- Before removal it inventories the session directory. It removes the checkpoint and directory only when the directory contains exactly the helper-owned digest-matched checkpoint. Any other entry returns an explicit `partial` result and preserves both the checkpoint and unowned content; a race after checkpoint removal also returns `partial` with the retained entries. It never scans or deletes unrelated `tmp`, `.work_products`, `artifacts` or reports.
200
-
201
- ## Downstream boundary
202
-
203
- Proposal–Resource reconciliation is upstream diagnostic information. It never replaces the Proposal, selected immutable resources, formal handoff, downstream UI Authority Closure or project implementation checks. A later Long-Task can prove only final Source/Contract bindings, current implementation and current Evidence. Its sole Final Gate cannot prove historical Provider execution, and the checkpoint/audits/status card never enter Long-Task Source, Contract, Authority, Evidence or completion.
204
-
205
- Only the DRA Skill may derive final `handoff-ready`, and only from helper reconciliation balance plus current Provider/resource revalidation, one durable final owner per active binding, every applicable formal handoff/preflight and no unresolved blocker. This composition is not a new Gate and says nothing about Provider history, subjective optimality, arbitrary natural-language truth or completed product implementation.
@@ -1,290 +0,0 @@
1
- # Dynamic Resource Selection
2
-
3
- Use this reference to derive a bounded design-resource commission from the actual request. It is a decision model, not a fixed production sequence.
4
-
5
- ## 1. Establish the scope ceiling
6
-
7
- Extract the smallest explicit output or development boundary before interpreting the background:
8
-
9
- - subject: one control/component, one region, one page, named pages, a flow or a reusable system;
10
- - development coverage when the resource is an implementation handoff: named surfaces/routes, regions, component families, unique controls and conditions that will actually be built;
11
- - platform and viewport when known;
12
- - modes, states and transitions explicitly requested;
13
- - fidelity or editability requested, if any;
14
- - exclusions such as “other pages not included,” “preview only,” “no Figma” or “do not update files.”
15
-
16
- Rich background improves a bounded artifact. It never authorizes more artifacts. Necessary surrounding context may show where a partial feature lives, but it does not place the rest of that page or product in scope. If the user supplies a complete app plan but asks to preview one button, generate at most the one-control resource. If the user asks for design resources for one development slice, cover that slice through its material controls and conditions, not the whole background product.
17
-
18
- When an in-scope decision exposes an outside-ceiling effect, assess and explain that effect without generating or revising the outside subjects. Return the existing `decision-required` disposition with `reason: scope-expansion-required`. The user may choose an in-scope alternative or explicitly expand scope; only then recompute the ceiling and coverage. The reason is not a new status, approval or workflow state.
19
-
20
- For page, flow or complex-control generation, recover the available authoritative constraints before deriving a commission:
21
-
22
- - target user/role and usage context reference;
23
- - client/host/platform, input method and relevant size classes;
24
- - owning Surface/Screen duty and main-versus-drilldown boundary;
25
- - primary task outcome, primary work object and shortest task loop;
26
- - material operation–affected-object–feedback relationships; and
27
- - critical context, state, recovery and accessibility constraints.
28
-
29
- These product and surface facts remain owned by controlling Product/Surface/Screen Source. The commission references them without becoming their owner. Separately consume `DESIGN.md` and selected exact-target/constraint Source for visual-system and selected-design conditions. Non-authoritative task-level UI/UX analysis may inform candidate comparison but cannot supply missing product or surface meaning. A feature list, screenshot, route tree, component inventory or analysis output cannot fill a missing product or surface fact; if the missing meaning materially changes the resource, return `decision-required` or request the owning Source update before Provider execution.
30
-
31
- If the desired candidate changes durable product goals/rules/capability, page duty, primary work object/task loop, information/action/feedback placement, interaction topology, Design Authority, tokens or component-family grammar, stop and route the change to the actual Product/Surface/Screen/Design owner. Reread the updated owner before resuming selection or generation. A candidate execution defect stays within DRA and does not by itself justify a durable owner change.
32
-
33
- ## 2. Choose the intent
34
-
35
- | Intent | User decision being supported | Default stopping point |
36
- | --- | --- | --- |
37
- | `exploration` | “What might this look or feel like?” | Visible scoped candidate plus minimal sanity review |
38
- | `handoff` | “Can another designer/developer reliably consume this without inventing material in-scope UI/UX decisions?” | Minimum sufficient project-native resources plus scope-bound coverage, provenance, limitations and relevant checks |
39
- | `selected-source-preparation` | “Preserve this explicitly selected direction for later use.” | Immutable identity or approved snapshot, explicit selection basis and downstream notes |
40
-
41
- Intent and style dependency are task-local and need not be persisted. Selected-source preparation does not itself adopt Design Authority.
42
-
43
- Classify each commission before capability selection:
44
-
45
- - `style-bearing`: high-fidelity/branded output, visual-direction candidate, typography/color/density treatment, component visual specification or production-style prototype;
46
- - `non-fidelity`: low-fidelity hierarchy, IA/flow topology, semantics-only interaction/state study or explicitly non-fidelity prototype.
47
-
48
- Mixed work is style-bearing unless it can be split into a genuinely independent non-fidelity commission. Style-bearing work requires configured project Design Authority and an Open Design project bound to the adopted system. Missing authority stops and points to the explicitly invoked `$design-system-authoring`; it never triggers that Skill automatically.
49
-
50
- ## 3. Inventory relevant input roles
51
-
52
- Preserve each supplied item's actual role:
53
-
54
- - `exact-target`: already authoritative only for its declared conditions;
55
- - `constraint`: a rule that controls only its stated scope;
56
- - `inspiration`: directionally useful but not fidelity authority;
57
- - `current-implementation-evidence`: evidence of current behavior, not desired behavior by default;
58
- - `background`: product/technical context that informs but does not expand generation scope.
59
-
60
- An optional pre-existing planning document is one possible input. Raw notes or an initial proposal are equally valid. Never require a special intermediary format merely to make another input usable.
61
-
62
- ### Pre-generation style-application closure
63
-
64
- Before every style-bearing Provider generation or material revision—including a simple high-fidelity preview—evaluate every current-slice style-application dimension which can materially change the output. Reuse the Provider reference's existing material-revision definition; do not create another revision classification. This closure does not apply to non-fidelity work, pure IA/flow topology, low-fidelity structure, a semantics-only state study, a read which starts no new generation, or packaging, renaming or byte-only export proved equivalent to the same canonical source.
65
-
66
- At minimum evaluate `primary_content_priority`, `density`, `container_treatment`, `visible_vs_hit_geometry`, `preserve` and `prohibited_patterns`, plus any other obvious slice-specific style-application dimension which materially affects Provider output. These are task-local judgments, not a fixed visual-property matrix or a copy of the formal handoff Fact Universe. Every applicable dimension has exactly one of these dispositions:
67
-
68
- | Disposition | Legal condition | Commission representation | Provider effect |
69
- | --- | --- | --- | --- |
70
- | `existing-covered` | Current controlling Source or a selected `exact-target`/`constraint` completely governs the exact target, slice and declared conditions and reaches the Provider through an existing input binding | Keep that Source in its existing input binding; do not duplicate it in `style_application` | Contributes to a closed commission |
71
- | `projected` | Current controlling Source and Design Authority already determine the slice-specific application, but selected input does not directly and completely express it | Put only the necessary current-slice field in the existing `style_application` envelope | Contributes to a closed commission |
72
- | `not-applicable` | The dimension has no material effect on this resource and the task-local reason is explicit | Keep the reason task-local; emit no empty or placeholder field | Contributes to a closed commission |
73
- | `decision-required` | Source is missing, stale, conflicting or ambiguous; a user choice is needed; delegation is insufficient; or resolution requires a durable owner change | Give the concrete natural-language reason through the existing disposition; emit no invented application meaning | Blocks the Provider run |
74
-
75
- Use `existing-covered` only when all of the following hold:
76
-
77
- 1. current controlling Source or a selected `exact-target`/`constraint` explicitly specifies the dimension;
78
- 2. the specification applies to the exact target, slice and declared conditions;
79
- 3. the Source remains current after any owner update;
80
- 4. the Provider commission actually carries it through existing `inputs.exact_targets`, `inputs.constraints` or the corresponding current input binding; and
81
- 5. the conclusion requires no Agent inference from a generic style, name or visual impression.
82
-
83
- Design System identity, generic Tokens, “follow the design system”, inspiration, background, an unselected candidate, Provider output, a default-only static screenshot and current-implementation evidence do not by themselves establish `existing-covered`. Current implementation may support `preserve` only when controlling Source explicitly makes the observed behavior or visual fact a preservation constraint. A Provider must not infer missing application meaning from any of these inputs, a feature list, route tree, component inventory or task-level UI/UX analysis.
84
-
85
- For `projected`, derive only meaning already authorized by current Source and Design Authority. Do not invent product, business, interaction or design-system semantics, paste complete Tokens, copy a Provider prompt or create a persistent Projection. The actual commission envelope contains exactly the `projected` fields: omit `existing-covered` fields, keep `not-applicable` reasons task-local and never encode `decision-required` as a placeholder.
86
-
87
- The Provider run is allowed if and only if every applicable dimension is `existing-covered`, `projected` or `not-applicable`. Any `decision-required`, undispositioned dimension or Source conflict blocks commission submission and Provider execution. When resolution changes durable Product/Surface/Screen/Design meaning, use the existing owner-first route above, reread current Source and repeat this closure before resuming DRA. Post-generation Design suitability cannot retroactively repair a commission which skipped this closure.
88
-
89
- This judgment occurs inside the existing Source read and commission-envelope action. For a simple high-fidelity preview it adds no Provider generation, tool action, file, checkpoint, persistent state, fixed user pause, required extra conversation turn, formal handoff, manifest, bundle, preflight or complete Fact Universe. When all dimensions close, the same turn may still generate, perform minimal sanity/suitability review, show the candidate and receive a user choice. “Closure required” never means “emit a closure record.”
90
-
91
- ## 4. Derive development-corresponding coverage
92
-
93
- For an implementation handoff, use this task-local equation:
94
-
95
- ```text
96
- resources to commission
97
- = material UI/UX decisions inside the explicit development scope
98
- - decisions sufficiently covered by selected existing Source
99
- ```
100
-
101
- A decision is material when changing it would materially change what the user sees, understands, can do or receives as feedback. Pure code structure and non-user-visible implementation choices are not design gaps.
102
-
103
- For each selected existing mapping, also name the applicable target/conditions and the meaning that must be preserved. Preservation includes current product/surface meaning, exact resource-owned visual facts, state/condition coverage and component-family or Design-System lineage which the requested change does not authorize altering. Do not treat an unchanged-looking default frame as proof that its hidden states, responsive variants or inherited dependencies are preserved.
104
-
105
- Account for the applicable meaning at each level; do not require filler for non-applicable dimensions:
106
-
107
- | Coverage level | Material UI/UX meaning |
108
- | --- | --- |
109
- | Surface/flow | information hierarchy, page/route composition, layout grid/constraints, region relationships, stacking/overlay, scrolling/overflow, navigation, branching and recovery context |
110
- | Visual treatment/content | typography, color, spacing, border, radius, elevation, iconography, imagery, density, exact copy/labels, formatting, localization and content presentation |
111
- | Component/control | anatomy, dimensions, hit area, variants, defaults, visibility/availability and mapping of repeated controls to an existing component family |
112
- | State/interaction | trigger/input, validation, loading/empty/success/failure/disabled/permission states, transitions, gestures, navigation result, focus/selection behavior, feedback and recovery |
113
- | Motion | animated property, start/end state, duration, easing, sequencing, interruption and reduced-motion behavior when motion matters |
114
- | Adaptation/input | viewport/breakpoint, safe area, theme/mode, platform convention, pointer/touch/keyboard behavior, orientation and content stress |
115
- | Accessibility | label/role, focus order/visibility, keyboard path, touch target, contrast and other applicable assistive behavior |
116
- | Assets | exact icons, illustrations, media, sound/haptic cues or other bespoke content whose appearance or feedback affects the result |
117
-
118
- For every material in-scope item, record one task-local disposition: `existing-covered`, `new-resource-needed`, `not-applicable`, `excluded-by-scope`, `decision-required` or `unavailable`. This accounting is reasoning/handoff metadata, not a required file, persistent coverage registry, Design Authority or acceptance result.
119
-
120
- Existing coverage is sufficient only for the conditions it explicitly specifies or demonstrates. Seeing a control in one default page frame does not cover its variants, dynamic states, feedback, motion, responsive behavior or accessibility. Conversely, a selected component source may cover many control instances, so do not commission duplicate designs merely because several stable control keys map to it.
121
-
122
- Impact assurance has two strengths. A material/recoverable loop may use the complete current `audit_expectations`, bidirectional resource bindings, explicitly unchanged universe, blast-radius universe and inactive-Delta leakage catalog owned by [recovery-and-writeback.md](recovery-and-writeback.md). An ordinary loop without those complete bindings performs only conservative impact analysis from readable Source: mark the unverified remainder, conservatively regenerate within the ceiling or return `decision-required`. Never claim that only identified resources are affected, and never expand outside the ceiling for safety.
123
-
124
- Design resources express user-visible interaction semantics and the presentation of product rules. Business, data, permission and algorithmic rules remain owned by product/technical Source; reference those rules and show their visible consequences without inventing them or making a visual artifact their sole owner.
125
-
126
- For a Web/App implementation handoff, visual coverage alone is insufficient. Read [implementation-feasibility.md](implementation-feasibility.md) and inspect the current platform, framework/runtime, UI system, token/theming adapter, component owners and route owners. Every material component-family × target × condition profile needs a Source-backed candidate realization or blocker before formal publication. This does not make implementation structure a design decision or put exact design values into technical Source.
127
-
128
- ### Formal selected Web/App handoff
129
-
130
- When—and only when—the direction is final-selected for a formal Web/App implementation handoff, load [formal-selected-web-app-handoff.md](formal-selected-web-app-handoff.md). That reference owns the complete atomic Expected Fact Universe, canonical acquisition, Inspector/Census, Fact × method proof and publication rules. Exploration never loads or approximates them.
131
-
132
- ## 5. Identify independent gaps
133
-
134
- For exploration, ask what remains uncertain inside the scope. For a handoff, ask which material coverage items remain `new-resource-needed`:
135
-
136
- - **structure:** information hierarchy, layout regions or page relationships;
137
- - **flow:** navigation, branching, recovery or multi-step sequence;
138
- - **behavior:** control states, transitions, gestures, feedback, loading/error/empty/disabled cases;
139
- - **visual direction:** composition, typography, color, density, imagery or brand character;
140
- - **platform/responsiveness:** safe areas, breakpoints, input methods or viewport behavior;
141
- - **system reuse:** tokens, component variants or cross-surface rules needed by more than the requested artifact;
142
- - **team editability/native inspection:** a real need for collaborative editable frames/libraries, inspectable component/token facts or an organizational native-platform handoff.
143
-
144
- Do not manufacture a gap already resolved by selected Source.
145
-
146
- ## 6. Consider resources conditionally
147
-
148
- | Resource | Select when it closes this gap | Usually omit when |
149
- | --- | --- | --- |
150
- | Control/component state study | A unique or complex control has uncovered anatomy, variants, feedback, motion or edge states | A selected page/prototype or component source explicitly specifies and demonstrates the applicable conditions |
151
- | Low-fidelity wireframe | Hierarchy, topology or flow must be judged without visual-style distraction | Structure is settled and only visual direction is unknown |
152
- | High-fidelity visual candidate | Visual hierarchy, tone or composition needs selection | Existing selected targets already govern the requested conditions |
153
- | Interactive prototype | Transitions, navigation, state retention or task feel must be experienced | A static decision is sufficient or the provider cannot produce genuine interaction |
154
- | Flow/journey board | Multiple surfaces, branches or recovery paths must be compared together | The request is one isolated surface/control |
155
- | Design-system slice | Several requested artifacts need shared tokens/components or reuse rules | One exploratory candidate does not justify a system |
156
- | Component inventory/specification | Development handoff needs explicit reusable families, variants, state behavior or mappings for several control instances | Exploration is visual only, or selected component sources already cover every mapped instance |
157
- | Collaborative native design input | Existing team authority, editable collaboration, native component/library reuse or organizational handoff is explicitly valuable and the connector/auth/read/export path is operational | Open Design/project-native implementation source is sufficient or the native path would create a second synchronized representation |
158
- | Image/illustration/icon/media study | Bespoke content materially defines the selected direction | Generic placeholders answer the present decision |
159
-
160
- A prototype is often valuable for new Web/App flows, but it is never automatically required. Low- and high-fidelity resources may both be selected only when they answer independent questions. One comprehensive, inspectable artifact may cover page composition and several component families; a static frame cannot claim unseen interaction or state coverage merely because all controls appear in it.
161
-
162
- Do not translate Product Control closure into one artifact per control. Artifact grouping is an authoring optimization, while the later implementation handoff still inventories every observable design fact inside those artifacts, including component parts and smaller primitives. Map ordinary controls to selected shared component variants, group related states in one component-family board or workbench, and reserve dedicated resources for unique or complex controls whose material meaning is otherwise uncovered.
163
-
164
- ## 7. Assign a disposition to every considered resource
165
-
166
- - `selected`: required to close a current gap;
167
- - `optional`: useful, but not necessary for the current decision;
168
- - `not-needed`: redundant or outside the scope ceiling;
169
- - `unavailable`: justified but not currently supported/configured;
170
- - `decision-required`: a genuine unresolved preference changes the commission materially.
171
-
172
- Give one concrete reason. Do not turn `optional` into automatic extra work.
173
-
174
- ## 8. Build the commission envelope
175
-
176
- The task-local envelope should contain only product-specific information:
177
-
178
- ```yaml
179
- intent: exploration | handoff | selected-source-preparation
180
- scope:
181
- subjects: [named surface/flow/region/component/control keys]
182
- ceiling: one-control | one-region | one-page | named-pages | named-flow | system-slice
183
- necessary_context: []
184
- excluded: []
185
- platform: known-or-unknown
186
- viewports: []
187
- coverage:
188
- material_needs: []
189
- observable_fact_families: []
190
- existing_mappings: []
191
- preserve: []
192
- required_content_visual: []
193
- required_components_states: []
194
- required_interactions_motion: []
195
- required_adaptation_accessibility: []
196
- inputs:
197
- product_surface_constraints: []
198
- technical_sources: []
199
- exact_targets: []
200
- constraints: []
201
- inspiration: []
202
- background: []
203
- style_application:
204
- primary_content_priority: results-table-is-primary-work-object
205
- density: compact-working-density-for-results-table
206
- container_treatment: one-flat-table-surface-without-card-wrapper
207
- preserve: [selected-header-hierarchy]
208
- prohibited_patterns: [nested-cards-around-the-primary-results-table]
209
- quality_commission:
210
- artifact_archetype: dashboard-data-workbench
211
- primary_design_challenges: [task-hierarchy, component-reuse, dense-data-legibility]
212
- visual_character:
213
- desired: [calm, precise, product-specific]
214
- avoid: [generic-ai-gradient, excessive-cards, arbitrary-glow]
215
- content:
216
- real_copy_required: true
217
- realistic_data_required: true
218
- placeholder_final_content_forbidden: true
219
- reference_roles:
220
- - { ref: selected-density-reference, role: information-density }
221
- component_authoring:
222
- shared_families_required: true
223
- repeated_instance_specific_styling_forbidden_by_design: true
224
- substrate_input_refs: [dashboard-web-feasibility]
225
- selected_capability:
226
- kind: runtime-discovered-kind
227
- id: runtime-discovered-id
228
- expected_entry: known-or-provider-native
229
- review_promise: minimal-sanity | handoff-checks | selected-source-snapshot
230
- ```
231
-
232
- This is an explanatory shape, not a required file or schema; its concrete dashboard values illustrate Source-derived content and are not defaults. Include `style_application` only when material to a style-bearing commission and bind its actual values to current Design Authority, selected Source and the explicit slice. It is not a persisted Application Projection, Authority, state or acceptance record. For style-bearing generation, add an archetype-specific `quality_commission`: name the main design challenges, desired/avoided visual character, real-content obligations, the distinct role of each selected reference, design-side shared-family expectations and applicable feasibility Source. Omit irrelevant keys instead of emitting placeholders.
233
-
234
- `repeated_instance_specific_styling_forbidden_by_design` means repeated controls in the selected resource share one component-family grammar rather than being drawn as unrelated instances. It does not assert that later production code already reuses one component. `quality_commission` is Provider input, not a persisted quality score, Authority, Gate, routing record or acceptance result. A simple high-fidelity preview does not gain another tool action or persisted side effect from these fields. Never paste or paraphrase the Open Design capability's own seed/template prompt into it.
235
-
236
- ## 9. Iterate and stop
237
-
238
- - Keep each revision inside the original scope ceiling unless the user explicitly expands it; otherwise use `decision-required` with reason `scope-expansion-required`.
239
- - Reuse the current Open Design project when that preserves context and provenance; preserve the prior artifact hash before overwriting a selected candidate.
240
- - Do not create low-fi, high-fi, component boards or native-platform copies merely because a process diagram lists them.
241
- - For exploration, stop as soon as the requested decision is supported.
242
- - For a final-selected formal Web/App implementation handoff, apply the dedicated formal reference's exact stop conditions. Honest `decision_required`, `unavailable` or capability gaps remain blocking; they cannot be called ready or authorize fidelity work.
243
-
244
- During simple iteration, keep accepted, rejected and unresolved implications in a task-local delta buffer. Do not require or emit an interim delta after every iteration and never continuously synchronize the initial proposal. If the loop requires durable semantic replay, a selected-Proposal file writeback or cross-interruption recovery, load [recovery-and-writeback.md](recovery-and-writeback.md) and use its independent origin/decision-authority/evidence/status model plus package helper; prompt prose alone cannot establish CAS or deterministic recovery. Ordinary conversational selection creates no approval record or deterministic cross-session promise; if it is lost before authorized materialization, reconfirm it. For a non-formal small request, explicit human selection or explicitly delegated selection may be consolidated and reconciled once in the same turn. For a selected formal Web/App handoff, defer reconciliation until the formal owner completes canonical closure and no newly visible decision returns to review. Reconcile only accepted decisions. If the Proposal exists only in conversation and safe materialization was not explicitly authorized, return one complete revised proposal and report cross-session deterministic recovery unavailable. Never create another intermediary planning document or mutate Context, `DESIGN.md`, code, tests or Contract.
245
-
246
- ## Worked scope examples
247
-
248
- - **Large draft, one filter control:** select a control-state study if anatomy and states are uncertain; omit page/flow resources.
249
- - **One page, style preview:** first require configured Design Authority and matching Open Design binding, then select one high-fidelity candidate; do not add a design-system pack or validator run.
250
- - **One page scheduled for development:** use a page/flow target for layout and context, map ordinary buttons/inputs to selected component variants, and add grouped component-state or dedicated complex-control studies only where relevant static/dynamic states, feedback, motion, responsiveness or accessibility remain uncovered.
251
- - **Local panel inside a large app:** include enough surrounding page context to place and size the panel, but generate detailed resources only for the panel, its in-scope controls and affected states.
252
- - **One comprehensive interactive artifact:** accept it as the minimum set when its sections and reachable states explicitly cover every material in-scope item; do not add duplicate control boards. If it exposes only a static/default view, commission the missing state/interaction coverage instead of inferring it.
253
- - **Three-screen interaction flow:** select a low-fi flow and an interactive high-fi prototype only if topology and interaction/visual behavior are independently unresolved.
254
- - **Local style fix with exact target:** select no new design resource and route to implementation.
255
- - **Initial proposal before execution:** iterate only requested candidates, keep one task-local delta buffer, then after selection reconcile accepted decisions once. Pass the revised proposal plus selected immutable resources directly to the default Goal or `long-task-workflow`.
256
-
257
- ### Style-application worked examples
258
-
259
- #### Example A — must block
260
-
261
- A one-page high-fidelity preview has configured Design Authority but only generic Tokens. No selected `exact-target` or `constraint` specifies the page's primary-content priority, density or container treatment, and the commission has no corresponding projected fields. Generic system binding cannot fill those application decisions. Result: use the existing `decision-required` with concrete missing-Source reasons; the Provider run must not start.
262
-
263
- #### Example B — complete existing coverage may omit projection
264
-
265
- A local style-bearing revision has a current selected `exact-target` which explicitly specifies every applicable style-application dimension for the exact target and conditions, and that Source is carried through the Provider's existing exact-target input binding. Every dimension is `existing-covered`. Result: omit `style_application` rather than copying the Source, and allow the Provider run.
266
-
267
- #### Example C — mixed closure projects only the gaps
268
-
269
- The task-local dispositions are:
270
-
271
- ```text
272
- primary_content_priority: existing-covered
273
- density: projected
274
- container_treatment: projected
275
- visible_vs_hit_geometry: not-applicable
276
- preserve: existing-covered
277
- prohibited_patterns: projected
278
- ```
279
-
280
- Assume current Screen Source says the results table is the page's primary work object, current Design Authority calls for compact working density, and an adopted constraint forbids nested cards. The illustrative actual envelope contains only those three Source-derived fields:
281
-
282
- ```yaml
283
- style_application:
284
- density: compact-working-density-for-results-table
285
- container_treatment: one-flat-table-surface-without-card-wrapper
286
- prohibited_patterns:
287
- - nested-cards-around-the-primary-results-table
288
- ```
289
-
290
- All applicable dimensions are closed, so the Provider run is allowed. If any one of them instead becomes unresolved, stale or conflicting, its disposition becomes `decision-required` and the run is blocked.
@@ -1,63 +0,0 @@
1
- ---
2
- name: design-system-authoring
3
- description: Use only when the user explicitly asks to bootstrap, revise, reconcile, choose, adopt, replace or repair a project design system or design style with Open Design; asks for “初始化设计系统”, “生成设计系统”, “确定设计风格”, “采纳 Open Design 设计系统”, explicitly promotes a DRA Authority delta candidate, or invokes design-system-authoring in a Minimal Context Harness project. This capability never runs merely because DESIGN.md is missing, a project is new, DRA found a candidate delta, another Skill needs visual style, or ordinary UI work begins.
4
- ---
5
-
6
- # Design System Authoring
7
-
8
- Bootstrap, revise or reconcile an Open Design design-system candidate, obtain an explicit selection, then require a separate explicit adoption confirmation before changing the project's durable Design Authority. Installation only makes the Skill available.
9
-
10
- ## Hard boundaries
11
-
12
- - Run only from an explicit user request. Never auto-run from `init`, `sync`, the default Workflow, `design-resource-authoring`, a missing/starter `DESIGN.md`, or a new-project inference.
13
- - A DRA `authority_delta_candidate` is non-authoritative input, not permission to invoke this Skill or adopt anything. The user must explicitly start `reconcile` mode.
14
- - A combined explicit user request to initialize the system and then generate resources authorizes that sequence; a resource gate alone does not.
15
- - Open Design owns generation, revision, previews and its catalogue. Use its live structured capabilities; do not copy its prompts, emulate its generator, vendor a catalogue or invent provider IDs.
16
- - Keep candidate generation, human/delegated selection, and the later explicit adoption confirmation distinct. A successful job, attractive preview, selected task resource or selected system candidate is not project authority.
17
- - Root `DESIGN.md` is the unique Authority entry and revision owner. In this bundle version its supported front matter remains the editable exact Token authority; `design_system/tokens.json` is deterministic generated output, and a sparse `design_system/authority.manifest.json` owns closure membership/digest only. Bundle adoption must insert the exact `<!-- ty-context-design-authority-format: bundle-v1 -->` line at the fixed first non-empty Markdown body position and create the manifest in the same adoption. None is a second independently editable Authority.
18
- - Create subordinate component/pattern/motion/platform owners only for real reusable durable rules. Never scaffold a mandatory full taxonomy.
19
- - Put durable surface, information-architecture and interaction facts in their owning `project_context/**`; put visual-system semantics, rationale, token direction and reference interpretation in `DESIGN.md`. Do not duplicate facts across owners.
20
- - Do not create a design registry, receipt, workflow state, Contract, acceptance gate or provider runtime inside Tiny Context. The package's local `@google/design.md` adapter and Authority codecs are deterministic lint/export/validation tools, not Open Design generation.
21
- - Do not persistently install/configure MCP, plugins, authentication or disclosure paths without separate authorization. Task-local use of an already available Open Design MCP/daemon is allowed.
22
- - Do not implement production UI or claim downstream fidelity, accessibility, product correctness or acceptance.
23
-
24
- ## Read the references
25
-
26
- 1. Always read [open-design-design-system-provider.md](references/open-design-design-system-provider.md) before discovery, generation, revision, selection or provider synchronization.
27
- 2. Always read [authority-adoption.md](references/authority-adoption.md) before changing `DESIGN.md`, its token source, relevant Context or provider bindings.
28
-
29
- ## Core workflow
30
-
31
- 1. **Confirm explicit mode and scope.** Use `bootstrap` for an unconfigured project, `revise` for an explicit current-system change, or `reconcile` for a user-promoted DRA Authority delta candidate. Capture product/brand purpose, supported surfaces/platforms, accessibility, modes, immutable constraints and supplied references. Ask only when an unresolved aesthetic or brand choice materially changes candidates and selection was not delegated.
32
- 2. **Inspect the complete current authority.** Read core and relevant surface Context, root `DESIGN.md`, optional sparse manifest/subordinate owners, generated Tokens and provider provenance. Run read-only closure inspection. Classify `unconfigured`, `configured` or `configured-but-inconsistent` as a task-local finding, not state.
33
- 3. **Validate reconcile input.** In `reconcile`, require the strict non-authoritative Authority Delta Assessment, validate that its `based_on` closure is still current, then use only its proposed changes, supporting resources, representative scenarios and immutable constraints. A stale packet returns to DRA reassessment.
34
- 4. **Discover live Open Design capabilities.** Prefer structured MCP. List/read `od://design-systems/<id>/DESIGN.md`, inspect tool schemas, and feature-detect creation/revision/acceptance plus project binding. Record live provider/MCP version and fallback.
35
- 5. **Reuse or generate candidates.** Reuse an existing provider system only when identity and meaning fit. Otherwise use a live structured creation/revision capability or the official daemon fallback. In `revise`/`reconcile`, generate bounded deltas against the current closure rather than an unrelated replacement. Keep every output a candidate.
36
- 6. **Review representative scenarios and iterate.** Inspect candidate `DESIGN.md`, exact Token delta, sparse owner delta, preview/showcase and representative scenes. Preserve immutable constraints, migration impact, provider diagnostics and provenance. Pending revisions remain non-authoritative.
37
- 7. **Obtain system-candidate selection.** Require explicit user/team selection, or explicit delegated selection with known criteria. Record basis, provider ID/revision and immutable digest/snapshot. Reject or leave other candidates unselected.
38
- 8. **Stop for separate adoption confirmation.** Present the exact project-owner diff, migration impact, new/removed subordinate owners, generated Token change and affected DRA resources. Ask the user to explicitly confirm adoption of this selected system candidate. Candidate selection or an earlier page-resource approval does not satisfy this confirmation.
39
- 9. **Adopt once after confirmation.** Follow the authority-adoption reference: update root `DESIGN.md`, insert/preserve the canonical body-leading `bundle-v1` marker, update only necessary sparse subordinate owners, deterministic generated Tokens, closure-only manifest/digest, owning Context and provider provenance. Create or remove marker and manifest only as one explicit Authority-format change. Do not copy revision or Token values into the manifest.
40
- 10. **Rebind and synchronize.** Calculate the new complete closure identity. Rebind affected DRA resources/handoffs to it and rerun affected preflight/representative verification. Accept the selected provider revision when applicable, confirm it is readable, and verify downstream provider project binding.
41
- 11. **Validate and report.** Run project-owned closure, Token, Context/design lint, source/package and affected DRA checks. Separately report mode, provider execution, artifact readiness, selection, explicit adoption confirmation, changed owners, old/new closure identities, rebinding, provider synchronization, verification and unresolved issues.
42
-
43
- ## Readiness classification
44
-
45
- Treat Design Authority as unconfigured when `DESIGN.md` is absent, explicitly says `Design authority status: unconfigured`, remains an unedited starter, contains only style adjectives/inspiration, or lacks supported authored exact Token values. A configured visual system still does not make every surface implementation-ready; selected exact/constraint targets and declared coverage remain separate.
46
-
47
- If authority is already configured and the user did not ask to replace or repair it, prefer reuse and explain the current system. Never generate a competing system as filler.
48
-
49
- ## Completion response
50
-
51
- Report:
52
-
53
- - requested operation and design-system scope;
54
- - `bootstrap`, `revise` or `reconcile` mode and the exact base closure identity;
55
- - Open Design transport/version and capabilities actually used;
56
- - candidate IDs and review performed;
57
- - explicit or delegated selection basis and separate adoption confirmation;
58
- - adopted `DESIGN.md`, sparse subordinate owners, generated Tokens, manifest and Context owners changed;
59
- - new closure identity and affected DRA rebinding/revalidation;
60
- - provider ID, revision/digest and project-binding verification;
61
- - validations run, limitations and decisions still required.
62
-
63
- Always distinguish `provider succeeded`, `artifact ready`, `selected`, `authority adopted` and `binding verified`; none implies the next.
@@ -1,6 +0,0 @@
1
- interface:
2
- display_name: "Design System Authoring"
3
- short_description: "Generate and adopt a project design system"
4
- default_prompt: "Use $design-system-authoring to generate, select, and adopt an Open Design design system for this project."
5
- policy:
6
- allow_implicit_invocation: false