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,114 +0,0 @@
1
- # Formal Selected Web/App Implementation Handoff
2
-
3
- Read this reference only after a Web/App direction is final-selected for implementation and the user requests a formal handoff. It deliberately carries the high-cost exact closure that exploration must not load.
4
-
5
- ## Admission and invariant
6
-
7
- The target needs one completely acquired machine-readable canonical entry, its exact locally resolvable dependency closure, one frozen-Inspector observable-Fact manifest and one separate real-substrate implementation-feasibility input. Derive the Expected Fact Universe and inspect current technical Source before generation; initially rendered output cannot define its own obligations or production architecture.
8
-
9
- For every selected target, establish:
10
-
11
- ```text
12
- Expected Fact Universe
13
- = Canonical Resource Facts enumerated by the frozen Inspector
14
- = Handoff Indexed Facts
15
- ```
16
-
17
- Product Controls and the eight reporting dimensions are roll-ups, not the Fact ceiling. Never sample, truncate, summarize a remainder, use pairwise coverage, infer an implicit default, broaden exclusions or let `all-states`/`complete` labels stand for atomic identities. File/model/parser/memory limits cannot weaken the universe; incompatible capacity fails closed.
18
-
19
- ## Review-return boundary
20
-
21
- The prior direction selection authorizes formal preparation; it does not claim this closure is already complete. If complete universe derivation, canonical acquisition, dependency/Census inspection, implementation-feasibility inspection, manifest proof or preflight exposes a new state, component part, resource, condition, unavailable observation, visible/semantic design difference or `decision-required` choice, stop publication and return to the downstream `Design Resource Review & Selection Stop`. Re-run applicable Design suitability before asking for another selection. A technical choice among already allowed candidates stays with downstream Architecture Deliberation and does not force another visual selection. Only closure which introduces no new visible decision returns downstream for the one consolidated Proposal reconciliation.
22
-
23
- ## Derive the complete universe
24
-
25
- Enumerate stable subjects and hierarchy for every in-scope Surface, flow, region, overlay/system UI, component family and instance, Control, Anatomy Part/slot, primitive, text, icon, media, asset and typed multi-subject relation. Preserve parent/instance/family/override/slot/portal/presence/population/Census lineage so a family or one instance cannot hide internal/repeated subjects.
26
-
27
- Explicitly disposition all 33 standard target-condition axes: platform, OS, device profile, form factor, exact viewport width/height, orientation, density/pixel ratio, Safe Area insets, window/fold/display/color modes, locale/language/script/direction/pseudo-localization, content/data stress, text scale/multiplier, input/assistive technology, motion/transparency/contrast/bold text/button shapes, system UI/IME, permission/capability/connectivity/lifecycle, plus scoped custom axes. Enumerate the complete applicable condition combination universe and exact Source/basis-backed exclusions. Continuous viewport/text pressure behavior exposes breakpoints, ranges, interpolation and reflow rules.
28
-
29
- For each subject enumerate `variant × state × interaction_phase × presence_phase × instance_case`, including compound precedence and conditional/lazy/virtualized/portal population. Apply the complete standard atomic property catalog across geometry, layout/scroll, typography/color/decoration/content/icon/media, interaction/navigation/motion/feedback, responsive, accessibility, assets/system and relations, plus frozen Inspector custom-property closure.
30
-
31
- The exact universe is every applicable `subject × target × condition × variation × atomic property` Fact Cell. Each cell is `covered`, source/basis-backed `not_applicable`/`excluded_by_scope`, or blocking `decision_required`/`unavailable`; every covered cell becomes one atomic Fact. Continuous motion exposes its timeline/rule rather than sampled frames.
32
-
33
- ## Provider commission and acquisition
34
-
35
- Bind style-bearing work to the adopted design-system snapshot and verify the provider project reports the same identity. Commission the complete obligation universe through structured provider capability. If the provider cannot emit/read a required family, keep it blocking rather than narrowing scope.
36
-
37
- Acquire every selected file without truncation, preserve exact bytes/digests and record `implementation_web` or `implementation_app` with `acquisition: complete`. The canonical entry and all local source, token, SVG, font, image, media, worker and asset dependencies must resolve inside the frozen set. A screenshot, URL, preview or prose spec is insufficient. Technical Source and the feasibility document remain separate indexed inputs and never enter this canonical dependency set.
38
-
39
- The selected identity is the canonical source digest plus target, declared conditions and controlling Source/Design-Authority identity. A PNG, archive, renamed copy or wrapper is a derived artifact: verified equivalence to the canonical source under those bindings preserves selection, while a visible or semantic difference activates the review-return boundary above.
40
-
41
- The one per-target `design-resource-observable-fact-manifest-v1` freezes:
42
-
43
- - design-system identity and lineage;
44
- - Inspector identity/version/digest or named external TCB, exact capabilities, input paths/digests, complete-enumeration and dynamic-discovery policy;
45
- - addressable Census of every resource/node/declaration/token/asset/relation/custom property/variant/state/interaction/dynamic population item;
46
- - condition/variation axes, combinations and exclusions; subject hierarchy; property catalog;
47
- - Fact Cells/Facts, values/located digests, Source-item and design-system lineage;
48
- - evidence plus every Fact × property-required-method proof obligation;
49
- - `completeness: complete_explicit` and exactly one reporting dimension from `surface_flow`, `visual_content`, `component_control`, `state_interaction`, `motion`, `adaptation_input`, `accessibility` or `assets` for every Fact;
50
- - comparator, exact/tolerance parameters, optional narrow mask, Oracle and render environment;
51
- - asset bindings, target-local blockers and required capabilities;
52
- - contiguous generation chunks and exact count plus identity digest for every collection, proving non-sampling/non-truncation.
53
-
54
- Every Census item maps to exact Facts/Fact Cells or a source/basis-backed `non_material` disposition. Residual Source items index their exact Facts through `fact_refs`, while the manifest keeps separate `proof_obligations` for every Fact × required method. An Inspector `complete` Boolean, resource count or provider statement is not a Census.
55
-
56
- ## Atomic Facts and proof methods
57
-
58
- Each covered Fact has exactly one subject/target/condition/variation/property, one reporting dimension, `subject|full_target` observation scope, `plain|protected` sensitivity, typed value, canonical located digest, same-condition evidence and lineage. Exact token/alias/platform/mode/state/instance overrides and resolved conflicts stay traceable. Critical values use typed locally resolvable locators for HTML/CSS/JS/JSON/Markdown/SVG or bounded whole-binary identity; they cannot live only in bitmap/prose. Exact values remain in canonical resources rather than being copied into another owner.
59
-
60
- Create a distinct proof obligation for every Fact × required verification method. Bind method-compatible evidence, comparator, exact/tolerance mode and parameters, optional mask located digest, a frozen executable or named external Oracle with the exact method capability, and a frozen render environment. A Fact needing token and pixel proof keeps both. Protected observations retain canonical ownership while downstream evidence is attributable digest-only/redacted and never persists raw sensitive values.
61
-
62
- For every `exact_target` condition include one `full_target` `layout_geometry` Fact and one `full_target` `visual_pixel` Fact with exact-target evidence. If complete visible fidelity cannot be extracted or compared, classify the resource as a constraint or blocker instead. Family feasibility coverage uses the complete transitive family subject closure, so nested Anatomy Parts, slot content, text, icons, media and assets cannot disappear merely because their own `family_ref` is null.
63
-
64
- Asset bindings identify asset subject, immutable resource, target/condition Facts, consumer subjects and density/platform/theme/mode/locale variants plus crop/focal/mask/placeholder/error/decode/fallback behavior.
65
-
66
- ## Real-substrate implementation feasibility
67
-
68
- Read [implementation-feasibility.md](implementation-feasibility.md) and author one `design-resource-implementation-feasibility-v1` JSON document per target before publication. Freeze repository-relative technical Source records for platform, framework/runtime, UI system, token/theming adapter, component-owner roots and route-owner roots. Treat every unavailable or decision-required observation as target-wide across every material family × condition cell, and require observed non-empty component roots before authoring any candidate-bearing cell. Keep canonical design values exclusively in the design resources and manifest.
69
-
70
- For V1, partition the exact target condition set into non-overlapping explicit profiles. For V2, use reachable, pairwise-disjoint symbolic regions whose union equals the target's complete reachable region. Create exactly one cell for every material component family × condition profile, bind its matching V1 Facts or V2 Fact Rules, and supply at least one Source-backed feasible realization or an explicit Source-backed blocker. Every unresolved observation must be named by a blocker in every such cell; a target with no family carrier fails closed. Realizations may be composite and use several primitives; record ordered reuse/compose/extend/theme/create steps, existing or authorized planned owner candidates, supported customization surfaces, observed costs/risks and feasibility basis.
71
-
72
- Leave `required_realization` unset when more than one design-compatible implementation remains allowed. Selecting it, authorizing a planned owner or carrying a blocker requires the exact current marked technical Source Item and strict feasibility-decision projection described by the feasibility reference; a blocker and projection carry the identical unique sorted `substrate_observation_refs`, with `[]` reserved for blockers unrelated to unresolved substrate observations. A role label or same-file prose is insufficient. DRA preference, Provider output and preflight cannot create that authority. A formal `implementation_web` or `implementation_app` target cannot use descriptive `reference` mode.
73
-
74
- ## Residual manifest-backed V1 publication
75
-
76
- Keep the canonical manifest as the sole complete collection index for design Facts. For each target, create one small project-native Markdown draft containing readable, uniquely keyed target-attributed `ty-source-item` facts and exactly one fenced `design-resource-handoff-v1` block with `representation: manifest_backed`. The block carries residual scope/provenance, resource identities, exactly one target/profile, `resource_fact_closure`, one `technical_feasibility_inputs` index entry, coverage and proposal binding; it never repeats manifest-owned arrays. A material resource cannot be hidden as `supporting_only`.
77
-
78
- Freeze the explicit manifest path set, target/scope identities, SHA-256 values and per-collection counts/identity digests. Choose a truthful UTF-8 byte ceiling before draft generation and ensure the authorized output parent exists. Then publish the entire target set:
79
-
80
- ```text
81
- ty-context design-resource bundle <draft-dir> <new-output-dir> \
82
- --manifest <facts.json> [--manifest <facts.json> ...] \
83
- --max-handoff-bytes <bytes>
84
- ```
85
-
86
- The command must reject embedded/full-array or multi-target drafts, over-budget descriptors, missing/extra/duplicate targets, manifest/SHA or collection-digest drift and every normalized preflight failure. It processes one target at a time in a same-volume exclusive temporary directory and atomically renames the complete set to a previously nonexistent final directory. Failure cleans only command-owned temporary data; drafts and existing/adopted handoffs remain unchanged. Validation checks an already compact representation; it never post-hoc splits a semantic target.
87
-
88
- Preflight hydrates omitted collections directly from the declared manifest bytes and runs the same full semantic validator. It also reads the indexed feasibility document and current technical Source without following links, verifies exact Source Items/projections/digests, real no-follow repository-directory owner roots, observation-kind/value rules, target-wide per-cell unresolved-observation blockers, exact blocker/projection observation-ref sets, non-vacuous family coverage, transitive family target/condition Fact or Rule coverage, owner existence/authorization and required-realization authority, and rejects any mixing with canonical resources or exact design values in feasibility prose. Visual timing values remain forbidden, while explicitly technical build/test/runtime duration prose is allowed. Unknown fields, missing/extra/duplicate Facts/proofs, unreadable resources, invalid locators, unresolved rows, stale digests, unsupported methods or unequal sets fail closed. Current blockers remain honest valid Source inputs and are reported rather than mislabeled as production readiness. `ty-context design-resource preflight <handoff.md>` remains available for inspection and older embedded-V1 read compatibility; an omitted feasibility index normalizes to `[]` and is reported as a limitation. New V1 bundle authoring requires exactly one valid feasibility input for each implementation target.
89
-
90
- ## Optional symbolic V2
91
-
92
- V1 remains default. Only an explicit per-target opt-in may use `design-resource-observable-rule-manifest-v2`, `design-resource-handoff-v2` and `representation: symbolic_rules_v2`; never infer it from size/provider output/capacity.
93
-
94
- Preserve complete extensional denotation over `subject/relation × target × reachable condition/variation × applicable atomic property × population/quantifier`. Rules hold constant canonical located values, mutually exclusive exhaustive effective regions and separate Fact Rule, proof-obligation and set-valued certificate identities. Applicability may retain exact physical remainder partitions or use package-owned subject profiles plus frozen custom-property closure and explicit unique-instance exceptions; every logical point still has exactly one disposition.
95
-
96
- An omitted axis requires both Source-side and production-side proof using frozen closed-world static dependency closure, package-owned restricted-IR exact equivalence or finite complete-domain exhaustive equivalence. Dynamic/reflected/computed/unfrozen/external dependencies and representative sampling block.
97
-
98
- Each non-interference method binds a digest-identified frozen executable Oracle with exact `symbolic_noninterference.<side>.<method>` capability. Source uses one canonical non-executable `design-resource-symbolic-source-ir-v1` in complete Inspector inputs; package preflight reparses current bytes and derives and memoizes the static dependency DAG, predicate/axis-erased equivalence or complete finite evaluation. Submitted graph/predicate/evaluation/pass fields and proof artifacts are caches only and must agree with recomputation. JavaScript, CSS/implicit DOM, executable templates and dynamic/reflected/external Source block. Production is limited to package-parsed static HTML plus inert JSON. Both sides bind implementation closure/version/capability, environment, exact input paths/digests, side snapshot, scope, omitted axes, derived result, artifact and witness; Source and production proof digests are downstream certificate bindings. Extraction outside admitted representations is an explicit TCB boundary.
99
-
100
- The V1 bundle remains V1-only; directly preflight explicit V2 until a separately admitted publisher exists. V2 never lowers granularity, expands then deduplicates or proves production acceptance.
101
-
102
- ## Downstream proof boundary
103
-
104
- Passing bundle/preflight proves input acquisition, integrity and exact declared-universe closure relative to the frozen Inspector/Oracle TCB—not production conformance. Its human wording is `preflight valid` / `Source bundle published`, with production conformance or readiness explicitly `not evaluated`; compatible JSON `status: ready` carries no broader meaning.
105
-
106
- The default Workflow opens actual resources, feasibility Source and conditions, routes design meaning through surface/Design Authority, chooses among allowed realization candidates in Architecture Deliberation, implements on the real production owner and performs attributable visual/interaction/accessibility/runtime checks on the final candidate. It reports blockers and unestablished conditions without reconstructing retained per-Fact result rows.
107
-
108
- An active Long-Task projects exact target Facts and Fact × method obligations into its existing Source/Claims/Assertions/bindings, `fact_expectations`, current typed `fact_results` and sole Final Gate; every result stores the actual observation and pass/fail verdict. Every marked handoff/resource/manifest is in `task.source_paths` and the applicable Check `verification_inputs`; each feasibility input follows the same existing source/check path closure. Source Items map through `source_claims` to a root conformance Assertion, and each method × condition evidence cell binds the exact handoff `fact_refs`. For every candidate-bearing cell, current component bindings must uniquely derive one allowed realization (and exactly the required one when selected). Every component binding is reverse-attributed across its complete surface to at least one allowing candidate-bearing cell. Every actual `file`/`path_glob` target and carrier, every `verified` carrier and every required planned carrier is proven path-by-path inside an observed component root; route bindings receive the same proof against observed route roots, and `not_subset`/`unknown` both fail.
109
-
110
- A standalone Contract still requires non-empty component refs. Only full activation may defer that one structural error, and Source-aware closure then admits empty refs solely when every target on the surface has all blocker-only cells, valid route closure and exact blocking authority. No feasibility, candidate/mixed/legacy targets or a fake component binding fails. Each selected planned-owner authorization, required-realization decision and blocker uses its exact current `path#source-item-key` Claim and digest rather than any same-file Claim. Blockers compile only as `decision_required` or an existing target-blocking External Confirmation covering an affected target Claim. Complete activation omits only the externally blocked design Assertions and matching Counterfactual members from machine execution; the original Contract and sole Final Gate remain authoritative, so an open confirmation reaches `blocked_external` and never `machine_accepted`. Missing, extra, ambiguous, unattributed, failed, stale or authority-drifted rows fail. This uses existing Contract fields and the sole Final Gate; it creates no feasibility Claim type, binding field or Gate.
111
-
112
- Selected resources remain Context-reachable through existing owners. Adoption never overwrites an accepted baseline: create a new immutable version and update its canonical record. This Skill creates no Contract Draft, Outcome, Progress, Evidence, Receipt, Check result or Gate.
113
-
114
- Passing closure does not itself reconcile the Proposal. Return the stable formal handoff, canonical resources and closure result to the downstream owner, which performs the sole consolidated idempotent reconciliation after confirming that no new visible decision remains.
@@ -1,111 +0,0 @@
1
- # Implementation Feasibility Source
2
-
3
- Read this reference only when DRA will commission or publish a Web/App implementation handoff against a real repository substrate. It makes implementation intent concrete without turning DRA into production architecture authority.
4
-
5
- ## Boundary
6
-
7
- The canonical design resources and observable-Fact manifest remain the sole owners of exact selected design values. A separate `design-resource-implementation-feasibility-v1` JSON document records only Source-backed implementation possibilities, costs, risks and blockers. It must not copy colors, geometry, typography, motion values, content or other canonical design facts.
8
-
9
- This document is ordinary technical Source:
10
-
11
- - DRA may observe the current substrate and enumerate feasible realizations;
12
- - DRA may not select a production owner or require one realization from preference alone;
13
- - a `required_realization` needs an exact current marked `technical_obligation` Source Item decision;
14
- - a planned logical owner needs an exact current marked `technical_obligation` Source Item authorization;
15
- - every blocker needs an exact current marked `decision` or `external_confirmation` Source Item decision;
16
- - Default Workflow chooses among still-allowed candidates in its Architecture Deliberation and implements through the real owner;
17
- - Long-Task projects the document only through existing `task.source_paths`, Source claims, technical/surface bindings, Checks and Assertions; and
18
- - preflight validates input closure only. It never proves that production uses the candidate, renders correctly or passes acceptance.
19
-
20
- Create no implementation registry, readiness flag, workflow state, second Design Authority, new Gate or production acceptance record.
21
-
22
- ## Inspect real technical Source
23
-
24
- Read repository-owned Source and code/config owners before the formal Provider commission. Record safe repository-relative path, media type, SHA-256, a resolvable whole-resource/JSON-pointer/Markdown-anchor/source-anchor locator and one or more roles. Ordinary observations and capability bases may use those locators. Planned-owner authorization, required-realization authority and blocker authority must instead use `{"kind":"source_item","value":"<marked-item-key>","text_sha256":"<current-normalized-item-digest>"}`. One current file may expose several distinct bounded locators; those records share its media type and digest, while duplicate path-plus-locator identities fail closed. Inspect all six substrate questions:
25
-
26
- 1. `platform`;
27
- 2. `framework_runtime`;
28
- 3. `ui_system`;
29
- 4. `token_theming_adapter`;
30
- 5. `component_owner_roots`; and
31
- 6. `route_owner_roots`.
32
-
33
- For a native or mapped implementation, each question appears exactly once as `observed`, `not_applicable`, `decision_required` or `unavailable`. An observed value needs matching role-bearing Source and carries no reason; every non-observed disposition carries a concrete non-empty reason and no value. `platform`, `framework_runtime` and `ui_system` use `identifier`; `component_owner_roots` and `route_owner_roots` use `repository_paths`; `token_theming_adapter` may use either. Every repository path is repository-relative, currently exists without following a symlink/junction, remains inside the repository and is a directory. Existing component owners must fall within observed component roots, and downstream route bindings must fall within observed route roots.
34
-
35
- All six observations are target-wide. Every `decision_required` or `unavailable` observation must be named in `substrate_observation_refs` by at least one blocker in every material family × condition cell. Every non-empty blocker ref must still resolve to such a current unresolved observation; `not_applicable` cannot be cited. A target-wide unresolved observation with no component-family cell fails instead of passing vacuously. Any candidate-bearing cell requires `component_owner_roots` to be `observed` with at least one current valid directory; an unresolved component root forces the affected cell to be blocker-only. Missing or conflicting material Source stays unresolved; do not infer it from the visual resource or create a speculative owner.
36
-
37
- ## Exact marked technical decisions
38
-
39
- Put each authoritative feasibility decision inside its real marked Source Item as strict JSON:
40
-
41
- ```html
42
- <!-- ty-design-feasibility-decision-v1 {"schema_version":"design-resource-feasibility-decision-v1","mode":"required_realization","target_ref":"target.main","component_family_ref":"family.button","condition_scope_sha256":"<applicability-digest>","realization_ref":"reuse-project-button"} -->
43
- ```
44
-
45
- The one schema has three modes. `required_realization` carries `realization_ref`; `planned_owner_authorization` carries `owner_locator`; `feasibility_blocker` carries `blocker_ref` plus the required unique canonically sorted `substrate_observation_refs`. The feasibility document's blocker and its exact marked-Source projection carry identical observation-ref sets; an ordinary technical blocker uses `[]`. Every projection also carries exactly `schema_version`, `mode`, `target_ref`, `component_family_ref` and `condition_scope_sha256`, with no unknown or duplicate JSON fields. V1 hashes canonical JSON of sorted condition refs. V2 uses the current canonical compiled SHA-256 of the symbolic profile region. That binds the decision to actual applicability rather than a renameable profile key.
46
-
47
- The projection is not a new Authority. Authority is the current marked Source Item, its admitted kind, current file digest, current normalized-text digest and—under Long-Task—its exact Source Claim. Multiple non-conflicting projections may share one item; each required match is unique. A role such as `technical_authority`, an unrelated item in the same file or an imprecise path-level claim cannot substitute.
48
-
49
- Keep the feasibility document and its technical Source outside the canonical design-resource dependency set. Preflight rejects either one when mixed into `resources` or the canonical manifest closure.
50
-
51
- ## Realization modes and condition partition
52
-
53
- - `native_substrate`: realizations use the project's current UI substrate and owners.
54
- - `mapped_substrate`: realizations map the selected design to another already authorized project substrate or adapter boundary.
55
- - `reference`: descriptive only. Formal `implementation_web` and `implementation_app` targets cannot use it.
56
-
57
- Treat the observed target platform and the exact condition profile as hard candidate-applicability boundaries. Browser HTML/CSS capability alone cannot support a native-App or React Native realization. An independent HTML phone frame for such a target is at most a `mapped_substrate` candidate when current capability Source proves the complete mapping; otherwise the affected family cell carries a blocker. Never relabel a renderable Web artifact as `native_substrate`.
58
-
59
- Do not force one realization across platforms or profiles. Different platform/condition profiles for the same component family may carry different candidate sets, primitives, costs, risks or blockers, provided every cell remains exact and Source-backed.
60
-
61
- V1 uses `explicit_conditions_v1`: profiles are non-empty, non-overlapping sets whose union equals the target's declared conditions. V2 uses `symbolic_regions_v2`: profiles must be reachable, pairwise disjoint and exhaustive over the target's reachable region. Never sample representative conditions or silently collapse a remainder.
62
-
63
- ## Complete family coverage
64
-
65
- For every material `component_family × target × condition_profile`, author exactly one cell. Derive the family subject closure from the family subject plus direct `family_ref`/`instance_of_ref` seeds, then repeatedly add subjects whose `parent_ref`, `instance_of_ref` or `override_of_ref` points into the set until stable. Use a visited set so malformed cycles terminate. This includes instances, variants/overrides, Anatomy Parts, slots, primitives, text, icons, media and assets even when their own `family_ref` is null. Bind the cell to the complete matching canonical V1 Fact set or intersecting V2 Fact Rule set for that closure × target × profile applicability; neither omissions nor extras are legal. V1 uses the profile conditions, while V2 includes every Rule whose region intersects the profile region. Each cell contains at least one feasible realization or at least one Source-backed blocker; both may be present when a partial candidate still has a known blocking dependency. A candidate cell is invalid unless component-owner roots are observed; a blocker-only cell may retain unresolved component roots honestly.
66
-
67
- A feasible realization records:
68
-
69
- - an ordered, non-empty strategy drawn from `reuse_existing`, `compose_existing`, `extend_shared_component`, `theme_with_tokens` and `create_shared_component`;
70
- - the actual primitive/component candidates it uses;
71
- - one or more existing repository owner paths, or explicitly authorized planned logical owners;
72
- - the supported customization surfaces from `theme_tokens`, `component_variant`, `primitive_props`, `composition`, `content_slot`, `icon_slot`, `behavior_slot` and `style_api`;
73
- - Source references carrying both feasibility-basis and substrate-capability evidence; and
74
- - observed costs and risks without invented scores or universal ranking.
75
-
76
- Do not force one primitive, owner or single-step strategy. Composition and multi-primitive realizations are valid. Reuse is preferred only when it is genuinely feasible; creating or extending a shared component remains allowed when Source and scope support it.
77
-
78
- A blocker names the exact family, target and condition profile, carries the required unique canonically sorted `substrate_observation_refs`, cites at least one exact `source_item` record with a matching `feasibility_blocker` projection whose observation-ref set is exactly equal, and explains why no complete realization is presently supported. `[]` is valid for an ordinary technical blocker. Every non-empty ref resolves only to a current `decision_required` or `unavailable` observation, and every such target-wide observation is covered in every material cell. The Source Item kind is `decision` or `external_confirmation`. Every blocker must be referenced by its cell and every cell without a candidate must reference a blocker. A partial candidate never cancels a blocker; resolution updates technical Source and feasibility before rerunning preflight rather than adding a passing result to stale blocker Source.
79
-
80
- Run one exact-value-carrier check over every human free-text field: each substrate-observation reason, each observed cost, each observed risk and each blocker description. Hex/RGB/HSL colors, visual dimensions/angles, CSS declarations/custom properties, typography, spacing, shadows and exact visual timing remain canonical-resource values and are forbidden here. A time literal is forbidden in motion/animation/transition/duration/delay/easing/timeline/keyframe/fade/spring/stagger/enter/exit/hover/press context and also when its context is ambiguous. It is allowed only in explicit technical build/compile/bundle/generation/CI/test/startup/initialization/latency/timeout/network/benchmark/runtime-cost/render-cost context. Digests, repository paths, Source Item keys, logical primitive IDs and JSON Pointers are identities rather than prose carriers.
81
-
82
- ## Required realization authority
83
-
84
- Leave `required_realization.realization_ref` null when technical Source merely permits alternatives. If current technical authority requires a specific candidate, set the exact candidate key and cite the unique matching `required_realization` projection. Every referenced planned logical owner similarly cites its unique `planned_owner_authorization` projection. The downstream Default Workflow still performs Architecture Deliberation and conformance.
85
-
86
- An active Long-Task derives the actual selection without a new Contract field. Current component bindings must uniquely derive one allowed realization for each candidate-bearing cell. Match every candidate against current `surface_binding.component_binding_refs`: an existing owner matches an `existing` file binding target or carrier path; a planned owner matches a `planned` binding key or target and its exact authorization. A required cell must derive only its required candidate. An unrequired candidate-bearing cell must derive exactly one candidate; zero is missing and more than one is ambiguous. Every component binding ref must still be consumed by at least one current-target candidate-bearing cell, while sharing remains legal where every consuming target on that surface allows the owner.
87
-
88
- Prove the full path universe of every actual component and route Binding against observed owner roots with the shared repository-pattern subset theorem. For `file` and `path_glob`, prove the target and every carrier; for `verified`, prove every carrier but not its logical target. A `planned` Binding must declare at least one carrier and receives the same proof. Each path/pattern must be a `proven_subset` of at least one exact `<observed-root>/**`; `not_subset` and `unknown` fail, so an inside target or carrier cannot hide another outside or indeterminate path. Every Long-Task design surface requires observed non-empty route roots.
89
-
90
- The standalone Contract structure validator remains strict and rejects empty `component_binding_refs`. Full activation may defer only that one structural error inside the same complete Source-aware call. It closes only when every target on the surface is backed by a feasibility document whose cells are all blocker-only, there are no component Bindings to attribute, route closure is valid and every blocker reaches its exact existing completion boundary. No feasibility document, a candidate-bearing or legacy target, a mixed surface that leaves a component Binding unattributed, or a fake component Binding fails closed.
91
-
92
- Each selected planned-owner authorization and each required-realization decision has an exact current `path#source-item-key` Source Claim; its file is in `task.source_paths`, its item digest matches, and its disposition reaches the current Outcome Claim or a Global Constraint. Each blocker item maps either to `decision_required`, which blocks compile, or to its existing target-blocking External Confirmation whose impact claims include an affected current-target Claim. Complete activation projects only those externally blocked design Assertions and their matching Counterfactual members out of machine execution; the original Contract, Source Claims, confirmation and sole Final Gate remain unchanged. The open confirmation therefore reaches only external-pending/`blocked_external`, never `machine_accepted`. Same-file or path-only Claims never substitute.
93
-
94
- ## Handoff index and validation
95
-
96
- Index one document per target in `technical_feasibility_inputs`:
97
-
98
- ```yaml
99
- technical_feasibility_inputs:
100
- - key: dashboard-web-feasibility
101
- target_ref: dashboard-web
102
- path: design/handoffs/dashboard-web.feasibility.json
103
- media_type: application/json
104
- sha256: <sha256-of-current-bytes>
105
- ```
106
-
107
- The JSON root uses `schema_version: design-resource-implementation-feasibility-v1` and contains `key`, `target_ref`, `realization_mode`, `source_records`, `substrate_observations`, `condition_model`, `component_family_cells` and `blockers`. Unknown fields, stale digests, unresolved locators, unsafe or non-directory owner roots, duplicate identities, wrong target/family/condition/Fact bindings, incomplete partitions, unresolved-observation omissions, bad/duplicate/mismatched blocker observation refs, vacuous unresolved-observation coverage, unauthorized planned owners, unauthorized required realizations or unprojected blockers fail closed.
108
-
109
- New V1 bundle publication requires exactly one valid feasibility input for every `implementation_web` or `implementation_app` target. Direct preflight keeps older handoffs readable: a missing field normalizes to an empty array and reports the explicit limitation `technical feasibility not declared`. Explicit V2 remains direct-preflight only and validates the same feasibility semantics through symbolic regions.
110
-
111
- Passing bundle or preflight establishes only that the declared technical Source is current, internally complete and compatible with the formal input identities. Human preflight output says `Design resource handoff preflight valid`, reports input closure/input-cell-blocker counts and ends with `Production conformance: not evaluated`. Bundle output says `Design resource Source bundle published` and `Production readiness: not evaluated`. The compatible JSON `status: ready` means only that validation completed. Limitations or blockers do not create another status and do not by themselves change the zero exit code for structurally valid input. Report production-owner selection and production conformance separately.
@@ -1,198 +0,0 @@
1
- # Open Design Provider Orchestration
2
-
3
- Use Open Design as the generation engine. This Skill supplies a bounded product commission and retrieves results; it does not recreate the provider's prompts, template logic or catalogue.
4
-
5
- ## Execution priority
6
-
7
- 1. **Structured Open Design MCP** for discovery, project/run control and artifact retrieval.
8
- 2. **Open Design CLI or daemon API** when MCP is unavailable or cannot expose a required current capability but equivalent structured behavior is locally available.
9
- 3. **Browser/desktop interaction** only for bootstrap, unavoidable UI-only selection, signed-in provider interaction, visual preview inspection or recovery. Prefer browser-specific control over general Computer Use when both can operate the page.
10
-
11
- Do not silently install an MCP server/plugin, alter the user's global Open Design/Codex configuration, sign in, create a paid-provider dependency or expand data disclosure. Explain the exact setup need and obtain separate authorization when persistence or a new disclosure path is required.
12
-
13
- ## Live capability discovery
14
-
15
- Discover rather than remember:
16
-
17
- - configured agents and models, including whether Open Design's inner agent is Codex CLI;
18
- - functional skills and plugins;
19
- - rendering templates or project types;
20
- - design systems and their selected project binding;
21
- - specialist paths such as collaborative design platforms, image, video or 3D/WebGL;
22
- - supported project creation, run, cancellation, file and artifact operations.
23
-
24
- When live behavior or CLI/MCP semantics materially control the commission, retain the exact provider version and, when available, the released tag/commit plus authoritative documentation locator used for capability interpretation. A mutable default branch, remembered UI behavior or unpinned local checkout is not durable protocol evidence.
25
-
26
- Current structured tool names may include `list_agents`, `list_skills`, `list_plugins`, `create_project`, `get_project`, `get_active_context`, `start_run`, `get_run`, `cancel_run`, `list_files`, `get_file` and `get_artifact`. Feature-detect them; tool names and provider versions may evolve.
27
-
28
- Functional skills and rendering templates are different registries. Finding `frontend-design` does not prove that a `mobile-app` or `wireframe-mobile-flow` template is installed, and a remembered template ID is not live capability evidence.
29
-
30
- ## Highest-performance generation selection
31
-
32
- Open Design quality takes precedence over model-call price for every formal first generation, every major revision and every final-candidate defect repair that requires material regeneration. A major revision changes the adopted visual direction or design system, cross-surface information architecture, primary interaction model, or enough of the selected canonical source/Fact manifest to invalidate the former candidate. Pure discovery, reads, resource enumeration, metadata queries and review of an already sufficient selected resource do not trigger this policy.
33
-
34
- The durable policy is `highest_available_capability + highest_supported_reasoning_effort`, not a permanent model name. Apply it immediately before each applicable run:
35
-
36
- 1. Discover the live provider/tool schemas and returned agent/model metadata. Determine whether the actual run surface exposes model, reasoning-effort or service-tier inputs and which run/project/result fields can confirm their effective values. Never invent an input or result field that the provider does not expose.
37
- 2. Filter to eligible models before ranking. Eligibility requires every tool, visual/multimodal capability, context capacity, authentication path and data-residency/disclosure boundary required by the commission. An ineligible model cannot win on nominal capability.
38
- 3. Rank eligible models only by the provider's explicit capability order or documented recommended-replacement relation. If that is absent, the sole permitted fallback is one versioned, evidence-linked provider-local mapping owned in this reference; do not duplicate it in the main Skill, Context, README, tests or adapters. Price, model-name shape, publication date, apparent generation number and provider list order are not ranking evidence. This reference currently defines no fallback entries: when live provider evidence cannot order two or more eligible candidates, stop formal generation or major revision with `highest_performance_unverified` instead of guessing.
39
- 4. For the selected model, use its actually declared ordered legal reasoning-effort values and select the highest supported value. Examples such as `max` or `xhigh` illustrate possible highest values; they are not a cross-provider ordering or permanent product vocabulary. If several advertised values cannot be authoritatively ordered, the highest effort is unverified and the applicable generation must fail closed.
40
- 5. Keep service tier distinct from model capability and reasoning effort. Discover and report it when the provider exposes control or provenance, but never use price, latency tier or a service-tier label to rank model capability.
41
- 6. When model selection is controllable, requesting anything below the proved highest eligible model is an invocation error. When reasoning is controllable, requesting anything below the proved highest supported effort is likewise an error. A missing remembered example model is not an error when live evidence selects a different actual highest model.
42
- 7. Compare requested values with the effective model, reasoning effort and service tier reported by the completed run. A mismatch fails the run. If the provider accepts a request but does not expose effective provenance, keep the result `highest_performance_unverified`; do not claim the requested values were used.
43
- 8. If the provider exposes reasoning control but no model control, request the proved highest effort and report that model selection could not be independently enforced. If it exposes neither control nor enough candidates to create an unresolved ranking choice, its current default generation path may be used, but the result remains `highest_performance_unverified`. If it explicitly exposes multiple eligible models and no authoritative order, rule 3 blocks the run.
44
-
45
- Capability discovery happens at call time so a provider's new highest model or effort can replace an older example without a Skill edit. This is a provider adapter policy, not a scheduler: create no persistent model registry, routing state, retry loop or cross-provider optimizer. Reduce cost by avoiding unnecessary generations, irrelevant resources and separable revisions, or by reusing a sufficient selected resource—never by lowering the generation model or effort.
46
-
47
- Repository tests can prove only that these branches remain distributed in the managed guidance. Only a normalized live provider trace that freezes provider/version, candidate and eligibility metadata, ranking authority, request fields and effective result provenance can prove the model and effort actually used. Without that trace, report the boundary as unverified.
48
-
49
- ### Rendering-template discovery compatibility
50
-
51
- Prefer, in order:
52
-
53
- 1. a live `list_design_templates`-style method/resource when the provider exposes one;
54
- 2. an explicit template ID supplied by the current project/user and validated by the provider;
55
- 3. a version-guarded structured daemon query that reads the provider's current registry;
56
- 4. provider UI inspection when no structured registry is exposed;
57
- 5. an honest `unavailable` or degraded-discovery result.
58
-
59
- Never vendor a fallback template catalogue or guess a template ID from prior runs. Do not implement a transport helper unless the live host truly lacks a safe structured path; any helper may normalize metadata and transport only.
60
-
61
- ### Resource-type capability matching
62
-
63
- Match the requested artifact archetype to demonstrated live capability rather than a Skill name. Distinguish at least landing/brand pages, dashboards/data workbenches, dense tables/filters/forms, mobile multi-screen flows, component workbenches, complex interaction, formal Web/App handoff and icon/illustration/media work. For every considered capability, establish the target resource type, platform, surface count, state/interaction support, real-render support, bounded revision support, canonical-source retrieval and formal-handoff coverage.
64
-
65
- A single-frame HTML phone mockup cannot claim a native mobile-App or multi-screen formal handoff. A visually strong capability without retrievable canonical Source may support exploration but not a formal implementation handoff. Give unsupported candidates `unavailable` or `not-needed`; do not wrap a partial output in a stronger profile. This matching is task-local provider adaptation, not a registry or durable ranking.
66
-
67
- ## Conditional Design Authority gate and binding
68
-
69
- Before any style-bearing commission, read project `DESIGN.md` and its declared authored exact-value token source/generation direction. Style-bearing means the resource materially expresses visual fidelity, brand, typography/color/density, component visual treatment or a production-style prototype. Low-fidelity structure, IA/flow topology and semantics-only behavior/state studies are non-fidelity and do not require the gate.
70
-
71
- If authority is absent, explicitly `unconfigured`, still a starter, style-only/inspiration-only, or lacks one authored token source/generation direction, stop before creating a project or run. Direct the user to explicitly invoke `$design-system-authoring`; never auto-run it. A combined explicit request authorizes the sequence.
72
-
73
- For configured style-bearing work:
74
-
75
- 1. read the adopted Open Design design-system ID and digest/provenance from project Design Authority;
76
- 2. confirm `od://design-systems/<id>/DESIGN.md` is readable through MCP;
77
- 3. pass that ID as `designSystem` to `create_project`;
78
- 4. immediately call `get_project` and require `designSystemId` to match;
79
- 5. when reusing a project, check its binding before every new style-bearing run;
80
- 6. on missing/mismatch, prefer a new bounded project with the correct binding when MCP has no safe update method; otherwise feature-detect and verify the provider's structured update.
81
-
82
- Never silently use the provider's default or a different system. A provider-side mismatch is a synchronization/rebinding issue; it does not erase the canonical project `DESIGN.md`.
83
-
84
- ## Pre-run style-application closure
85
-
86
- Before submitting a commission or calling `start_run` for any style-bearing generation or material revision, require the task-local closure defined by [resource-selection.md](resource-selection.md). Every applicable current-slice dimension must be `existing-covered`, `projected` or `not-applicable`. A `decision-required`, undispositioned dimension or Source conflict blocks the run before Provider execution; preserve the concrete diagnostic instead of launching a speculative candidate.
87
-
88
- Validate each disposition at the adapter boundary:
89
-
90
- - `existing-covered` meaning must arrive through the current commission's existing `inputs.exact_targets`, `inputs.constraints` or corresponding input binding and must match the exact target, slice and declared conditions;
91
- - only `projected` meaning enters the existing `style_application` object;
92
- - `not-applicable` stays a reasoned task-local judgment and creates no empty field; and
93
- - `decision-required` stays unresolved and never becomes Provider-authored application meaning.
94
-
95
- A verified `designSystemId`, exact-value Token lineage or generic instruction to follow the system proves system binding only. It cannot prove that the current slice's hierarchy, density, container, visible-versus-hit geometry, preservation or prohibited-pattern meaning reached the Provider. The Provider must not complete missing application meaning from a feature list, route tree, generic system, component inventory, screenshot, inspiration, background or task-level UI/UX analysis.
96
-
97
- Repeat the closure immediately before each material-revision run, using the existing material-revision definition. After the resulting candidate is acquired, rerun the applicable Design suitability subchecks as the independent post-generation review. A packaging, rename or byte-only export proved equivalent to the same canonical source creates neither a new Provider run nor a new design decision. This is a fail-closed adapter precondition inside the existing commission action, not a schema, state, Authority, Gate, readiness result or Provider lifecycle.
98
-
99
- ## Structured commission sequence
100
-
101
- 1. Record provider version, selected agent/model, reasoning effort and service tier when exposed, functional capability, rendering template, adopted design system and relevant plugin/export readiness as reported live. For an applicable generation, retain the eligibility/ranking basis and the request-versus-effective comparison required by the highest-performance policy.
102
- 2. Reuse an existing task-local project only when its scope, prior inputs and required design-system binding match; otherwise create a bounded project. For style-bearing work, pass `designSystem` and verify `get_project.designSystemId` before the run.
103
- 3. Only after the pre-run style-application closure allows execution, start a run with the product-specific commission envelope, including exactly its Source-bound `projected` `style_application` fields, archetype-specific `quality_commission`, provider-native capability identifier and—when the intent is a formal Web/App implementation handoff—the complete prederived authoring obligation universe plus current implementation-substrate observations and allowed realization boundaries from [implementation-feasibility.md](implementation-feasibility.md). Fully current input-bound `existing-covered` meaning permits the style object to be omitted; `not-applicable` and `decision-required` never become empty or invented fields. The quality commission states real-copy/data needs, primary challenges, desired/avoided character, reference roles and design-side shared-family reuse without claiming production reuse. That universe is based on requested scope, product semantics, adopted design system, real technical Source and target environments; it must not be inferred only from provider output. Both application and quality fields are commission content, not a separate persistent Projection, Authority, state, routing record or Provider score.
104
- 4. Poll with a bounded cadence. During a long run, report meaningful progress at least once per minute without flooding the user.
105
- 5. Preserve run IDs and the latest provider diagnostic. Support cancellation when the user requests it and the provider exposes it.
106
- 6. Resolve the actual entry explicitly, retrieve the artifact/source, inspect it according to intent and preserve its immutable identity before later iterations or handoff.
107
-
108
- Open Design may launch Codex CLI as its configured inner agent. That is provider execution, not recursive invocation of this outer Skill. Do not hardcode a remembered model when live discovery and authoritative ranking can select the current highest eligible model.
109
-
110
- ## Separate three kinds of state
111
-
112
- ### Provider execution state
113
-
114
- Examples: queued, running, succeeded, failed, cancelled, timed out or unknown.
115
-
116
- ### Artifact readiness
117
-
118
- Examples: missing, partial, corrupt, retrievable, rendered or snapshot-preserved.
119
-
120
- ### Design suitability
121
-
122
- Design suitability is one freshly derived umbrella review, not another state machine and never human selection. Review the applicable subchecks at intent-proportional depth:
123
-
124
- - **scope and Source suitability:** the candidate stays within the hard ceiling and follows current controlling Product/Surface/Screen/Design Source; an outside effect is reported, not generated;
125
- - **mechanical checks:** promised files/entries are readable, structurally usable and free of obvious corruption, broken references or intent-material runtime defects;
126
- - **Design-System application checks:** the verified adopted identity, exact-value/token lineage and applicable component-family rules are used rather than merely named;
127
- - **visual-language checks:** composition, hierarchy, typography, visual rhythm, density, container treatment, color, spacing, content realism, component treatment and other material relationships cohere with the selected Source-bound direction;
128
- - **distinctiveness and component-authoring checks:** the result answers the product-specific challenges without unsupported template mannerisms, and repeated controls use a coherent design-side component family rather than unrelated per-instance styling;
129
- - **state/condition coverage checks:** credit only demonstrated states, variations, interactions, viewports, input/accessibility conditions and assets; and
130
- - **preservation checks:** explicitly preserved Source meaning, exact visual facts and unaffected bindings remain unchanged.
131
- - **implementation-feasibility checks for formal Web/App handoff:** each material component-family × target × condition profile has at least one real-substrate realization or a Source-backed blocker, without copying exact design values into the technical feasibility document.
132
-
133
- Report applicable checked and unchecked conditions. A grounded conflict blocks; an ungrounded aesthetic preference is a candidate-comparison observation, not a fabricated Source rule. Examples of derived suitability outcomes may include `unreviewed`, `scope-source-conflict`, `revision-required` or `suitable-for-user-review`; none means selected, formally complete or handoff-ready.
134
-
135
- Never collapse these into one “success.” A provider success does not prove a good design; a complete artifact can exist even when a provider run later fails.
136
-
137
- After every material revision, rerun every applicable suitability subcheck against current Source and bytes. A material revision changes the selected visual direction or design system, cross-surface information architecture, primary interaction model, declared state/condition coverage, preservation obligation or enough canonical source/Fact meaning to invalidate the reviewed candidate. A byte-only packaging/export change proven equivalent to the same canonical source does not create a new design decision; a visible or semantic difference does. Always inspect the actual rendered candidate when the resource is renderable. If the first candidate has no material Source, feasibility, mechanical or suitability defect, it may proceed directly to user selection; never manufacture a revision quota. When repair is needed, request the smallest defect-localizing revision that preserves unaffected meaning, then reacquire and review the complete current candidate.
138
-
139
- Use these qualifiers when needed:
140
-
141
- - `artifact-ready/run-unreconciled`: a complete retrievable artifact exists, but the provider run remains nonterminal or inconsistent;
142
- - `artifact-ready/provider-failed`: the artifact remains complete and retrievable, but the provider later reports failure/timeout.
143
-
144
- In both cases preserve the exact run locator, last update, failure diagnostic and artifact hash. Do not claim provider success or downstream acceptance. Retry only when the promised resource is incomplete/corrupt or the user requests another attempt; do not discard a useful independently inspected artifact merely because the terminal state differs.
145
-
146
- ## Implementation-level output profile
147
-
148
- Open Design has demonstrated that a complex Web page can emit a machine-readable implementation set such as `index.html`, component/design specifications, tokens and an asset manifest. Capability is not a per-run guarantee. When the selected resource will drive Web/App implementation, make this an explicit commission and retrieval invariant:
149
-
150
- 1. send the complete Expected Fact Universe with the commission. It enumerates every scoped subject and hierarchy, each applicable target-condition axis/value combination, every subject-local `variant × state × interaction_phase × presence_phase × instance_case`, and every standard or justified custom atomic property. The provider must encode every applicable Fact Cell or return an exact non-applicable/excluded/unresolved disposition; `all-states`, one default render, representative samples and broad summaries are not atomic coverage;
151
- 2. request a canonical machine-readable entry whose HTML/CSS/JS/JSON/SVG/tokens/assets or equivalent implementation sources contain the exact geometry, style, content, behavior, motion, accessibility, asset and system-condition values. One comprehensive source may carry many facts; no one-file-per-component rule is implied;
152
- 3. require one machine-readable `design-resource-observable-fact-manifest-v1` inside the canonical dependency closure. It freezes the design-system snapshot; Inspector identity/version/digest or named external TCB and declared capabilities; exact input-resource paths/digests; complete resource/node/declaration/token/asset/relation/variant/state/interaction/dynamic-population Census; condition/variation universes and exclusions; subjects; property catalog; Fact Cells/Facts; typed value locators/digests and effective-value lineage; Fact × required-method proof obligations; evidence, comparator/tolerance/mask, Oracle and render-environment authority; assets, blockers and generation collection counts/digests;
153
- 4. require `traversal: complete_enumeration`, fully enumerated dynamic/lazy/virtualized/portal population, `sampling: forbidden`, `truncation: forbidden` and exact deterministic chunk/count/digest closure. An Inspector `complete` Boolean or a provider claim is insufficient without its Census and identities;
154
- 5. enumerate the complete output set and retrieve every selected entry/dependency without truncation. Preserve exact bytes, media types and SHA-256 digests in repository-local immutable files; include local source modules, styles, tokens, SVG, fonts, images, audio/video, workers and other referenced assets;
155
- 6. record `implementation_web` or `implementation_app`, the canonical entry, every dependency, the Fact manifest and `acquisition: complete`. For Web/App output, require every locally referenced dependency discovered from the frozen source to be present in the declared target set;
156
- 7. use stable IDs/data attributes, Markdown anchors, JSON Pointers, HTML/CSS/JS/SVG selectors, declarations, attributes or bounded whole-file binary locators that shared preflight can resolve. Critical values cannot live only in a bitmap, preview or prose summary;
157
- 8. run the frozen Inspector and require `Expected Fact Universe = Canonical Resource Facts`. Every Census item must map to exact Fact/Fact Cell identities or a source/basis-backed `non_material` disposition. Preserve design-system token, alias, platform/mode/state/instance override and conflict-resolution lineage; exact condition profiles must include viewport geometry, pixel ratio, Safe Area insets and text-scale multiplier;
158
- 9. exercise every property-required verification method against the canonical entry under each claimed condition. A Fact may require multiple independent methods—for example token plus pixel—and each obligation binds method-compatible evidence, comparator parameters, exact/tolerance mode, any narrow authoritative mask, Oracle identity/version/digest and frozen render environment. Compare repeated facts across code, specifications, tokens and asset manifests. Refine any mismatch; if it cannot be resolved, keep the exact Fact Cell `decision_required`/`unavailable` with a blocker;
159
- 10. mark protected observations before downstream use. Sensitive raw UI values must not be persisted in Contract/runtime evidence: the canonical source remains the value owner while later evidence carries an attributable digest-only or redacted representation and policy reference.
160
-
161
- Alongside, author one separate `design-resource-implementation-feasibility-v1` input per target from real repository technical Source. It must use current no-follow repository directories for component/route owner roots, cover the complete transitive subject closure of every material component-family × condition profile with feasible multi-step/multi-primitive realizations or explicit blockers, and retain candidate costs/risks and customization surfaces without carrying any exact visual values in observation reasons, costs, risks or blocker prose. A decision-required/unavailable substrate observation reaches an affected cell through an exact Source-backed blocker. Leave the required realization unselected unless an exact current marked technical Source Item decision requires one; planned owners and blockers use their corresponding strict decision projections too. Provider output cannot invent any of those decisions. Never put this document or its technical Source records into the canonical resource closure.
162
-
163
- The authoring Skill then projects the exact manifest identities into the residual handoff and shared preflight enforces `Expected Fact Universe = Canonical Resource Facts = Handoff Indexed Facts`. This is authoring source QA, never production acceptance. If the live Open Design capability cannot generate, expose or retrieve this profile, report the missing capability and keep the formal handoff blocked; provider success does not authorize a coarser replacement.
164
-
165
- A PNG may be a useful derived visual baseline, but it cannot be the sole source for implementation-level state, interaction, adaptation, accessibility or motion facts. Non-Web resources use the `reference` profile; do not manufacture HTML merely to satisfy this profile.
166
-
167
- ## Explicit entry and immutable identity
168
-
169
- Provider project metadata may omit or stale its entry file. Resolve in this order:
170
-
171
- 1. validate an explicit project entry path when present;
172
- 2. enumerate project files;
173
- 3. identify the intended provider-native entry from the current run/output rather than guessing;
174
- 4. retrieve that exact file/artifact;
175
- 5. preserve an SHA-256 digest or immutable snapshot before selection/handoff.
176
-
177
- A preview URL is mutable navigation, not immutable identity. It may be reported for convenience only beside project/run/entry provenance and a digest. If the user explicitly selects the resource for durable use, export or snapshot it to a user-approved location; never silently choose a repository path.
178
-
179
- ## Review proportional to intent
180
-
181
- - **Exploration:** open/render the requested entry, confirm artifact count/scope and obvious corruption, perform only the decision-material suitability subchecks, then show it. Do not launch a packaging or validator sequence.
182
- - **Handoff:** additionally perform the method-proportional source QA above, including relevant structure, states/transitions, viewport behavior, accessibility semantics, assets, obvious console/runtime errors, requested interaction hooks, Design-System application, visual language, preservation and real-substrate implementation feasibility. State exactly what was and was not checked.
183
- - **Selected-source preparation:** require an independent explicit human selection basis, preserve identity/snapshot and prepare downstream metadata. Suitability informs that decision but never makes it, and still does not verify production behavior.
184
-
185
- Provider self-checks, outer artifact sanity review, user selection, formal source closure and downstream project verification are separate evidence layers. A visual-language or mechanical pass cannot independently establish Artifact readiness, selection, formal completeness, handoff readiness, native rendering, accessibility, responsive coverage, product correctness or acceptance.
186
-
187
- ## Specialist paths
188
-
189
- Figma, Penpot, OpenPencil, image, video, 3D/WebGL and other providers are optional upstream producers. A Direct Agent authoring the resource is also a legal other Provider when current evidence shows that it satisfies the same bounded archetype, render, revision, canonical-source and formal-handoff capabilities; it receives no exemption from Source, Design suitability or handoff closure. Use any provider only when its collaboration/editability or native inspection value is material and its connector/auth/read/export path is operational. A listed plugin, URL, thumbnail or metadata response is not proof of usable native input. If a requested provider is unavailable, report the missing capability precisely, offer another artifact only when it preserves the requested design decision, and never relabel an export as native editable design. Every selected provider still emits repository-readable immutable resources through the same provider-neutral handoff.
190
-
191
- ## Failure and recovery
192
-
193
- - Preserve provider diagnostics; do not replace failures with generated placeholders.
194
- - Avoid unbounded polling or repeated blind reruns.
195
- - Re-discover capability after provider upgrades or registry mismatches.
196
- - If structured paths fail but a UI artifact exists, UI inspection may recover it while retaining the degraded-provider qualifier.
197
- - If the provider is unavailable and no justified fallback exists, return `unavailable` with the minimum setup needed rather than generating with an unrelated image tool and calling it equivalent.
198
- - Provider recovery and DRA semantic recovery are separate: this reference may re-read the current run/resource identity, while [recovery-and-writeback.md](recovery-and-writeback.md) alone owns Base/Delta replay, the conditional checkpoint and Proposal CAS. Never restore a live Provider state or suitability conclusion from that checkpoint.