project-tiny-context-harness 0.8.17 → 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 (983) hide show
  1. package/README.md +74 -481
  2. package/assets/agents/AGENTS_CORE.md +11 -87
  3. package/assets/tools/context_rules.json +54 -0
  4. package/dist/cli.js +2 -1
  5. package/dist/commands/context-create.d.ts +1 -0
  6. package/dist/commands/context-create.js +90 -0
  7. package/dist/commands/context-inspect.d.ts +1 -0
  8. package/dist/commands/context-inspect.js +28 -0
  9. package/dist/commands/context-list.d.ts +1 -0
  10. package/dist/commands/context-list.js +24 -0
  11. package/dist/commands/context-move.d.ts +1 -0
  12. package/dist/commands/context-move.js +78 -0
  13. package/dist/commands/context-register.d.ts +1 -0
  14. package/dist/commands/context-register.js +110 -0
  15. package/dist/commands/context-transaction.d.ts +1 -0
  16. package/dist/commands/context-transaction.js +84 -0
  17. package/dist/commands/context.d.ts +1 -0
  18. package/dist/commands/context.js +40 -0
  19. package/dist/commands/doctor.d.ts +1 -1
  20. package/dist/commands/doctor.js +44 -3
  21. package/dist/commands/index.js +38 -51
  22. package/dist/commands/init.d.ts +0 -2
  23. package/dist/commands/init.js +26 -108
  24. package/dist/commands/upgrade.js +14 -2
  25. package/dist/commands/validate.js +1 -1
  26. package/dist/index.d.ts +2 -13
  27. package/dist/index.js +2 -12
  28. package/dist/lib/cli-exit.d.ts +14 -0
  29. package/dist/lib/cli-exit.js +19 -0
  30. package/dist/lib/config.js +14 -45
  31. package/dist/lib/constants.d.ts +1 -1
  32. package/dist/lib/constants.js +1 -1
  33. package/dist/lib/context-catalog/catalog-default-footprint.d.ts +3 -0
  34. package/dist/lib/context-catalog/catalog-default-footprint.js +51 -0
  35. package/dist/lib/context-catalog/catalog-diagnostics.d.ts +9 -0
  36. package/dist/lib/context-catalog/catalog-diagnostics.js +34 -0
  37. package/dist/lib/context-catalog/catalog-discovery.d.ts +7 -0
  38. package/dist/lib/context-catalog/catalog-discovery.js +81 -0
  39. package/dist/lib/context-catalog/catalog-load.d.ts +8 -0
  40. package/dist/lib/context-catalog/catalog-load.js +205 -0
  41. package/dist/lib/context-catalog/catalog-path-validation.d.ts +7 -0
  42. package/dist/lib/context-catalog/catalog-path-validation.js +72 -0
  43. package/dist/lib/context-catalog/catalog-paths.d.ts +11 -0
  44. package/dist/lib/context-catalog/catalog-paths.js +41 -0
  45. package/dist/lib/context-catalog/catalog-portable-contract.d.ts +15 -0
  46. package/dist/lib/context-catalog/catalog-portable-contract.js +68 -0
  47. package/dist/lib/context-catalog/catalog-staged-path-safety.d.ts +1 -0
  48. package/dist/lib/context-catalog/catalog-staged-path-safety.js +36 -0
  49. package/dist/lib/context-catalog/catalog-types.d.ts +40 -0
  50. package/dist/lib/context-catalog/catalog-validation.d.ts +9 -0
  51. package/dist/lib/context-catalog/catalog-validation.js +156 -0
  52. package/dist/lib/context-controlling-source.d.ts +4 -0
  53. package/dist/lib/context-controlling-source.js +106 -0
  54. package/dist/lib/context-create/context-create-path.d.ts +2 -0
  55. package/dist/lib/context-create/context-create-path.js +30 -0
  56. package/dist/lib/context-create/context-create-template.d.ts +2 -0
  57. package/dist/lib/context-create/context-create-template.js +95 -0
  58. package/dist/lib/context-create/context-create-types.d.ts +28 -0
  59. package/dist/lib/context-create/context-create-write.d.ts +1 -0
  60. package/dist/lib/context-create/context-create-write.js +85 -0
  61. package/dist/lib/context-create/context-create.d.ts +2 -0
  62. package/dist/lib/context-create/context-create.js +86 -0
  63. package/dist/lib/context-default-footprint.d.ts +2 -3
  64. package/dist/lib/context-default-footprint.js +51 -57
  65. package/dist/lib/context-doctor/context-doctor-types.d.ts +6 -0
  66. package/dist/lib/context-doctor/context-doctor-types.js +3 -0
  67. package/dist/lib/context-export.js +17 -9
  68. package/dist/lib/context-inspect/context-inspect-projection.d.ts +8 -0
  69. package/dist/lib/context-inspect/context-inspect-projection.js +48 -0
  70. package/dist/lib/context-inspect/context-inspect-render.d.ts +2 -0
  71. package/dist/lib/context-inspect/context-inspect-render.js +21 -0
  72. package/dist/lib/context-inspect/context-inspect-types.d.ts +29 -0
  73. package/dist/lib/context-inspect/context-inspect.d.ts +2 -0
  74. package/dist/lib/context-inspect/context-inspect.js +77 -0
  75. package/dist/lib/context-manifest-schema.d.ts +2 -1
  76. package/dist/lib/context-manifest-schema.js +6 -21
  77. package/dist/lib/context-manifest.js +1 -41
  78. package/dist/lib/context-markdown/context-markdown-analysis.d.ts +15 -0
  79. package/dist/lib/context-markdown/context-markdown-analysis.js +253 -0
  80. package/dist/lib/context-markdown/context-markdown-extract.d.ts +8 -0
  81. package/dist/lib/context-markdown/context-markdown-extract.js +134 -0
  82. package/dist/lib/context-markdown/context-markdown-types.d.ts +83 -0
  83. package/dist/lib/context-move/context-move-input.d.ts +8 -0
  84. package/dist/lib/context-move/context-move-input.js +17 -0
  85. package/dist/lib/context-move/context-move-literal-scan.d.ts +20 -0
  86. package/dist/lib/context-move/context-move-literal-scan.js +213 -0
  87. package/dist/lib/context-move/context-move-live-validation.d.ts +3 -0
  88. package/dist/lib/context-move/context-move-live-validation.js +56 -0
  89. package/dist/lib/context-move/context-move-markdown-plan.d.ts +22 -0
  90. package/dist/lib/context-move/context-move-markdown-plan.js +39 -0
  91. package/dist/lib/context-move/context-move-projection.d.ts +3 -0
  92. package/dist/lib/context-move/context-move-projection.js +11 -0
  93. package/dist/lib/context-move/context-move-reference-validation.d.ts +11 -0
  94. package/dist/lib/context-move/context-move-reference-validation.js +64 -0
  95. package/dist/lib/context-move/context-move-render.d.ts +2 -0
  96. package/dist/lib/context-move/context-move-render.js +24 -0
  97. package/dist/lib/context-move/context-move-support.d.ts +10 -0
  98. package/dist/lib/context-move/context-move-support.js +88 -0
  99. package/dist/lib/context-move/context-move-transaction-plan.d.ts +24 -0
  100. package/dist/lib/context-move/context-move-transaction-plan.js +108 -0
  101. package/dist/lib/context-move/context-move-types.d.ts +74 -0
  102. package/dist/lib/context-move/context-move.d.ts +8 -0
  103. package/dist/lib/context-move/context-move.js +181 -0
  104. package/dist/lib/context-mutation/manifest-lossless-patch.d.ts +28 -0
  105. package/dist/lib/context-mutation/manifest-lossless-patch.js +219 -0
  106. package/dist/lib/context-mutation/markdown-link-patch.d.ts +34 -0
  107. package/dist/lib/context-mutation/markdown-link-patch.js +143 -0
  108. package/dist/lib/context-mutation/markdown-link-spans.d.ts +10 -0
  109. package/dist/lib/context-mutation/markdown-link-spans.js +179 -0
  110. package/dist/lib/context-mutation/mutation-cas.d.ts +13 -0
  111. package/dist/lib/context-mutation/mutation-cas.js +365 -0
  112. package/dist/lib/context-mutation/mutation-command-support.d.ts +12 -0
  113. package/dist/lib/context-mutation/mutation-command-support.js +57 -0
  114. package/dist/lib/context-mutation/mutation-commit.d.ts +12 -0
  115. package/dist/lib/context-mutation/mutation-commit.js +89 -0
  116. package/dist/lib/context-mutation/mutation-directories.d.ts +5 -0
  117. package/dist/lib/context-mutation/mutation-directories.js +56 -0
  118. package/dist/lib/context-mutation/mutation-file-state.d.ts +14 -0
  119. package/dist/lib/context-mutation/mutation-file-state.js +137 -0
  120. package/dist/lib/context-mutation/mutation-interlock.d.ts +1 -0
  121. package/dist/lib/context-mutation/mutation-interlock.js +9 -0
  122. package/dist/lib/context-mutation/mutation-journal-file-validation.d.ts +1 -0
  123. package/dist/lib/context-mutation/mutation-journal-file-validation.js +106 -0
  124. package/dist/lib/context-mutation/mutation-journal-io.d.ts +5 -0
  125. package/dist/lib/context-mutation/mutation-journal-io.js +55 -0
  126. package/dist/lib/context-mutation/mutation-journal-storage.d.ts +18 -0
  127. package/dist/lib/context-mutation/mutation-journal-storage.js +283 -0
  128. package/dist/lib/context-mutation/mutation-journal-validation-support.d.ts +16 -0
  129. package/dist/lib/context-mutation/mutation-journal-validation-support.js +140 -0
  130. package/dist/lib/context-mutation/mutation-journal-validation.d.ts +3 -0
  131. package/dist/lib/context-mutation/mutation-journal-validation.js +177 -0
  132. package/dist/lib/context-mutation/mutation-journal.d.ts +8 -0
  133. package/dist/lib/context-mutation/mutation-journal.js +111 -0
  134. package/dist/lib/context-mutation/mutation-live-validation.d.ts +3 -0
  135. package/dist/lib/context-mutation/mutation-live-validation.js +51 -0
  136. package/dist/lib/context-mutation/mutation-recovery.d.ts +4 -0
  137. package/dist/lib/context-mutation/mutation-recovery.js +189 -0
  138. package/dist/lib/context-mutation/mutation-staged-fs.d.ts +5 -0
  139. package/dist/lib/context-mutation/mutation-staged-fs.js +56 -0
  140. package/dist/lib/context-mutation/mutation-types.d.ts +103 -0
  141. package/dist/lib/context-register/context-register-input.d.ts +11 -0
  142. package/dist/lib/context-register/context-register-input.js +43 -0
  143. package/dist/lib/context-register/context-register-render.d.ts +2 -0
  144. package/dist/lib/context-register/context-register-render.js +21 -0
  145. package/dist/lib/context-register/context-register-support.d.ts +6 -0
  146. package/dist/lib/context-register/context-register-support.js +46 -0
  147. package/dist/lib/context-register/context-register-types.d.ts +46 -0
  148. package/dist/lib/context-register/context-register.d.ts +8 -0
  149. package/dist/lib/context-register/context-register.js +158 -0
  150. package/dist/lib/context-templates.d.ts +0 -4
  151. package/dist/lib/context-templates.js +1 -210
  152. package/dist/lib/doctor.d.ts +2 -1
  153. package/dist/lib/doctor.js +45 -106
  154. package/dist/lib/fs.js +1 -1
  155. package/dist/lib/{long-task-git.js → git.js} +3 -3
  156. package/dist/lib/init.js +34 -39
  157. package/dist/lib/maintenance-lock.d.ts +3 -0
  158. package/dist/lib/maintenance-lock.js +203 -0
  159. package/dist/lib/maintenance-write.d.ts +3 -0
  160. package/dist/lib/maintenance-write.js +55 -0
  161. package/dist/lib/migrations.d.ts +1 -20
  162. package/dist/lib/migrations.js +48 -714
  163. package/dist/lib/package-json-config.js +34 -21
  164. package/dist/lib/package-source.js +27 -14
  165. package/dist/lib/repository-path-safety.d.ts +3 -0
  166. package/dist/lib/repository-path-safety.js +23 -3
  167. package/dist/lib/retirement-assets.d.ts +13 -0
  168. package/dist/lib/retirement-assets.js +182 -0
  169. package/dist/lib/retirement-binding.d.ts +10 -0
  170. package/dist/lib/retirement-binding.js +59 -0
  171. package/dist/lib/retirement-defaults.d.ts +7 -0
  172. package/dist/lib/retirement-defaults.js +29 -0
  173. package/dist/lib/retirement-plan.d.ts +10 -0
  174. package/dist/lib/retirement-plan.js +96 -0
  175. package/dist/lib/retirement-preflight.d.ts +2 -0
  176. package/dist/lib/retirement-preflight.js +13 -0
  177. package/dist/lib/retirement-references.d.ts +6 -0
  178. package/dist/lib/retirement-references.js +102 -0
  179. package/dist/lib/retirement-runner.d.ts +22 -0
  180. package/dist/lib/retirement-runner.js +217 -0
  181. package/dist/lib/schema-guard.d.ts +1 -0
  182. package/dist/lib/schema-guard.js +47 -6
  183. package/dist/lib/source-files.d.ts +0 -2
  184. package/dist/lib/source-files.js +0 -21
  185. package/dist/lib/source-pack-export.js +4 -1
  186. package/dist/lib/source-pack-manifest.js +93 -38
  187. package/dist/lib/sync-engine.d.ts +7 -1
  188. package/dist/lib/sync-engine.js +38 -336
  189. package/dist/lib/types.d.ts +0 -19
  190. package/dist/lib/upgrade.d.ts +3 -2
  191. package/dist/lib/upgrade.js +30 -40
  192. package/dist/lib/validators.d.ts +4 -1
  193. package/dist/lib/validators.js +76 -517
  194. package/dist/public-api-core.d.ts +15 -0
  195. package/dist/public-api-core.js +15 -0
  196. package/dist/public-types.d.ts +7 -9
  197. package/migrations/README.md +22 -82
  198. package/migrations/schema-4-owned-assets.json +170 -0
  199. package/package.json +18 -22
  200. package/source-mappings.yaml +3 -21
  201. package/assets/README.md +0 -830
  202. package/assets/README.zh-CN.md +0 -497
  203. package/assets/agents/.gitkeep +0 -1
  204. package/assets/agents/long-task-implementation.toml +0 -15
  205. package/assets/context_templates/architecture.md +0 -37
  206. package/assets/context_templates/area.md +0 -40
  207. package/assets/context_templates/context.toml +0 -41
  208. package/assets/context_templates/deployment.md +0 -35
  209. package/assets/context_templates/global.md +0 -57
  210. package/assets/context_templates/product-surface-contract.md +0 -70
  211. package/assets/context_templates/screen-contract.md +0 -205
  212. package/assets/context_templates/verification.md +0 -35
  213. package/assets/github/.gitkeep +0 -1
  214. package/assets/github/harness.yml +0 -41
  215. package/assets/make/.gitkeep +0 -1
  216. package/assets/make/ty-context.mk +0 -48
  217. package/assets/skills/context_development_engineer/SKILL.md +0 -58
  218. package/assets/skills/context_development_engineer/references/engineering-design-reasoning.md +0 -93
  219. package/assets/skills/context_full_project_export/SKILL.md +0 -70
  220. package/assets/skills/context_harness_upgrade/SKILL.md +0 -60
  221. package/assets/skills/context_product_plan/SKILL.md +0 -42
  222. package/assets/skills/context_surface_contract/SKILL.md +0 -205
  223. package/assets/skills/context_uiux_design/SKILL.md +0 -53
  224. package/assets/skills/context_uiux_design/references/task-uiux-analysis.md +0 -82
  225. package/assets/skills/design-resource-authoring/SKILL.md +0 -60
  226. package/assets/skills/design-resource-authoring/references/downstream-handoff.md +0 -63
  227. package/assets/skills/design-resource-authoring/references/formal-selected-web-app-handoff.md +0 -114
  228. package/assets/skills/design-resource-authoring/references/implementation-feasibility.md +0 -111
  229. package/assets/skills/design-resource-authoring/references/open-design-provider.md +0 -198
  230. package/assets/skills/design-resource-authoring/references/recovery-and-writeback.md +0 -205
  231. package/assets/skills/design-resource-authoring/references/resource-selection.md +0 -290
  232. package/assets/skills/design-system-authoring/SKILL.md +0 -57
  233. package/assets/skills/design-system-authoring/agents/openai.yaml +0 -6
  234. package/assets/skills/design-system-authoring/references/authority-adoption.md +0 -48
  235. package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md +0 -110
  236. package/assets/skills/long-task-workflow/SKILL.md +0 -75
  237. package/assets/skills/long-task-workflow/agents/openai.yaml +0 -6
  238. package/assets/skills/long-task-workflow/references/authority-lifecycle.md +0 -80
  239. package/assets/skills/long-task-workflow/references/contract-authoring.md +0 -152
  240. package/assets/skills/long-task-workflow/references/evidence-design.md +0 -121
  241. package/assets/skills/long-task-workflow/references/source-authoring.md +0 -123
  242. package/assets/tools/validate_context.py +0 -442
  243. package/dist/commands/check-modularity.d.ts +0 -1
  244. package/dist/commands/check-modularity.js +0 -181
  245. package/dist/commands/composite-campaign.d.ts +0 -1
  246. package/dist/commands/composite-campaign.js +0 -8
  247. package/dist/commands/composite-long-task.d.ts +0 -1
  248. package/dist/commands/composite-long-task.js +0 -8
  249. package/dist/commands/delivery-set.d.ts +0 -1
  250. package/dist/commands/delivery-set.js +0 -8
  251. package/dist/commands/design-resource-recovery.d.ts +0 -1
  252. package/dist/commands/design-resource-recovery.js +0 -152
  253. package/dist/commands/design-resource.d.ts +0 -1
  254. package/dist/commands/design-resource.js +0 -125
  255. package/dist/commands/disable.d.ts +0 -1
  256. package/dist/commands/disable.js +0 -15
  257. package/dist/commands/enable.d.ts +0 -1
  258. package/dist/commands/enable.js +0 -16
  259. package/dist/commands/long-task-authoring.d.ts +0 -3
  260. package/dist/commands/long-task-authoring.js +0 -216
  261. package/dist/commands/long-task-command-args.d.ts +0 -4
  262. package/dist/commands/long-task-command-args.js +0 -26
  263. package/dist/commands/long-task-explain.d.ts +0 -1
  264. package/dist/commands/long-task-explain.js +0 -52
  265. package/dist/commands/long-task-revision.d.ts +0 -1
  266. package/dist/commands/long-task-revision.js +0 -177
  267. package/dist/commands/long-task.d.ts +0 -1
  268. package/dist/commands/long-task.js +0 -143
  269. package/dist/lib/compact-authoring-support.d.ts +0 -22
  270. package/dist/lib/compact-authoring-support.js +0 -143
  271. package/dist/lib/compact-shared-structure-authoring.d.ts +0 -5
  272. package/dist/lib/compact-shared-structure-authoring.js +0 -9
  273. package/dist/lib/compact-shared-structure-types.d.ts +0 -61
  274. package/dist/lib/compact-shared-structure-validation.d.ts +0 -2
  275. package/dist/lib/compact-shared-structure-validation.js +0 -159
  276. package/dist/lib/compact-shared-structures.d.ts +0 -3
  277. package/dist/lib/compact-shared-structures.js +0 -204
  278. package/dist/lib/context-graph-snapshot.d.ts +0 -18
  279. package/dist/lib/context-graph-snapshot.js +0 -178
  280. package/dist/lib/design-md.d.ts +0 -12
  281. package/dist/lib/design-md.js +0 -169
  282. package/dist/lib/design-resource-fact-enums.d.ts +0 -24
  283. package/dist/lib/design-resource-fact-enums.js +0 -182
  284. package/dist/lib/design-resource-fact-locator-extractors.d.ts +0 -8
  285. package/dist/lib/design-resource-fact-locator-extractors.js +0 -108
  286. package/dist/lib/design-resource-fact-locator-resolver.d.ts +0 -3
  287. package/dist/lib/design-resource-fact-locator-resolver.js +0 -112
  288. package/dist/lib/design-resource-fact-locator-validation.d.ts +0 -5
  289. package/dist/lib/design-resource-fact-locator-validation.js +0 -16
  290. package/dist/lib/design-resource-fact-manifest-catalog.d.ts +0 -4
  291. package/dist/lib/design-resource-fact-manifest-catalog.js +0 -249
  292. package/dist/lib/design-resource-fact-manifest-model.d.ts +0 -91
  293. package/dist/lib/design-resource-fact-manifest-model.js +0 -21
  294. package/dist/lib/design-resource-fact-manifest-shape-axes.d.ts +0 -6
  295. package/dist/lib/design-resource-fact-manifest-shape-axes.js +0 -159
  296. package/dist/lib/design-resource-fact-manifest-shape-evidence.d.ts +0 -4
  297. package/dist/lib/design-resource-fact-manifest-shape-evidence.js +0 -59
  298. package/dist/lib/design-resource-fact-manifest-shape-facts.d.ts +0 -4
  299. package/dist/lib/design-resource-fact-manifest-shape-facts.js +0 -109
  300. package/dist/lib/design-resource-fact-manifest-shape-inspector.d.ts +0 -5
  301. package/dist/lib/design-resource-fact-manifest-shape-inspector.js +0 -144
  302. package/dist/lib/design-resource-fact-manifest-shape.d.ts +0 -7
  303. package/dist/lib/design-resource-fact-manifest-shape.js +0 -75
  304. package/dist/lib/design-resource-fact-manifest-types.d.ts +0 -3
  305. package/dist/lib/design-resource-fact-manifest-types.js +0 -3
  306. package/dist/lib/design-resource-fact-manifest-universe.d.ts +0 -5
  307. package/dist/lib/design-resource-fact-manifest-universe.js +0 -50
  308. package/dist/lib/design-resource-fact-manifest-validation.d.ts +0 -5
  309. package/dist/lib/design-resource-fact-manifest-validation.js +0 -111
  310. package/dist/lib/design-resource-fact-policy.d.ts +0 -43
  311. package/dist/lib/design-resource-fact-policy.js +0 -106
  312. package/dist/lib/design-resource-fact-property-methods.d.ts +0 -3
  313. package/dist/lib/design-resource-fact-property-methods.js +0 -158
  314. package/dist/lib/design-resource-fact-shape-primitives.d.ts +0 -3
  315. package/dist/lib/design-resource-fact-shape-primitives.js +0 -18
  316. package/dist/lib/design-resource-fact-types.d.ts +0 -164
  317. package/dist/lib/design-resource-fact-universe-assets.d.ts +0 -4
  318. package/dist/lib/design-resource-fact-universe-assets.js +0 -71
  319. package/dist/lib/design-resource-fact-universe-catalog.d.ts +0 -4
  320. package/dist/lib/design-resource-fact-universe-catalog.js +0 -161
  321. package/dist/lib/design-resource-fact-universe-conditions.d.ts +0 -2
  322. package/dist/lib/design-resource-fact-universe-conditions.js +0 -92
  323. package/dist/lib/design-resource-fact-universe-facts.d.ts +0 -4
  324. package/dist/lib/design-resource-fact-universe-facts.js +0 -108
  325. package/dist/lib/design-resource-fact-universe-helpers.d.ts +0 -30
  326. package/dist/lib/design-resource-fact-universe-helpers.js +0 -171
  327. package/dist/lib/design-resource-fact-universe-inspector.d.ts +0 -7
  328. package/dist/lib/design-resource-fact-universe-inspector.js +0 -119
  329. package/dist/lib/design-resource-fact-universe-proof.d.ts +0 -4
  330. package/dist/lib/design-resource-fact-universe-proof.js +0 -113
  331. package/dist/lib/design-resource-fact-universe-subjects.d.ts +0 -5
  332. package/dist/lib/design-resource-fact-universe-subjects.js +0 -97
  333. package/dist/lib/design-resource-fact-universe-variations.d.ts +0 -2
  334. package/dist/lib/design-resource-fact-universe-variations.js +0 -75
  335. package/dist/lib/design-resource-fact-value-validation.d.ts +0 -2
  336. package/dist/lib/design-resource-fact-value-validation.js +0 -80
  337. package/dist/lib/design-resource-handoff-bundle-draft.d.ts +0 -11
  338. package/dist/lib/design-resource-handoff-bundle-draft.js +0 -40
  339. package/dist/lib/design-resource-handoff-bundle.d.ts +0 -31
  340. package/dist/lib/design-resource-handoff-bundle.js +0 -152
  341. package/dist/lib/design-resource-handoff-file-primitives.d.ts +0 -4
  342. package/dist/lib/design-resource-handoff-file-primitives.js +0 -16
  343. package/dist/lib/design-resource-handoff-file-validation.d.ts +0 -2
  344. package/dist/lib/design-resource-handoff-file-validation.js +0 -47
  345. package/dist/lib/design-resource-handoff-input-types.d.ts +0 -14
  346. package/dist/lib/design-resource-handoff-manifest-projection.d.ts +0 -4
  347. package/dist/lib/design-resource-handoff-manifest-projection.js +0 -38
  348. package/dist/lib/design-resource-handoff-parser.d.ts +0 -8
  349. package/dist/lib/design-resource-handoff-parser.js +0 -49
  350. package/dist/lib/design-resource-handoff-policy.d.ts +0 -4
  351. package/dist/lib/design-resource-handoff-policy.js +0 -143
  352. package/dist/lib/design-resource-handoff-set-integrity.d.ts +0 -8
  353. package/dist/lib/design-resource-handoff-set-integrity.js +0 -94
  354. package/dist/lib/design-resource-handoff-shape-evidence.d.ts +0 -6
  355. package/dist/lib/design-resource-handoff-shape-evidence.js +0 -187
  356. package/dist/lib/design-resource-handoff-shape-primitives.d.ts +0 -14
  357. package/dist/lib/design-resource-handoff-shape-primitives.js +0 -70
  358. package/dist/lib/design-resource-handoff-shape-structure.d.ts +0 -5
  359. package/dist/lib/design-resource-handoff-shape-structure.js +0 -239
  360. package/dist/lib/design-resource-handoff-shape.d.ts +0 -6
  361. package/dist/lib/design-resource-handoff-shape.js +0 -180
  362. package/dist/lib/design-resource-handoff-snapshot.d.ts +0 -6
  363. package/dist/lib/design-resource-handoff-snapshot.js +0 -25
  364. package/dist/lib/design-resource-handoff-types.d.ts +0 -261
  365. package/dist/lib/design-resource-handoff-types.js +0 -68
  366. package/dist/lib/design-resource-handoff-validation-coverage.d.ts +0 -4
  367. package/dist/lib/design-resource-handoff-validation-coverage.js +0 -223
  368. package/dist/lib/design-resource-handoff-validation-fact-cells.d.ts +0 -2
  369. package/dist/lib/design-resource-handoff-validation-fact-cells.js +0 -60
  370. package/dist/lib/design-resource-handoff-validation-fact-records.d.ts +0 -2
  371. package/dist/lib/design-resource-handoff-validation-fact-records.js +0 -90
  372. package/dist/lib/design-resource-handoff-validation-facts.d.ts +0 -2
  373. package/dist/lib/design-resource-handoff-validation-facts.js +0 -13
  374. package/dist/lib/design-resource-handoff-validation-primitives.d.ts +0 -11
  375. package/dist/lib/design-resource-handoff-validation-primitives.js +0 -26
  376. package/dist/lib/design-resource-handoff-validation-proofs.d.ts +0 -2
  377. package/dist/lib/design-resource-handoff-validation-proofs.js +0 -67
  378. package/dist/lib/design-resource-handoff-validation-resource-closure.d.ts +0 -3
  379. package/dist/lib/design-resource-handoff-validation-resource-closure.js +0 -88
  380. package/dist/lib/design-resource-handoff-validation-structure.d.ts +0 -6
  381. package/dist/lib/design-resource-handoff-validation-structure.js +0 -124
  382. package/dist/lib/design-resource-handoff-validation.d.ts +0 -8
  383. package/dist/lib/design-resource-handoff-validation.js +0 -165
  384. package/dist/lib/design-resource-handoff-web-dependency-validation.d.ts +0 -6
  385. package/dist/lib/design-resource-handoff-web-dependency-validation.js +0 -130
  386. package/dist/lib/design-resource-implementation-feasibility-model.d.ts +0 -35
  387. package/dist/lib/design-resource-implementation-feasibility-model.js +0 -62
  388. package/dist/lib/design-resource-implementation-feasibility-shape-sections.d.ts +0 -43
  389. package/dist/lib/design-resource-implementation-feasibility-shape-sections.js +0 -142
  390. package/dist/lib/design-resource-implementation-feasibility-shape.d.ts +0 -4
  391. package/dist/lib/design-resource-implementation-feasibility-shape.js +0 -154
  392. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.d.ts +0 -24
  393. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.js +0 -106
  394. package/dist/lib/design-resource-implementation-feasibility-source-decision.d.ts +0 -21
  395. package/dist/lib/design-resource-implementation-feasibility-source-decision.js +0 -75
  396. package/dist/lib/design-resource-implementation-feasibility-types.d.ts +0 -135
  397. package/dist/lib/design-resource-implementation-feasibility-types.js +0 -37
  398. package/dist/lib/design-resource-implementation-feasibility-validation-cells.d.ts +0 -5
  399. package/dist/lib/design-resource-implementation-feasibility-validation-cells.js +0 -125
  400. package/dist/lib/design-resource-implementation-feasibility-validation-document.d.ts +0 -4
  401. package/dist/lib/design-resource-implementation-feasibility-validation-document.js +0 -167
  402. package/dist/lib/design-resource-implementation-feasibility-validation-facts.d.ts +0 -3
  403. package/dist/lib/design-resource-implementation-feasibility-validation-facts.js +0 -76
  404. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.d.ts +0 -8
  405. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.js +0 -76
  406. package/dist/lib/design-resource-implementation-feasibility-validation-support.d.ts +0 -10
  407. package/dist/lib/design-resource-implementation-feasibility-validation-support.js +0 -75
  408. package/dist/lib/design-resource-implementation-feasibility-validation.d.ts +0 -3
  409. package/dist/lib/design-resource-implementation-feasibility-validation.js +0 -138
  410. package/dist/lib/design-resource-reconciliation-codec.d.ts +0 -2
  411. package/dist/lib/design-resource-reconciliation-codec.js +0 -174
  412. package/dist/lib/design-resource-reconciliation-types.d.ts +0 -62
  413. package/dist/lib/design-resource-reconciliation.d.ts +0 -3
  414. package/dist/lib/design-resource-reconciliation.js +0 -224
  415. package/dist/lib/design-resource-recovery-authority-policy.d.ts +0 -8
  416. package/dist/lib/design-resource-recovery-authority-policy.js +0 -123
  417. package/dist/lib/design-resource-recovery-catalog-resources.d.ts +0 -6
  418. package/dist/lib/design-resource-recovery-catalog-resources.js +0 -121
  419. package/dist/lib/design-resource-recovery-catalog-shape.d.ts +0 -3
  420. package/dist/lib/design-resource-recovery-catalog-shape.js +0 -104
  421. package/dist/lib/design-resource-recovery-catalog.d.ts +0 -9
  422. package/dist/lib/design-resource-recovery-catalog.js +0 -103
  423. package/dist/lib/design-resource-recovery-cleanup.d.ts +0 -2
  424. package/dist/lib/design-resource-recovery-cleanup.js +0 -11
  425. package/dist/lib/design-resource-recovery-codec-primitives.d.ts +0 -19
  426. package/dist/lib/design-resource-recovery-codec-primitives.js +0 -92
  427. package/dist/lib/design-resource-recovery-codec.d.ts +0 -4
  428. package/dist/lib/design-resource-recovery-codec.js +0 -93
  429. package/dist/lib/design-resource-recovery-current.d.ts +0 -9
  430. package/dist/lib/design-resource-recovery-current.js +0 -41
  431. package/dist/lib/design-resource-recovery-delta-policy.d.ts +0 -5
  432. package/dist/lib/design-resource-recovery-delta-policy.js +0 -108
  433. package/dist/lib/design-resource-recovery-files.d.ts +0 -37
  434. package/dist/lib/design-resource-recovery-files.js +0 -204
  435. package/dist/lib/design-resource-recovery-final-disposition-shape.d.ts +0 -2
  436. package/dist/lib/design-resource-recovery-final-disposition-shape.js +0 -47
  437. package/dist/lib/design-resource-recovery-patch-types.d.ts +0 -54
  438. package/dist/lib/design-resource-recovery-replay.d.ts +0 -7
  439. package/dist/lib/design-resource-recovery-replay.js +0 -112
  440. package/dist/lib/design-resource-recovery-repository-bindings.d.ts +0 -9
  441. package/dist/lib/design-resource-recovery-repository-bindings.js +0 -49
  442. package/dist/lib/design-resource-recovery-schema.d.ts +0 -5
  443. package/dist/lib/design-resource-recovery-schema.js +0 -5
  444. package/dist/lib/design-resource-recovery-shape.d.ts +0 -10
  445. package/dist/lib/design-resource-recovery-shape.js +0 -184
  446. package/dist/lib/design-resource-recovery-source-authority.d.ts +0 -5
  447. package/dist/lib/design-resource-recovery-source-authority.js +0 -219
  448. package/dist/lib/design-resource-recovery-text.d.ts +0 -17
  449. package/dist/lib/design-resource-recovery-text.js +0 -186
  450. package/dist/lib/design-resource-recovery-types.d.ts +0 -197
  451. package/dist/lib/design-resource-recovery-writeback-policy.d.ts +0 -5
  452. package/dist/lib/design-resource-recovery-writeback-policy.js +0 -326
  453. package/dist/lib/design-resource-recovery-writeback-shape.d.ts +0 -6
  454. package/dist/lib/design-resource-recovery-writeback-shape.js +0 -155
  455. package/dist/lib/design-resource-recovery.d.ts +0 -44
  456. package/dist/lib/design-resource-recovery.js +0 -216
  457. package/dist/lib/design-resource-symbolic-applicability-authority.d.ts +0 -7
  458. package/dist/lib/design-resource-symbolic-applicability-authority.js +0 -19
  459. package/dist/lib/design-resource-symbolic-applicability-policy.d.ts +0 -12
  460. package/dist/lib/design-resource-symbolic-applicability-policy.js +0 -79
  461. package/dist/lib/design-resource-symbolic-applicability-profiles.d.ts +0 -8
  462. package/dist/lib/design-resource-symbolic-applicability-profiles.js +0 -55
  463. package/dist/lib/design-resource-symbolic-applicability-shape.d.ts +0 -2
  464. package/dist/lib/design-resource-symbolic-applicability-shape.js +0 -76
  465. package/dist/lib/design-resource-symbolic-applicability-validation.d.ts +0 -7
  466. package/dist/lib/design-resource-symbolic-applicability-validation.js +0 -128
  467. package/dist/lib/design-resource-symbolic-compilation.d.ts +0 -3
  468. package/dist/lib/design-resource-symbolic-compilation.js +0 -13
  469. package/dist/lib/design-resource-symbolic-denotation.d.ts +0 -3
  470. package/dist/lib/design-resource-symbolic-denotation.js +0 -167
  471. package/dist/lib/design-resource-symbolic-disposition-validation.d.ts +0 -4
  472. package/dist/lib/design-resource-symbolic-disposition-validation.js +0 -28
  473. package/dist/lib/design-resource-symbolic-fact-policy.d.ts +0 -12
  474. package/dist/lib/design-resource-symbolic-fact-policy.js +0 -12
  475. package/dist/lib/design-resource-symbolic-fact-shape.d.ts +0 -3
  476. package/dist/lib/design-resource-symbolic-fact-shape.js +0 -140
  477. package/dist/lib/design-resource-symbolic-fact-types.d.ts +0 -218
  478. package/dist/lib/design-resource-symbolic-fact-validation.d.ts +0 -3
  479. package/dist/lib/design-resource-symbolic-fact-validation.js +0 -99
  480. package/dist/lib/design-resource-symbolic-indexes.d.ts +0 -23
  481. package/dist/lib/design-resource-symbolic-indexes.js +0 -54
  482. package/dist/lib/design-resource-symbolic-manifest-shape.d.ts +0 -3
  483. package/dist/lib/design-resource-symbolic-manifest-shape.js +0 -155
  484. package/dist/lib/design-resource-symbolic-manifest-validation.d.ts +0 -6
  485. package/dist/lib/design-resource-symbolic-manifest-validation.js +0 -132
  486. package/dist/lib/design-resource-symbolic-noninterference-artifact.d.ts +0 -33
  487. package/dist/lib/design-resource-symbolic-noninterference-artifact.js +0 -110
  488. package/dist/lib/design-resource-symbolic-noninterference-equivalence.d.ts +0 -3
  489. package/dist/lib/design-resource-symbolic-noninterference-equivalence.js +0 -77
  490. package/dist/lib/design-resource-symbolic-noninterference-recompute.d.ts +0 -4
  491. package/dist/lib/design-resource-symbolic-noninterference-recompute.js +0 -146
  492. package/dist/lib/design-resource-symbolic-noninterference-scope.d.ts +0 -7
  493. package/dist/lib/design-resource-symbolic-noninterference-scope.js +0 -49
  494. package/dist/lib/design-resource-symbolic-noninterference-shape.d.ts +0 -2
  495. package/dist/lib/design-resource-symbolic-noninterference-shape.js +0 -152
  496. package/dist/lib/design-resource-symbolic-noninterference-types.d.ts +0 -103
  497. package/dist/lib/design-resource-symbolic-noninterference-types.js +0 -1
  498. package/dist/lib/design-resource-symbolic-noninterference-validation.d.ts +0 -5
  499. package/dist/lib/design-resource-symbolic-noninterference-validation.js +0 -62
  500. package/dist/lib/design-resource-symbolic-oracle-fingerprint.d.ts +0 -1
  501. package/dist/lib/design-resource-symbolic-oracle-fingerprint.js +0 -47
  502. package/dist/lib/design-resource-symbolic-predicate-shape.d.ts +0 -6
  503. package/dist/lib/design-resource-symbolic-predicate-shape.js +0 -123
  504. package/dist/lib/design-resource-symbolic-production-closure.d.ts +0 -4
  505. package/dist/lib/design-resource-symbolic-production-closure.js +0 -144
  506. package/dist/lib/design-resource-symbolic-proof-authority-validation.d.ts +0 -10
  507. package/dist/lib/design-resource-symbolic-proof-authority-validation.js +0 -68
  508. package/dist/lib/design-resource-symbolic-proof-validation.d.ts +0 -10
  509. package/dist/lib/design-resource-symbolic-proof-validation.js +0 -89
  510. package/dist/lib/design-resource-symbolic-region-validation.d.ts +0 -19
  511. package/dist/lib/design-resource-symbolic-region-validation.js +0 -146
  512. package/dist/lib/design-resource-symbolic-resource-validation.d.ts +0 -5
  513. package/dist/lib/design-resource-symbolic-resource-validation.js +0 -90
  514. package/dist/lib/design-resource-symbolic-rule-shape.d.ts +0 -27
  515. package/dist/lib/design-resource-symbolic-rule-shape.js +0 -158
  516. package/dist/lib/design-resource-symbolic-safety-validation.d.ts +0 -6
  517. package/dist/lib/design-resource-symbolic-safety-validation.js +0 -29
  518. package/dist/lib/design-resource-symbolic-source-ir-evaluation.d.ts +0 -19
  519. package/dist/lib/design-resource-symbolic-source-ir-evaluation.js +0 -74
  520. package/dist/lib/design-resource-symbolic-source-ir-evidence.d.ts +0 -44
  521. package/dist/lib/design-resource-symbolic-source-ir-evidence.js +0 -88
  522. package/dist/lib/design-resource-symbolic-source-ir-oracle.d.ts +0 -13
  523. package/dist/lib/design-resource-symbolic-source-ir-oracle.js +0 -96
  524. package/dist/lib/design-resource-symbolic-source-ir-proof.d.ts +0 -14
  525. package/dist/lib/design-resource-symbolic-source-ir-proof.js +0 -98
  526. package/dist/lib/design-resource-symbolic-source-ir-shape.d.ts +0 -2
  527. package/dist/lib/design-resource-symbolic-source-ir-shape.js +0 -38
  528. package/dist/lib/design-resource-symbolic-source-ir-types.d.ts +0 -17
  529. package/dist/lib/design-resource-symbolic-source-ir-types.js +0 -2
  530. package/dist/lib/design-resource-symbolic-static-dependency-validation.d.ts +0 -2
  531. package/dist/lib/design-resource-symbolic-static-dependency-validation.js +0 -83
  532. package/dist/lib/design-resource-symbolic-structural-closure-validation.d.ts +0 -6
  533. package/dist/lib/design-resource-symbolic-structural-closure-validation.js +0 -79
  534. package/dist/lib/design-resource-symbolic-validation-support.d.ts +0 -29
  535. package/dist/lib/design-resource-symbolic-validation-support.js +0 -111
  536. package/dist/lib/design-resource-v1-capacity-header.d.ts +0 -8
  537. package/dist/lib/design-resource-v1-capacity-header.js +0 -231
  538. package/dist/lib/design-resource-v1-capacity.d.ts +0 -5
  539. package/dist/lib/design-resource-v1-capacity.js +0 -45
  540. package/dist/lib/execution-target-capabilities.d.ts +0 -2
  541. package/dist/lib/execution-target-capabilities.js +0 -45
  542. package/dist/lib/legacy-managed-scan.d.ts +0 -2
  543. package/dist/lib/legacy-managed-scan.js +0 -95
  544. package/dist/lib/legacy-sdlc-migration.d.ts +0 -2
  545. package/dist/lib/legacy-sdlc-migration.js +0 -199
  546. package/dist/lib/long-task-acceptance-reference.d.ts +0 -22
  547. package/dist/lib/long-task-acceptance-reference.js +0 -46
  548. package/dist/lib/long-task-acceptance-shape.d.ts +0 -5
  549. package/dist/lib/long-task-acceptance-shape.js +0 -198
  550. package/dist/lib/long-task-activation-validation.d.ts +0 -21
  551. package/dist/lib/long-task-activation-validation.js +0 -243
  552. package/dist/lib/long-task-admitted-observation-records.d.ts +0 -25
  553. package/dist/lib/long-task-admitted-observation-records.js +0 -40
  554. package/dist/lib/long-task-admitted-observation.d.ts +0 -93
  555. package/dist/lib/long-task-admitted-observation.js +0 -201
  556. package/dist/lib/long-task-applicability-shape.d.ts +0 -4
  557. package/dist/lib/long-task-applicability-shape.js +0 -54
  558. package/dist/lib/long-task-artifacts.d.ts +0 -6
  559. package/dist/lib/long-task-artifacts.js +0 -35
  560. package/dist/lib/long-task-assertions-v2.d.ts +0 -22
  561. package/dist/lib/long-task-assertions-v2.js +0 -220
  562. package/dist/lib/long-task-authoring-authority-preview.d.ts +0 -5
  563. package/dist/lib/long-task-authoring-authority-preview.js +0 -87
  564. package/dist/lib/long-task-authoring-preflight-diagnostics.d.ts +0 -8
  565. package/dist/lib/long-task-authoring-preflight-diagnostics.js +0 -191
  566. package/dist/lib/long-task-authoring-preflight-repair-order.d.ts +0 -8
  567. package/dist/lib/long-task-authoring-preflight-repair-order.js +0 -98
  568. package/dist/lib/long-task-authoring-preflight-types.d.ts +0 -46
  569. package/dist/lib/long-task-authoring-preflight-types.js +0 -38
  570. package/dist/lib/long-task-authoring-preflight.d.ts +0 -3
  571. package/dist/lib/long-task-authoring-preflight.js +0 -86
  572. package/dist/lib/long-task-authority-material-diff.d.ts +0 -17
  573. package/dist/lib/long-task-authority-material-diff.js +0 -221
  574. package/dist/lib/long-task-authority-materials.d.ts +0 -7
  575. package/dist/lib/long-task-authority-materials.js +0 -166
  576. package/dist/lib/long-task-authority-policy.d.ts +0 -287
  577. package/dist/lib/long-task-authority-policy.js +0 -307
  578. package/dist/lib/long-task-authority-revision-analysis.d.ts +0 -34
  579. package/dist/lib/long-task-authority-revision-analysis.js +0 -121
  580. package/dist/lib/long-task-authority-revision-brief.d.ts +0 -3
  581. package/dist/lib/long-task-authority-revision-brief.js +0 -76
  582. package/dist/lib/long-task-authority-revision-details.d.ts +0 -21
  583. package/dist/lib/long-task-authority-revision-details.js +0 -204
  584. package/dist/lib/long-task-authority-revision-diagnosis.d.ts +0 -24
  585. package/dist/lib/long-task-authority-revision-diagnosis.js +0 -149
  586. package/dist/lib/long-task-authority-revision-enforcement.d.ts +0 -5
  587. package/dist/lib/long-task-authority-revision-enforcement.js +0 -53
  588. package/dist/lib/long-task-authority-revision-summary.d.ts +0 -14
  589. package/dist/lib/long-task-authority-revision-summary.js +0 -246
  590. package/dist/lib/long-task-authority-revision-types.d.ts +0 -119
  591. package/dist/lib/long-task-authority-revision-types.js +0 -1
  592. package/dist/lib/long-task-authority-revision.d.ts +0 -4
  593. package/dist/lib/long-task-authority-revision.js +0 -156
  594. package/dist/lib/long-task-authority-transition-policy.d.ts +0 -62
  595. package/dist/lib/long-task-authority-transition-policy.js +0 -62
  596. package/dist/lib/long-task-authority-types.d.ts +0 -129
  597. package/dist/lib/long-task-authority-types.js +0 -1
  598. package/dist/lib/long-task-authority.d.ts +0 -7
  599. package/dist/lib/long-task-authority.js +0 -200
  600. package/dist/lib/long-task-boundary-check.d.ts +0 -15
  601. package/dist/lib/long-task-boundary-check.js +0 -9
  602. package/dist/lib/long-task-check-evidence-decoder.d.ts +0 -3
  603. package/dist/lib/long-task-check-evidence-decoder.js +0 -84
  604. package/dist/lib/long-task-check-execution-policy.d.ts +0 -21
  605. package/dist/lib/long-task-check-execution-policy.js +0 -48
  606. package/dist/lib/long-task-check-runner.d.ts +0 -2
  607. package/dist/lib/long-task-check-runner.js +0 -307
  608. package/dist/lib/long-task-check-shape.d.ts +0 -2
  609. package/dist/lib/long-task-check-shape.js +0 -171
  610. package/dist/lib/long-task-claim-definitions.d.ts +0 -7
  611. package/dist/lib/long-task-claim-definitions.js +0 -85
  612. package/dist/lib/long-task-claim-proof-policy.d.ts +0 -4
  613. package/dist/lib/long-task-claim-proof-policy.js +0 -57
  614. package/dist/lib/long-task-claims.d.ts +0 -28
  615. package/dist/lib/long-task-claims.js +0 -373
  616. package/dist/lib/long-task-codex-agent-profile.d.ts +0 -42
  617. package/dist/lib/long-task-codex-agent-profile.js +0 -276
  618. package/dist/lib/long-task-command-process.d.ts +0 -9
  619. package/dist/lib/long-task-command-process.js +0 -175
  620. package/dist/lib/long-task-compact-authoring-projections.d.ts +0 -12
  621. package/dist/lib/long-task-compact-authoring-projections.js +0 -67
  622. package/dist/lib/long-task-compact-authoring.d.ts +0 -3
  623. package/dist/lib/long-task-compact-authoring.js +0 -173
  624. package/dist/lib/long-task-compact-carrier.d.ts +0 -7
  625. package/dist/lib/long-task-compact-carrier.js +0 -132
  626. package/dist/lib/long-task-compact-parser.d.ts +0 -14
  627. package/dist/lib/long-task-compact-parser.js +0 -123
  628. package/dist/lib/long-task-compact-primitives.d.ts +0 -22
  629. package/dist/lib/long-task-compact-primitives.js +0 -132
  630. package/dist/lib/long-task-compact-projections.d.ts +0 -4
  631. package/dist/lib/long-task-compact-projections.js +0 -153
  632. package/dist/lib/long-task-compact-structure-targets.d.ts +0 -2
  633. package/dist/lib/long-task-compact-structure-targets.js +0 -91
  634. package/dist/lib/long-task-conformance-policy.d.ts +0 -5
  635. package/dist/lib/long-task-conformance-policy.js +0 -37
  636. package/dist/lib/long-task-context-authority-topology.d.ts +0 -7
  637. package/dist/lib/long-task-context-authority-topology.js +0 -37
  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 -266
  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 -13
  649. package/dist/lib/long-task-counterfactual-sandbox.js +0 -115
  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.d.ts +0 -13
  653. package/dist/lib/long-task-delivery-compiler.js +0 -155
  654. package/dist/lib/long-task-delivery-parser.d.ts +0 -14
  655. package/dist/lib/long-task-delivery-parser.js +0 -135
  656. package/dist/lib/long-task-delivery-preflight.d.ts +0 -5
  657. package/dist/lib/long-task-delivery-preflight.js +0 -175
  658. package/dist/lib/long-task-delivery-shape.d.ts +0 -6
  659. package/dist/lib/long-task-delivery-shape.js +0 -6
  660. package/dist/lib/long-task-delivery-types.d.ts +0 -13
  661. package/dist/lib/long-task-delivery-types.js +0 -13
  662. package/dist/lib/long-task-delivery-validation.d.ts +0 -6
  663. package/dist/lib/long-task-delivery-validation.js +0 -252
  664. package/dist/lib/long-task-design-feasibility-binding-owners.d.ts +0 -6
  665. package/dist/lib/long-task-design-feasibility-binding-owners.js +0 -52
  666. package/dist/lib/long-task-design-feasibility-binding.d.ts +0 -13
  667. package/dist/lib/long-task-design-feasibility-binding.js +0 -114
  668. package/dist/lib/long-task-design-feasibility-source-closure.d.ts +0 -11
  669. package/dist/lib/long-task-design-feasibility-source-closure.js +0 -78
  670. package/dist/lib/long-task-design-resource-handoff.d.ts +0 -18
  671. package/dist/lib/long-task-design-resource-handoff.js +0 -241
  672. package/dist/lib/long-task-design-resource-method-binding.d.ts +0 -15
  673. package/dist/lib/long-task-design-resource-method-binding.js +0 -297
  674. package/dist/lib/long-task-design-target-capabilities.d.ts +0 -14
  675. package/dist/lib/long-task-design-target-capabilities.js +0 -126
  676. package/dist/lib/long-task-evidence-adapter-policy.d.ts +0 -4
  677. package/dist/lib/long-task-evidence-adapter-policy.js +0 -15
  678. package/dist/lib/long-task-evidence-adapter-types.d.ts +0 -1
  679. package/dist/lib/long-task-evidence-adapter-types.js +0 -1
  680. package/dist/lib/long-task-evidence-capability-codec.d.ts +0 -96
  681. package/dist/lib/long-task-evidence-capability-codec.js +0 -892
  682. package/dist/lib/long-task-evidence-capability-policy.d.ts +0 -9
  683. package/dist/lib/long-task-evidence-capability-policy.js +0 -345
  684. package/dist/lib/long-task-evidence-capability-runtime.d.ts +0 -5
  685. package/dist/lib/long-task-evidence-capability-runtime.js +0 -580
  686. package/dist/lib/long-task-evidence-capability-types.d.ts +0 -276
  687. package/dist/lib/long-task-evidence-capability-types.js +0 -1
  688. package/dist/lib/long-task-evidence-findings.d.ts +0 -5
  689. package/dist/lib/long-task-evidence-findings.js +0 -120
  690. package/dist/lib/long-task-evidence-sensitivity-policy.d.ts +0 -13
  691. package/dist/lib/long-task-evidence-sensitivity-policy.js +0 -166
  692. package/dist/lib/long-task-evidence-v2.d.ts +0 -5
  693. package/dist/lib/long-task-evidence-v2.js +0 -525
  694. package/dist/lib/long-task-exact-comparison.d.ts +0 -16
  695. package/dist/lib/long-task-exact-comparison.js +0 -28
  696. package/dist/lib/long-task-execution-observation.d.ts +0 -24
  697. package/dist/lib/long-task-execution-observation.js +0 -332
  698. package/dist/lib/long-task-explain-acceptance-link.d.ts +0 -50
  699. package/dist/lib/long-task-explain-acceptance-link.js +0 -100
  700. package/dist/lib/long-task-explain-claim-links.d.ts +0 -47
  701. package/dist/lib/long-task-explain-claim-links.js +0 -90
  702. package/dist/lib/long-task-explain-source-links.d.ts +0 -99
  703. package/dist/lib/long-task-explain-source-links.js +0 -51
  704. package/dist/lib/long-task-final-integrity.d.ts +0 -16
  705. package/dist/lib/long-task-final-integrity.js +0 -98
  706. package/dist/lib/long-task-final-v2.d.ts +0 -2
  707. package/dist/lib/long-task-final-v2.js +0 -151
  708. package/dist/lib/long-task-finding-context.d.ts +0 -3
  709. package/dist/lib/long-task-finding-context.js +0 -63
  710. package/dist/lib/long-task-freshness.d.ts +0 -3
  711. package/dist/lib/long-task-freshness.js +0 -80
  712. package/dist/lib/long-task-hook-install.d.ts +0 -26
  713. package/dist/lib/long-task-hook-install.js +0 -381
  714. package/dist/lib/long-task-hook-preflight.d.ts +0 -7
  715. package/dist/lib/long-task-hook-preflight.js +0 -58
  716. package/dist/lib/long-task-json-pointer-observation.d.ts +0 -59
  717. package/dist/lib/long-task-json-pointer-observation.js +0 -184
  718. package/dist/lib/long-task-observation-artifact.d.ts +0 -8
  719. package/dist/lib/long-task-observation-artifact.js +0 -58
  720. package/dist/lib/long-task-observation-authority.d.ts +0 -17
  721. package/dist/lib/long-task-observation-authority.js +0 -348
  722. package/dist/lib/long-task-observation-ownership.d.ts +0 -2
  723. package/dist/lib/long-task-observation-ownership.js +0 -22
  724. package/dist/lib/long-task-outcome-parser.d.ts +0 -4
  725. package/dist/lib/long-task-outcome-parser.js +0 -143
  726. package/dist/lib/long-task-paths.d.ts +0 -48
  727. package/dist/lib/long-task-paths.js +0 -414
  728. package/dist/lib/long-task-playwright-capability-records.d.ts +0 -7
  729. package/dist/lib/long-task-playwright-capability-records.js +0 -218
  730. package/dist/lib/long-task-playwright-case-evidence.d.ts +0 -46
  731. package/dist/lib/long-task-playwright-case-evidence.js +0 -91
  732. package/dist/lib/long-task-playwright-case-primitives.d.ts +0 -28
  733. package/dist/lib/long-task-playwright-case-primitives.js +0 -143
  734. package/dist/lib/long-task-playwright-counterfactual-policy.d.ts +0 -7
  735. package/dist/lib/long-task-playwright-counterfactual-policy.js +0 -125
  736. package/dist/lib/long-task-playwright-evidence.d.ts +0 -8
  737. package/dist/lib/long-task-playwright-evidence.js +0 -147
  738. package/dist/lib/long-task-process-observation.d.ts +0 -6
  739. package/dist/lib/long-task-process-observation.js +0 -117
  740. package/dist/lib/long-task-process-runtime-closure.d.ts +0 -13
  741. package/dist/lib/long-task-process-runtime-closure.js +0 -207
  742. package/dist/lib/long-task-process-table.d.ts +0 -12
  743. package/dist/lib/long-task-process-table.js +0 -119
  744. package/dist/lib/long-task-process-tree.d.ts +0 -9
  745. package/dist/lib/long-task-process-tree.js +0 -138
  746. package/dist/lib/long-task-product-shape.d.ts +0 -8
  747. package/dist/lib/long-task-product-shape.js +0 -197
  748. package/dist/lib/long-task-progress.d.ts +0 -4
  749. package/dist/lib/long-task-progress.js +0 -120
  750. package/dist/lib/long-task-protected-files.d.ts +0 -1
  751. package/dist/lib/long-task-protected-files.js +0 -1
  752. package/dist/lib/long-task-required-proof-surfaces.d.ts +0 -2
  753. package/dist/lib/long-task-required-proof-surfaces.js +0 -13
  754. package/dist/lib/long-task-requirement-shape.d.ts +0 -2
  755. package/dist/lib/long-task-requirement-shape.js +0 -21
  756. package/dist/lib/long-task-risk-surfaces.d.ts +0 -2
  757. package/dist/lib/long-task-risk-surfaces.js +0 -60
  758. package/dist/lib/long-task-risk-types.d.ts +0 -5
  759. package/dist/lib/long-task-risk-types.js +0 -12
  760. package/dist/lib/long-task-risk.d.ts +0 -9
  761. package/dist/lib/long-task-risk.js +0 -137
  762. package/dist/lib/long-task-root-shape.d.ts +0 -5
  763. package/dist/lib/long-task-root-shape.js +0 -182
  764. package/dist/lib/long-task-runner-environment.d.ts +0 -7
  765. package/dist/lib/long-task-runner-environment.js +0 -57
  766. package/dist/lib/long-task-runner-files.d.ts +0 -3
  767. package/dist/lib/long-task-runner-files.js +0 -39
  768. package/dist/lib/long-task-runner-freeze.d.ts +0 -4
  769. package/dist/lib/long-task-runner-freeze.js +0 -303
  770. package/dist/lib/long-task-runtime-types.d.ts +0 -352
  771. package/dist/lib/long-task-runtime-types.js +0 -1
  772. package/dist/lib/long-task-scoped-binding.d.ts +0 -13
  773. package/dist/lib/long-task-scoped-binding.js +0 -11
  774. package/dist/lib/long-task-semantic-assurance-policy.d.ts +0 -4
  775. package/dist/lib/long-task-semantic-assurance-policy.js +0 -52
  776. package/dist/lib/long-task-semantic-contract-types.d.ts +0 -54
  777. package/dist/lib/long-task-semantic-contract-types.js +0 -1
  778. package/dist/lib/long-task-semantic-drift-migration.d.ts +0 -3
  779. package/dist/lib/long-task-semantic-drift-migration.js +0 -104
  780. package/dist/lib/long-task-semantic-fact-binding-types.d.ts +0 -65
  781. package/dist/lib/long-task-semantic-fact-binding-types.js +0 -1
  782. package/dist/lib/long-task-semantic-fact-closure-primitives.d.ts +0 -5
  783. package/dist/lib/long-task-semantic-fact-closure-primitives.js +0 -43
  784. package/dist/lib/long-task-semantic-fact-closure.d.ts +0 -13
  785. package/dist/lib/long-task-semantic-fact-closure.js +0 -51
  786. package/dist/lib/long-task-semantic-fact-contract-closure.d.ts +0 -4
  787. package/dist/lib/long-task-semantic-fact-contract-closure.js +0 -36
  788. package/dist/lib/long-task-semantic-fact-contract-facts.d.ts +0 -4
  789. package/dist/lib/long-task-semantic-fact-contract-facts.js +0 -33
  790. package/dist/lib/long-task-semantic-fact-contract-proofs.d.ts +0 -4
  791. package/dist/lib/long-task-semantic-fact-contract-proofs.js +0 -106
  792. package/dist/lib/long-task-semantic-fact-evidence.d.ts +0 -25
  793. package/dist/lib/long-task-semantic-fact-evidence.js +0 -225
  794. package/dist/lib/long-task-semantic-fact-input-closure.d.ts +0 -4
  795. package/dist/lib/long-task-semantic-fact-input-closure.js +0 -101
  796. package/dist/lib/long-task-semantic-fact-provenance-closure.d.ts +0 -4
  797. package/dist/lib/long-task-semantic-fact-provenance-closure.js +0 -140
  798. package/dist/lib/long-task-semantic-fact-shape.d.ts +0 -3
  799. package/dist/lib/long-task-semantic-fact-shape.js +0 -100
  800. package/dist/lib/long-task-semantic-fact-value-closure.d.ts +0 -3
  801. package/dist/lib/long-task-semantic-fact-value-closure.js +0 -110
  802. package/dist/lib/long-task-semantic-mutation.d.ts +0 -7
  803. package/dist/lib/long-task-semantic-mutation.js +0 -81
  804. package/dist/lib/long-task-shape-primitives.d.ts +0 -21
  805. package/dist/lib/long-task-shape-primitives.js +0 -116
  806. package/dist/lib/long-task-source-authority-types.d.ts +0 -15
  807. package/dist/lib/long-task-source-authority-types.js +0 -1
  808. package/dist/lib/long-task-source-claim-validation.d.ts +0 -5
  809. package/dist/lib/long-task-source-claim-validation.js +0 -99
  810. package/dist/lib/long-task-source-continuity.d.ts +0 -4
  811. package/dist/lib/long-task-source-continuity.js +0 -57
  812. package/dist/lib/long-task-source-inventory.d.ts +0 -2
  813. package/dist/lib/long-task-source-inventory.js +0 -21
  814. package/dist/lib/long-task-source-item-parser.d.ts +0 -11
  815. package/dist/lib/long-task-source-item-parser.js +0 -108
  816. package/dist/lib/long-task-source-markers.d.ts +0 -12
  817. package/dist/lib/long-task-source-markers.js +0 -146
  818. package/dist/lib/long-task-source-owned-sections.d.ts +0 -29
  819. package/dist/lib/long-task-source-owned-sections.js +0 -90
  820. package/dist/lib/long-task-source-shape.d.ts +0 -2
  821. package/dist/lib/long-task-source-shape.js +0 -56
  822. package/dist/lib/long-task-source-target-continuity.d.ts +0 -4
  823. package/dist/lib/long-task-source-target-continuity.js +0 -141
  824. package/dist/lib/long-task-source-target-index.d.ts +0 -15
  825. package/dist/lib/long-task-source-target-index.js +0 -91
  826. package/dist/lib/long-task-source-validation.d.ts +0 -3
  827. package/dist/lib/long-task-source-validation.js +0 -46
  828. package/dist/lib/long-task-stage-policy.d.ts +0 -4
  829. package/dist/lib/long-task-stage-policy.js +0 -126
  830. package/dist/lib/long-task-state.d.ts +0 -79
  831. package/dist/lib/long-task-state.js +0 -611
  832. package/dist/lib/long-task-static-observation-freeze.d.ts +0 -83
  833. package/dist/lib/long-task-static-observation-freeze.js +0 -428
  834. package/dist/lib/long-task-status-projection.d.ts +0 -24
  835. package/dist/lib/long-task-status-projection.js +0 -180
  836. package/dist/lib/long-task-status-v2.d.ts +0 -57
  837. package/dist/lib/long-task-status-v2.js +0 -351
  838. package/dist/lib/long-task-target-policy.d.ts +0 -6
  839. package/dist/lib/long-task-target-policy.js +0 -150
  840. package/dist/lib/long-task-technical-shape.d.ts +0 -3
  841. package/dist/lib/long-task-technical-shape.js +0 -44
  842. package/dist/lib/long-task-ui-design-policy.d.ts +0 -17
  843. package/dist/lib/long-task-ui-design-policy.js +0 -225
  844. package/dist/lib/long-task-ui-surface-policy.d.ts +0 -5
  845. package/dist/lib/long-task-ui-surface-policy.js +0 -112
  846. package/dist/lib/long-task-ui-surface-shape.d.ts +0 -2
  847. package/dist/lib/long-task-ui-surface-shape.js +0 -402
  848. package/dist/lib/long-task-ui-surface-types.d.ts +0 -134
  849. package/dist/lib/long-task-ui-surface-types.js +0 -1
  850. package/dist/lib/long-task-ui-surface-validation.d.ts +0 -13
  851. package/dist/lib/long-task-ui-surface-validation.js +0 -62
  852. package/dist/lib/long-task-verification-preview.d.ts +0 -65
  853. package/dist/lib/long-task-verification-preview.js +0 -120
  854. package/dist/lib/long-task-verifier-authority.d.ts +0 -12
  855. package/dist/lib/long-task-verifier-authority.js +0 -49
  856. package/dist/lib/long-task-verifier-dependency-closure.d.ts +0 -3
  857. package/dist/lib/long-task-verifier-dependency-closure.js +0 -183
  858. package/dist/lib/long-task-verifier-identity.d.ts +0 -2
  859. package/dist/lib/long-task-verifier-identity.js +0 -55
  860. package/dist/lib/long-task-verifier-v2.d.ts +0 -17
  861. package/dist/lib/long-task-verifier-v2.js +0 -330
  862. package/dist/lib/long-task-worker-selection.d.ts +0 -2
  863. package/dist/lib/long-task-worker-selection.js +0 -7
  864. package/dist/lib/long-task-workspace-manifest.d.ts +0 -8
  865. package/dist/lib/long-task-workspace-manifest.js +0 -173
  866. package/dist/lib/long-task-workspace-runtime-types.d.ts +0 -23
  867. package/dist/lib/long-task-workspace-runtime-types.js +0 -1
  868. package/dist/lib/long-task-workspace-scope.d.ts +0 -38
  869. package/dist/lib/long-task-workspace-scope.js +0 -123
  870. package/dist/lib/long-task-workspace-snapshot.d.ts +0 -8
  871. package/dist/lib/long-task-workspace-snapshot.js +0 -176
  872. package/dist/lib/long-task-workspace.d.ts +0 -5
  873. package/dist/lib/long-task-workspace.js +0 -4
  874. package/dist/lib/modularity-capability-migration.d.ts +0 -2
  875. package/dist/lib/modularity-capability-migration.js +0 -165
  876. package/dist/lib/modularity-python.d.ts +0 -7
  877. package/dist/lib/modularity-python.js +0 -191
  878. package/dist/lib/modularity.d.ts +0 -60
  879. package/dist/lib/modularity.js +0 -781
  880. package/dist/lib/profiles.d.ts +0 -13
  881. package/dist/lib/profiles.js +0 -65
  882. package/dist/lib/semantic-fact-base-types.d.ts +0 -14
  883. package/dist/lib/semantic-fact-base-types.js +0 -1
  884. package/dist/lib/semantic-fact-catalog.d.ts +0 -8
  885. package/dist/lib/semantic-fact-catalog.js +0 -191
  886. package/dist/lib/semantic-fact-compact-authoring.d.ts +0 -2
  887. package/dist/lib/semantic-fact-compact-authoring.js +0 -160
  888. package/dist/lib/semantic-fact-compact-capacity.d.ts +0 -9
  889. package/dist/lib/semantic-fact-compact-capacity.js +0 -40
  890. package/dist/lib/semantic-fact-compact-carrier.d.ts +0 -16
  891. package/dist/lib/semantic-fact-compact-carrier.js +0 -146
  892. package/dist/lib/semantic-fact-compact-parser.d.ts +0 -17
  893. package/dist/lib/semantic-fact-compact-parser.js +0 -168
  894. package/dist/lib/semantic-fact-compact-revision.d.ts +0 -11
  895. package/dist/lib/semantic-fact-compact-revision.js +0 -64
  896. package/dist/lib/semantic-fact-compact-support.d.ts +0 -23
  897. package/dist/lib/semantic-fact-compact-support.js +0 -159
  898. package/dist/lib/semantic-fact-condition-shape.d.ts +0 -48
  899. package/dist/lib/semantic-fact-condition-shape.js +0 -111
  900. package/dist/lib/semantic-fact-input-shape.d.ts +0 -34
  901. package/dist/lib/semantic-fact-input-shape.js +0 -111
  902. package/dist/lib/semantic-fact-inventory-types.d.ts +0 -147
  903. package/dist/lib/semantic-fact-inventory-types.js +0 -1
  904. package/dist/lib/semantic-fact-manifest-shape.d.ts +0 -4
  905. package/dist/lib/semantic-fact-manifest-shape.js +0 -135
  906. package/dist/lib/semantic-fact-manifest-types.d.ts +0 -58
  907. package/dist/lib/semantic-fact-manifest-types.js +0 -19
  908. package/dist/lib/semantic-fact-policy-authority.d.ts +0 -8
  909. package/dist/lib/semantic-fact-policy-authority.js +0 -79
  910. package/dist/lib/semantic-fact-policy-census.d.ts +0 -3
  911. package/dist/lib/semantic-fact-policy-census.js +0 -123
  912. package/dist/lib/semantic-fact-policy-condition-references.d.ts +0 -7
  913. package/dist/lib/semantic-fact-policy-condition-references.js +0 -19
  914. package/dist/lib/semantic-fact-policy-conditions.d.ts +0 -2
  915. package/dist/lib/semantic-fact-policy-conditions.js +0 -105
  916. package/dist/lib/semantic-fact-policy-facts.d.ts +0 -3
  917. package/dist/lib/semantic-fact-policy-facts.js +0 -73
  918. package/dist/lib/semantic-fact-policy-primitives.d.ts +0 -26
  919. package/dist/lib/semantic-fact-policy-primitives.js +0 -169
  920. package/dist/lib/semantic-fact-policy-proofs.d.ts +0 -2
  921. package/dist/lib/semantic-fact-policy-proofs.js +0 -75
  922. package/dist/lib/semantic-fact-policy-properties.d.ts +0 -3
  923. package/dist/lib/semantic-fact-policy-properties.js +0 -84
  924. package/dist/lib/semantic-fact-policy-units.d.ts +0 -4
  925. package/dist/lib/semantic-fact-policy-units.js +0 -103
  926. package/dist/lib/semantic-fact-policy.d.ts +0 -17
  927. package/dist/lib/semantic-fact-policy.js +0 -41
  928. package/dist/lib/semantic-fact-proof-shape.d.ts +0 -51
  929. package/dist/lib/semantic-fact-proof-shape.js +0 -121
  930. package/dist/lib/semantic-fact-proof-types.d.ts +0 -74
  931. package/dist/lib/semantic-fact-proof-types.js +0 -1
  932. package/dist/lib/semantic-fact-property-shape.d.ts +0 -29
  933. package/dist/lib/semantic-fact-property-shape.js +0 -77
  934. package/dist/lib/semantic-fact-shape-constants.d.ts +0 -3
  935. package/dist/lib/semantic-fact-shape-constants.js +0 -38
  936. package/dist/lib/semantic-fact-shape-primitives.d.ts +0 -15
  937. package/dist/lib/semantic-fact-shape-primitives.js +0 -68
  938. package/dist/lib/semantic-fact-source-parser.d.ts +0 -14
  939. package/dist/lib/semantic-fact-source-parser.js +0 -87
  940. package/dist/lib/semantic-fact-support-shape.d.ts +0 -21
  941. package/dist/lib/semantic-fact-support-shape.js +0 -59
  942. package/dist/lib/semantic-fact-types.d.ts +0 -5
  943. package/dist/lib/semantic-fact-types.js +0 -5
  944. package/dist/lib/semantic-fact-unit-shape.d.ts +0 -34
  945. package/dist/lib/semantic-fact-unit-shape.js +0 -89
  946. package/dist/lib/semantic-fact-value-shape.d.ts +0 -12
  947. package/dist/lib/semantic-fact-value-shape.js +0 -39
  948. package/dist/lib/source-line-scanner.d.ts +0 -3
  949. package/dist/lib/source-line-scanner.js +0 -42
  950. package/dist/lib/stable-json.d.ts +0 -2
  951. package/dist/lib/stable-json.js +0 -21
  952. package/dist/lib/structural-closure-cost.d.ts +0 -79
  953. package/dist/lib/structural-closure-cost.js +0 -91
  954. package/dist/lib/symbolic-denotation-dag-builder.d.ts +0 -25
  955. package/dist/lib/symbolic-denotation-dag-builder.js +0 -176
  956. package/dist/lib/symbolic-denotation-domain-validation.d.ts +0 -3
  957. package/dist/lib/symbolic-denotation-domain-validation.js +0 -56
  958. package/dist/lib/symbolic-denotation-engine.d.ts +0 -32
  959. package/dist/lib/symbolic-denotation-engine.js +0 -140
  960. package/dist/lib/symbolic-denotation-public.d.ts +0 -11
  961. package/dist/lib/symbolic-denotation-public.js +0 -12
  962. package/dist/lib/symbolic-denotation-runtime.d.ts +0 -20
  963. package/dist/lib/symbolic-denotation-runtime.js +0 -90
  964. package/dist/lib/symbolic-denotation-support.d.ts +0 -11
  965. package/dist/lib/symbolic-denotation-support.js +0 -49
  966. package/dist/lib/symbolic-denotation-types.d.ts +0 -133
  967. package/dist/lib/symbolic-denotation-types.js +0 -18
  968. package/dist/lib/symbolic-denotation-validation.d.ts +0 -6
  969. package/dist/lib/symbolic-denotation-validation.js +0 -126
  970. package/dist/long-task-hook.d.ts +0 -2
  971. package/dist/long-task-hook.js +0 -103
  972. package/dist/schemas/design-resource-symbolic-noninterference-artifact-v2.schema.json +0 -289
  973. package/dist/schemas/design-resource-symbolic-source-ir-v1.schema.json +0 -130
  974. package/dist/schemas/long-task-delivery-v2/long-task-delivery-v2.schema.json +0 -2190
  975. package/dist/schemas/long-task-delivery-v2/long-task-outcomes-v2.schema.json +0 -18
  976. /package/dist/lib/{compact-shared-structure-types.js → context-catalog/catalog-types.js} +0 -0
  977. /package/dist/lib/{design-resource-fact-types.js → context-create/context-create-types.js} +0 -0
  978. /package/dist/lib/{design-resource-handoff-input-types.js → context-inspect/context-inspect-types.js} +0 -0
  979. /package/dist/lib/{design-resource-reconciliation-types.js → context-markdown/context-markdown-types.js} +0 -0
  980. /package/dist/lib/{design-resource-recovery-patch-types.js → context-move/context-move-types.js} +0 -0
  981. /package/dist/lib/{design-resource-recovery-types.js → context-mutation/mutation-types.js} +0 -0
  982. /package/dist/lib/{design-resource-symbolic-fact-types.js → context-register/context-register-types.js} +0 -0
  983. /package/dist/lib/{long-task-git.d.ts → git.d.ts} +0 -0
@@ -1,290 +0,0 @@
1
- # Dynamic Resource Selection
2
-
3
- Use this reference to derive a bounded design-resource commission from the actual request. It is a decision model, not a fixed production sequence.
4
-
5
- ## 1. Establish the scope ceiling
6
-
7
- Extract the smallest explicit output or development boundary before interpreting the background:
8
-
9
- - subject: one control/component, one region, one page, named pages, a flow or a reusable system;
10
- - development coverage when the resource is an implementation handoff: named surfaces/routes, regions, component families, unique controls and conditions that will actually be built;
11
- - platform and viewport when known;
12
- - modes, states and transitions explicitly requested;
13
- - fidelity or editability requested, if any;
14
- - exclusions such as “other pages not included,” “preview only,” “no Figma” or “do not update files.”
15
-
16
- Rich background improves a bounded artifact. It never authorizes more artifacts. Necessary surrounding context may show where a partial feature lives, but it does not place the rest of that page or product in scope. If the user supplies a complete app plan but asks to preview one button, generate at most the one-control resource. If the user asks for design resources for one development slice, cover that slice through its material controls and conditions, not the whole background product.
17
-
18
- When an in-scope decision exposes an outside-ceiling effect, assess and explain that effect without generating or revising the outside subjects. Return the existing `decision-required` disposition with `reason: scope-expansion-required`. The user may choose an in-scope alternative or explicitly expand scope; only then recompute the ceiling and coverage. The reason is not a new status, approval or workflow state.
19
-
20
- For page, flow or complex-control generation, recover the available authoritative constraints before deriving a commission:
21
-
22
- - target user/role and usage context reference;
23
- - client/host/platform, input method and relevant size classes;
24
- - owning Surface/Screen duty and main-versus-drilldown boundary;
25
- - primary task outcome, primary work object and shortest task loop;
26
- - material operation–affected-object–feedback relationships; and
27
- - critical context, state, recovery and accessibility constraints.
28
-
29
- These product and surface facts remain owned by controlling Product/Surface/Screen Source. The commission references them without becoming their owner. Separately consume `DESIGN.md` and selected exact-target/constraint Source for visual-system and selected-design conditions. Non-authoritative task-level UI/UX analysis may inform candidate comparison but cannot supply missing product or surface meaning. A feature list, screenshot, route tree, component inventory or analysis output cannot fill a missing product or surface fact; if the missing meaning materially changes the resource, return `decision-required` or request the owning Source update before Provider execution.
30
-
31
- If the desired candidate changes durable product goals/rules/capability, page duty, primary work object/task loop, information/action/feedback placement, interaction topology, Design Authority, tokens or component-family grammar, stop and route the change to the actual Product/Surface/Screen/Design owner. Reread the updated owner before resuming selection or generation. A candidate execution defect stays within DRA and does not by itself justify a durable owner change.
32
-
33
- ## 2. Choose the intent
34
-
35
- | Intent | User decision being supported | Default stopping point |
36
- | --- | --- | --- |
37
- | `exploration` | “What might this look or feel like?” | Visible scoped candidate plus minimal sanity review |
38
- | `handoff` | “Can another designer/developer reliably consume this without inventing material in-scope UI/UX decisions?” | Minimum sufficient project-native resources plus scope-bound coverage, provenance, limitations and relevant checks |
39
- | `selected-source-preparation` | “Preserve this explicitly selected direction for later use.” | Immutable identity or approved snapshot, explicit selection basis and downstream notes |
40
-
41
- Intent and style dependency are task-local and need not be persisted. Selected-source preparation does not itself adopt Design Authority.
42
-
43
- Classify each commission before capability selection:
44
-
45
- - `style-bearing`: high-fidelity/branded output, visual-direction candidate, typography/color/density treatment, component visual specification or production-style prototype;
46
- - `non-fidelity`: low-fidelity hierarchy, IA/flow topology, semantics-only interaction/state study or explicitly non-fidelity prototype.
47
-
48
- Mixed work is style-bearing unless it can be split into a genuinely independent non-fidelity commission. Style-bearing work requires configured project Design Authority and an Open Design project bound to the adopted system. Missing authority stops and points to the explicitly invoked `$design-system-authoring`; it never triggers that Skill automatically.
49
-
50
- ## 3. Inventory relevant input roles
51
-
52
- Preserve each supplied item's actual role:
53
-
54
- - `exact-target`: already authoritative only for its declared conditions;
55
- - `constraint`: a rule that controls only its stated scope;
56
- - `inspiration`: directionally useful but not fidelity authority;
57
- - `current-implementation-evidence`: evidence of current behavior, not desired behavior by default;
58
- - `background`: product/technical context that informs but does not expand generation scope.
59
-
60
- An optional pre-existing planning document is one possible input. Raw notes or an initial proposal are equally valid. Never require a special intermediary format merely to make another input usable.
61
-
62
- ### Pre-generation style-application closure
63
-
64
- Before every style-bearing Provider generation or material revision—including a simple high-fidelity preview—evaluate every current-slice style-application dimension which can materially change the output. Reuse the Provider reference's existing material-revision definition; do not create another revision classification. This closure does not apply to non-fidelity work, pure IA/flow topology, low-fidelity structure, a semantics-only state study, a read which starts no new generation, or packaging, renaming or byte-only export proved equivalent to the same canonical source.
65
-
66
- At minimum evaluate `primary_content_priority`, `density`, `container_treatment`, `visible_vs_hit_geometry`, `preserve` and `prohibited_patterns`, plus any other obvious slice-specific style-application dimension which materially affects Provider output. These are task-local judgments, not a fixed visual-property matrix or a copy of the formal handoff Fact Universe. Every applicable dimension has exactly one of these dispositions:
67
-
68
- | Disposition | Legal condition | Commission representation | Provider effect |
69
- | --- | --- | --- | --- |
70
- | `existing-covered` | Current controlling Source or a selected `exact-target`/`constraint` completely governs the exact target, slice and declared conditions and reaches the Provider through an existing input binding | Keep that Source in its existing input binding; do not duplicate it in `style_application` | Contributes to a closed commission |
71
- | `projected` | Current controlling Source and Design Authority already determine the slice-specific application, but selected input does not directly and completely express it | Put only the necessary current-slice field in the existing `style_application` envelope | Contributes to a closed commission |
72
- | `not-applicable` | The dimension has no material effect on this resource and the task-local reason is explicit | Keep the reason task-local; emit no empty or placeholder field | Contributes to a closed commission |
73
- | `decision-required` | Source is missing, stale, conflicting or ambiguous; a user choice is needed; delegation is insufficient; or resolution requires a durable owner change | Give the concrete natural-language reason through the existing disposition; emit no invented application meaning | Blocks the Provider run |
74
-
75
- Use `existing-covered` only when all of the following hold:
76
-
77
- 1. current controlling Source or a selected `exact-target`/`constraint` explicitly specifies the dimension;
78
- 2. the specification applies to the exact target, slice and declared conditions;
79
- 3. the Source remains current after any owner update;
80
- 4. the Provider commission actually carries it through existing `inputs.exact_targets`, `inputs.constraints` or the corresponding current input binding; and
81
- 5. the conclusion requires no Agent inference from a generic style, name or visual impression.
82
-
83
- Design System identity, generic Tokens, “follow the design system”, inspiration, background, an unselected candidate, Provider output, a default-only static screenshot and current-implementation evidence do not by themselves establish `existing-covered`. Current implementation may support `preserve` only when controlling Source explicitly makes the observed behavior or visual fact a preservation constraint. A Provider must not infer missing application meaning from any of these inputs, a feature list, route tree, component inventory or task-level UI/UX analysis.
84
-
85
- For `projected`, derive only meaning already authorized by current Source and Design Authority. Do not invent product, business, interaction or design-system semantics, paste complete Tokens, copy a Provider prompt or create a persistent Projection. The actual commission envelope contains exactly the `projected` fields: omit `existing-covered` fields, keep `not-applicable` reasons task-local and never encode `decision-required` as a placeholder.
86
-
87
- The Provider run is allowed if and only if every applicable dimension is `existing-covered`, `projected` or `not-applicable`. Any `decision-required`, undispositioned dimension or Source conflict blocks commission submission and Provider execution. When resolution changes durable Product/Surface/Screen/Design meaning, use the existing owner-first route above, reread current Source and repeat this closure before resuming DRA. Post-generation Design suitability cannot retroactively repair a commission which skipped this closure.
88
-
89
- This judgment occurs inside the existing Source read and commission-envelope action. For a simple high-fidelity preview it adds no Provider generation, tool action, file, checkpoint, persistent state, fixed user pause, required extra conversation turn, formal handoff, manifest, bundle, preflight or complete Fact Universe. When all dimensions close, the same turn may still generate, perform minimal sanity/suitability review, show the candidate and receive a user choice. “Closure required” never means “emit a closure record.”
90
-
91
- ## 4. Derive development-corresponding coverage
92
-
93
- For an implementation handoff, use this task-local equation:
94
-
95
- ```text
96
- resources to commission
97
- = material UI/UX decisions inside the explicit development scope
98
- - decisions sufficiently covered by selected existing Source
99
- ```
100
-
101
- A decision is material when changing it would materially change what the user sees, understands, can do or receives as feedback. Pure code structure and non-user-visible implementation choices are not design gaps.
102
-
103
- For each selected existing mapping, also name the applicable target/conditions and the meaning that must be preserved. Preservation includes current product/surface meaning, exact resource-owned visual facts, state/condition coverage and component-family or Design-System lineage which the requested change does not authorize altering. Do not treat an unchanged-looking default frame as proof that its hidden states, responsive variants or inherited dependencies are preserved.
104
-
105
- Account for the applicable meaning at each level; do not require filler for non-applicable dimensions:
106
-
107
- | Coverage level | Material UI/UX meaning |
108
- | --- | --- |
109
- | Surface/flow | information hierarchy, page/route composition, layout grid/constraints, region relationships, stacking/overlay, scrolling/overflow, navigation, branching and recovery context |
110
- | Visual treatment/content | typography, color, spacing, border, radius, elevation, iconography, imagery, density, exact copy/labels, formatting, localization and content presentation |
111
- | Component/control | anatomy, dimensions, hit area, variants, defaults, visibility/availability and mapping of repeated controls to an existing component family |
112
- | State/interaction | trigger/input, validation, loading/empty/success/failure/disabled/permission states, transitions, gestures, navigation result, focus/selection behavior, feedback and recovery |
113
- | Motion | animated property, start/end state, duration, easing, sequencing, interruption and reduced-motion behavior when motion matters |
114
- | Adaptation/input | viewport/breakpoint, safe area, theme/mode, platform convention, pointer/touch/keyboard behavior, orientation and content stress |
115
- | Accessibility | label/role, focus order/visibility, keyboard path, touch target, contrast and other applicable assistive behavior |
116
- | Assets | exact icons, illustrations, media, sound/haptic cues or other bespoke content whose appearance or feedback affects the result |
117
-
118
- For every material in-scope item, record one task-local disposition: `existing-covered`, `new-resource-needed`, `not-applicable`, `excluded-by-scope`, `decision-required` or `unavailable`. This accounting is reasoning/handoff metadata, not a required file, persistent coverage registry, Design Authority or acceptance result.
119
-
120
- Existing coverage is sufficient only for the conditions it explicitly specifies or demonstrates. Seeing a control in one default page frame does not cover its variants, dynamic states, feedback, motion, responsive behavior or accessibility. Conversely, a selected component source may cover many control instances, so do not commission duplicate designs merely because several stable control keys map to it.
121
-
122
- Impact assurance has two strengths. A material/recoverable loop may use the complete current `audit_expectations`, bidirectional resource bindings, explicitly unchanged universe, blast-radius universe and inactive-Delta leakage catalog owned by [recovery-and-writeback.md](recovery-and-writeback.md). An ordinary loop without those complete bindings performs only conservative impact analysis from readable Source: mark the unverified remainder, conservatively regenerate within the ceiling or return `decision-required`. Never claim that only identified resources are affected, and never expand outside the ceiling for safety.
123
-
124
- Design resources express user-visible interaction semantics and the presentation of product rules. Business, data, permission and algorithmic rules remain owned by product/technical Source; reference those rules and show their visible consequences without inventing them or making a visual artifact their sole owner.
125
-
126
- For a Web/App implementation handoff, visual coverage alone is insufficient. Read [implementation-feasibility.md](implementation-feasibility.md) and inspect the current platform, framework/runtime, UI system, token/theming adapter, component owners and route owners. Every material component-family × target × condition profile needs a Source-backed candidate realization or blocker before formal publication. This does not make implementation structure a design decision or put exact design values into technical Source.
127
-
128
- ### Formal selected Web/App handoff
129
-
130
- When—and only when—the direction is final-selected for a formal Web/App implementation handoff, load [formal-selected-web-app-handoff.md](formal-selected-web-app-handoff.md). That reference owns the complete atomic Expected Fact Universe, canonical acquisition, Inspector/Census, Fact × method proof and publication rules. Exploration never loads or approximates them.
131
-
132
- ## 5. Identify independent gaps
133
-
134
- For exploration, ask what remains uncertain inside the scope. For a handoff, ask which material coverage items remain `new-resource-needed`:
135
-
136
- - **structure:** information hierarchy, layout regions or page relationships;
137
- - **flow:** navigation, branching, recovery or multi-step sequence;
138
- - **behavior:** control states, transitions, gestures, feedback, loading/error/empty/disabled cases;
139
- - **visual direction:** composition, typography, color, density, imagery or brand character;
140
- - **platform/responsiveness:** safe areas, breakpoints, input methods or viewport behavior;
141
- - **system reuse:** tokens, component variants or cross-surface rules needed by more than the requested artifact;
142
- - **team editability/native inspection:** a real need for collaborative editable frames/libraries, inspectable component/token facts or an organizational native-platform handoff.
143
-
144
- Do not manufacture a gap already resolved by selected Source.
145
-
146
- ## 6. Consider resources conditionally
147
-
148
- | Resource | Select when it closes this gap | Usually omit when |
149
- | --- | --- | --- |
150
- | Control/component state study | A unique or complex control has uncovered anatomy, variants, feedback, motion or edge states | A selected page/prototype or component source explicitly specifies and demonstrates the applicable conditions |
151
- | Low-fidelity wireframe | Hierarchy, topology or flow must be judged without visual-style distraction | Structure is settled and only visual direction is unknown |
152
- | High-fidelity visual candidate | Visual hierarchy, tone or composition needs selection | Existing selected targets already govern the requested conditions |
153
- | Interactive prototype | Transitions, navigation, state retention or task feel must be experienced | A static decision is sufficient or the provider cannot produce genuine interaction |
154
- | Flow/journey board | Multiple surfaces, branches or recovery paths must be compared together | The request is one isolated surface/control |
155
- | Design-system slice | Several requested artifacts need shared tokens/components or reuse rules | One exploratory candidate does not justify a system |
156
- | Component inventory/specification | Development handoff needs explicit reusable families, variants, state behavior or mappings for several control instances | Exploration is visual only, or selected component sources already cover every mapped instance |
157
- | Collaborative native design input | Existing team authority, editable collaboration, native component/library reuse or organizational handoff is explicitly valuable and the connector/auth/read/export path is operational | Open Design/project-native implementation source is sufficient or the native path would create a second synchronized representation |
158
- | Image/illustration/icon/media study | Bespoke content materially defines the selected direction | Generic placeholders answer the present decision |
159
-
160
- A prototype is often valuable for new Web/App flows, but it is never automatically required. Low- and high-fidelity resources may both be selected only when they answer independent questions. One comprehensive, inspectable artifact may cover page composition and several component families; a static frame cannot claim unseen interaction or state coverage merely because all controls appear in it.
161
-
162
- Do not translate Product Control closure into one artifact per control. Artifact grouping is an authoring optimization, while the later implementation handoff still inventories every observable design fact inside those artifacts, including component parts and smaller primitives. Map ordinary controls to selected shared component variants, group related states in one component-family board or workbench, and reserve dedicated resources for unique or complex controls whose material meaning is otherwise uncovered.
163
-
164
- ## 7. Assign a disposition to every considered resource
165
-
166
- - `selected`: required to close a current gap;
167
- - `optional`: useful, but not necessary for the current decision;
168
- - `not-needed`: redundant or outside the scope ceiling;
169
- - `unavailable`: justified but not currently supported/configured;
170
- - `decision-required`: a genuine unresolved preference changes the commission materially.
171
-
172
- Give one concrete reason. Do not turn `optional` into automatic extra work.
173
-
174
- ## 8. Build the commission envelope
175
-
176
- The task-local envelope should contain only product-specific information:
177
-
178
- ```yaml
179
- intent: exploration | handoff | selected-source-preparation
180
- scope:
181
- subjects: [named surface/flow/region/component/control keys]
182
- ceiling: one-control | one-region | one-page | named-pages | named-flow | system-slice
183
- necessary_context: []
184
- excluded: []
185
- platform: known-or-unknown
186
- viewports: []
187
- coverage:
188
- material_needs: []
189
- observable_fact_families: []
190
- existing_mappings: []
191
- preserve: []
192
- required_content_visual: []
193
- required_components_states: []
194
- required_interactions_motion: []
195
- required_adaptation_accessibility: []
196
- inputs:
197
- product_surface_constraints: []
198
- technical_sources: []
199
- exact_targets: []
200
- constraints: []
201
- inspiration: []
202
- background: []
203
- style_application:
204
- primary_content_priority: results-table-is-primary-work-object
205
- density: compact-working-density-for-results-table
206
- container_treatment: one-flat-table-surface-without-card-wrapper
207
- preserve: [selected-header-hierarchy]
208
- prohibited_patterns: [nested-cards-around-the-primary-results-table]
209
- quality_commission:
210
- artifact_archetype: dashboard-data-workbench
211
- primary_design_challenges: [task-hierarchy, component-reuse, dense-data-legibility]
212
- visual_character:
213
- desired: [calm, precise, product-specific]
214
- avoid: [generic-ai-gradient, excessive-cards, arbitrary-glow]
215
- content:
216
- real_copy_required: true
217
- realistic_data_required: true
218
- placeholder_final_content_forbidden: true
219
- reference_roles:
220
- - { ref: selected-density-reference, role: information-density }
221
- component_authoring:
222
- shared_families_required: true
223
- repeated_instance_specific_styling_forbidden_by_design: true
224
- substrate_input_refs: [dashboard-web-feasibility]
225
- selected_capability:
226
- kind: runtime-discovered-kind
227
- id: runtime-discovered-id
228
- expected_entry: known-or-provider-native
229
- review_promise: minimal-sanity | handoff-checks | selected-source-snapshot
230
- ```
231
-
232
- This is an explanatory shape, not a required file or schema; its concrete dashboard values illustrate Source-derived content and are not defaults. Include `style_application` only when material to a style-bearing commission and bind its actual values to current Design Authority, selected Source and the explicit slice. It is not a persisted Application Projection, Authority, state or acceptance record. For style-bearing generation, add an archetype-specific `quality_commission`: name the main design challenges, desired/avoided visual character, real-content obligations, the distinct role of each selected reference, design-side shared-family expectations and applicable feasibility Source. Omit irrelevant keys instead of emitting placeholders.
233
-
234
- `repeated_instance_specific_styling_forbidden_by_design` means repeated controls in the selected resource share one component-family grammar rather than being drawn as unrelated instances. It does not assert that later production code already reuses one component. `quality_commission` is Provider input, not a persisted quality score, Authority, Gate, routing record or acceptance result. A simple high-fidelity preview does not gain another tool action or persisted side effect from these fields. Never paste or paraphrase the Open Design capability's own seed/template prompt into it.
235
-
236
- ## 9. Iterate and stop
237
-
238
- - Keep each revision inside the original scope ceiling unless the user explicitly expands it; otherwise use `decision-required` with reason `scope-expansion-required`.
239
- - Reuse the current Open Design project when that preserves context and provenance; preserve the prior artifact hash before overwriting a selected candidate.
240
- - Do not create low-fi, high-fi, component boards or native-platform copies merely because a process diagram lists them.
241
- - For exploration, stop as soon as the requested decision is supported.
242
- - For a final-selected formal Web/App implementation handoff, apply the dedicated formal reference's exact stop conditions. Honest `decision_required`, `unavailable` or capability gaps remain blocking; they cannot be called ready or authorize fidelity work.
243
-
244
- During simple iteration, keep accepted, rejected and unresolved implications in a task-local delta buffer. Do not require or emit an interim delta after every iteration and never continuously synchronize the initial proposal. If the loop requires durable semantic replay, a selected-Proposal file writeback or cross-interruption recovery, load [recovery-and-writeback.md](recovery-and-writeback.md) and use its independent origin/decision-authority/evidence/status model plus package helper; prompt prose alone cannot establish CAS or deterministic recovery. Ordinary conversational selection creates no approval record or deterministic cross-session promise; if it is lost before authorized materialization, reconfirm it. For a non-formal small request, explicit human selection or explicitly delegated selection may be consolidated and reconciled once in the same turn. For a selected formal Web/App handoff, defer reconciliation until the formal owner completes canonical closure and no newly visible decision returns to review. Reconcile only accepted decisions. If the Proposal exists only in conversation and safe materialization was not explicitly authorized, return one complete revised proposal and report cross-session deterministic recovery unavailable. Never create another intermediary planning document or mutate Context, `DESIGN.md`, code, tests or Contract.
245
-
246
- ## Worked scope examples
247
-
248
- - **Large draft, one filter control:** select a control-state study if anatomy and states are uncertain; omit page/flow resources.
249
- - **One page, style preview:** first require configured Design Authority and matching Open Design binding, then select one high-fidelity candidate; do not add a design-system pack or validator run.
250
- - **One page scheduled for development:** use a page/flow target for layout and context, map ordinary buttons/inputs to selected component variants, and add grouped component-state or dedicated complex-control studies only where relevant static/dynamic states, feedback, motion, responsiveness or accessibility remain uncovered.
251
- - **Local panel inside a large app:** include enough surrounding page context to place and size the panel, but generate detailed resources only for the panel, its in-scope controls and affected states.
252
- - **One comprehensive interactive artifact:** accept it as the minimum set when its sections and reachable states explicitly cover every material in-scope item; do not add duplicate control boards. If it exposes only a static/default view, commission the missing state/interaction coverage instead of inferring it.
253
- - **Three-screen interaction flow:** select a low-fi flow and an interactive high-fi prototype only if topology and interaction/visual behavior are independently unresolved.
254
- - **Local style fix with exact target:** select no new design resource and route to implementation.
255
- - **Initial proposal before execution:** iterate only requested candidates, keep one task-local delta buffer, then after selection reconcile accepted decisions once. Pass the revised proposal plus selected immutable resources directly to the default Goal or `long-task-workflow`.
256
-
257
- ### Style-application worked examples
258
-
259
- #### Example A — must block
260
-
261
- A one-page high-fidelity preview has configured Design Authority but only generic Tokens. No selected `exact-target` or `constraint` specifies the page's primary-content priority, density or container treatment, and the commission has no corresponding projected fields. Generic system binding cannot fill those application decisions. Result: use the existing `decision-required` with concrete missing-Source reasons; the Provider run must not start.
262
-
263
- #### Example B — complete existing coverage may omit projection
264
-
265
- A local style-bearing revision has a current selected `exact-target` which explicitly specifies every applicable style-application dimension for the exact target and conditions, and that Source is carried through the Provider's existing exact-target input binding. Every dimension is `existing-covered`. Result: omit `style_application` rather than copying the Source, and allow the Provider run.
266
-
267
- #### Example C — mixed closure projects only the gaps
268
-
269
- The task-local dispositions are:
270
-
271
- ```text
272
- primary_content_priority: existing-covered
273
- density: projected
274
- container_treatment: projected
275
- visible_vs_hit_geometry: not-applicable
276
- preserve: existing-covered
277
- prohibited_patterns: projected
278
- ```
279
-
280
- Assume current Screen Source says the results table is the page's primary work object, current Design Authority calls for compact working density, and an adopted constraint forbids nested cards. The illustrative actual envelope contains only those three Source-derived fields:
281
-
282
- ```yaml
283
- style_application:
284
- density: compact-working-density-for-results-table
285
- container_treatment: one-flat-table-surface-without-card-wrapper
286
- prohibited_patterns:
287
- - nested-cards-around-the-primary-results-table
288
- ```
289
-
290
- All applicable dimensions are closed, so the Provider run is allowed. If any one of them instead becomes unresolved, stale or conflicting, its disposition becomes `decision-required` and the run is blocked.
@@ -1,57 +0,0 @@
1
- ---
2
- name: design-system-authoring
3
- description: Use only when the user explicitly asks to initialize, generate, choose, adopt, replace or repair a project design system or design style with Open Design; asks for “初始化设计系统”, “生成设计系统”, “确定设计风格”, “采纳 Open Design 设计系统”, or explicitly invokes design-system-authoring in a Minimal Context Harness project. This cold-start capability never runs merely because DESIGN.md is missing, a project is new, another Skill needs visual style, or ordinary UI work begins.
4
- ---
5
-
6
- # Design System Authoring
7
-
8
- Generate or select an Open Design design system, obtain an explicit selection, and adopt that selection into the project's existing durable Design Authority. The user invokes this Skill at project cold start or later repair time; installation only makes it available.
9
-
10
- ## Hard boundaries
11
-
12
- - Run only from an explicit user request. Never auto-run from `init`, `sync`, the default Workflow, `design-resource-authoring`, a missing/starter `DESIGN.md`, or a new-project inference.
13
- - A combined explicit user request to initialize the system and then generate resources authorizes that sequence; a resource gate alone does not.
14
- - Open Design owns generation, revision, previews and its catalogue. Use its live structured capabilities; do not copy its prompts, emulate its generator, vendor a catalogue or invent provider IDs.
15
- - Keep candidate generation, human/delegated selection and authority adoption distinct. A successful job or attractive preview is not selected and is not project authority.
16
- - Project `DESIGN.md` and its one declared authored exact-value token source or generation direction are canonical. An Open Design design-system record and project binding are provider synchronization, not a second authority.
17
- - Put durable surface, information-architecture and interaction facts in their owning `project_context/**`; put visual-system semantics, rationale, token direction and reference interpretation in `DESIGN.md`. Do not duplicate facts across owners.
18
- - Do not create a design registry, receipt, workflow state, Contract, acceptance gate or provider runtime inside Tiny Context.
19
- - Do not persistently install/configure MCP, plugins, authentication or disclosure paths without separate authorization. Task-local use of an already available Open Design MCP/daemon is allowed.
20
- - Do not implement production UI or claim downstream fidelity, accessibility, product correctness or acceptance.
21
-
22
- ## Read the references
23
-
24
- 1. Always read [open-design-design-system-provider.md](references/open-design-design-system-provider.md) before discovery, generation, revision, selection or provider synchronization.
25
- 2. Always read [authority-adoption.md](references/authority-adoption.md) before changing `DESIGN.md`, its token source, relevant Context or provider bindings.
26
-
27
- ## Core workflow
28
-
29
- 1. **Confirm explicit intent and scope.** Identify whether the user wants a new system, selection from existing systems, repair, or replacement; capture the product/brand purpose, supported surface/platform, accessibility needs, required modes and supplied references. Ask only when an unresolved aesthetic or brand choice materially changes the candidates and the user has not delegated selection.
30
- 2. **Inspect current authority.** Read core Context, relevant surface/interaction Context, `DESIGN.md`, its declared token source/generation direction and any recorded Open Design provenance. Classify the project as `unconfigured`, `configured`, or `configured-but-inconsistent`; this is a task-local finding, not new state.
31
- 3. **Discover live Open Design capabilities.** Prefer structured MCP. List/read `od://design-systems/<id>/DESIGN.md`, inspect tool schemas, and feature-detect design-system creation/revision/acceptance plus project binding. Record the live provider/MCP version and any fallback used.
32
- 4. **Reuse or generate candidates.** Reuse an existing provider system only when its identity and meaning fit. If a live MCP creation capability exists, use it. Otherwise use the official daemon generation-job API described in the provider reference. Keep every output a candidate until selection.
33
- 5. **Review and iterate.** Inspect `DESIGN.md`, generated token files, preview/showcase and relevant workspace files. Use provider revision jobs for scoped feedback, poll boundedly, preserve diagnostics and keep pending revisions non-authoritative.
34
- 6. **Obtain selection.** Require an explicit user/team selection, or an explicit instruction delegating selection with known criteria. Record the selection basis, provider design-system ID, selected revision when applicable and immutable content digest/snapshot. Reject or leave other candidates unselected.
35
- 7. **Adopt once.** Reconcile the selected system through the authority-adoption procedure. Update root `DESIGN.md`, establish exactly one authored token source/generation direction, update only owning Context facts, and record provider provenance without making it authoritative.
36
- 8. **Synchronize Open Design.** Accept the selected pending revision when applicable. Confirm MCP can read the adopted provider system. For later style-bearing resource work, create or verify an Open Design project with `create_project.designSystem` equal to the adopted provider ID.
37
- 9. **Validate and report.** Run project-owned Context/design lint and source/package checks appropriate to the repository. Separately report provider execution, artifact readiness, selection, authority adoption, provider synchronization, verification and unresolved issues.
38
-
39
- ## Readiness classification
40
-
41
- Treat Design Authority as unconfigured when `DESIGN.md` is absent, explicitly says `Design authority status: unconfigured`, remains an unedited starter, contains only style adjectives/inspiration, or lacks one authored exact-value token source/generation direction. A configured visual system still does not make every surface implementation-ready; selected exact/constraint targets and declared coverage remain separate.
42
-
43
- If authority is already configured and the user did not ask to replace or repair it, prefer reuse and explain the current system. Never generate a competing system as filler.
44
-
45
- ## Completion response
46
-
47
- Report:
48
-
49
- - requested operation and design-system scope;
50
- - Open Design transport/version and capabilities actually used;
51
- - candidate IDs and review performed;
52
- - explicit or delegated selection basis;
53
- - adopted `DESIGN.md`, token source and Context owners changed;
54
- - provider ID, revision/digest and project-binding verification;
55
- - validations run, limitations and decisions still required.
56
-
57
- Always distinguish `provider succeeded`, `artifact ready`, `selected`, `authority adopted` and `binding verified`; none implies the next.
@@ -1,6 +0,0 @@
1
- interface:
2
- display_name: "Design System Authoring"
3
- short_description: "Generate and adopt a project design system"
4
- default_prompt: "Use $design-system-authoring to generate, select, and adopt an Open Design design system for this project."
5
- policy:
6
- allow_implicit_invocation: false
@@ -1,48 +0,0 @@
1
- # Design-System Authority Adoption
2
-
3
- Adopt one explicitly selected Open Design result through existing Minimal Context owners. This is a reconciliation step, not a new authority lifecycle.
4
-
5
- ## Preconditions
6
-
7
- - Selection is explicit, or the user explicitly delegated selection and the stated criteria support one defensible choice.
8
- - The exact provider design-system ID and selected revision/body are readable.
9
- - `DESIGN.md`, generated token artifacts and relevant preview/workspace files have been inspected.
10
- - The selected content has a stable digest or user-approved snapshot.
11
- - Conflicts with product/surface Context are resolved or remain an explicit decision; provider output never silently overrides product meaning.
12
-
13
- ## Single-owner writeback
14
-
15
- Use these owners:
16
-
17
- - `project_context/**`: durable surface responsibility, information hierarchy, navigation, stable interaction/state, product accessibility requirements and repeatable verification entrypoints;
18
- - root `DESIGN.md`: visual principles, typography, color, spacing, radius, elevation, motion rationale, component visual semantics, token-source declaration and interpretation of design references;
19
- - one project-native authored token source or one explicit generation direction: exact values consumed by implementation;
20
- - selected authored targets: concrete composition/condition coverage, kept as ordinary versioned project Source.
21
-
22
- Do not copy the same fact into several owners. Open Design metadata is provenance only.
23
-
24
- ## Adoption procedure
25
-
26
- 1. Read the project's `DESIGN.md` format and lint expectations. Preserve valid project-specific content unless the user explicitly authorized replacement.
27
- 2. Reconcile selected provider semantics against controlling Context. Provider-invented business, permission, data or algorithmic rules are excluded unless independently authorized by product Source.
28
- 3. Write the selected visual system into `DESIGN.md` and declare exactly one authored exact-value token source or generation direction. Avoid style-only adjectives without implementation meaning.
29
- 4. Record provider provenance in a normal `DESIGN.md` section unless the format explicitly permits metadata fields. Include provider name/version, design-system ID, selected revision when applicable, selection basis, immutable source/snapshot locator and SHA-256 digest, plus the editable upstream owner/locator/update/export route. State that project files are canonical.
30
- 5. Update only relevant Context when durable surface/interaction/verification facts changed. Use stable surface/control/target keys to make every adopted decision-relevant target Context-reachable without duplicating the visual prose.
31
- 6. Put concrete selected targets/tokens in project-native versioned paths selected by the user or existing project convention. Never silently choose a repository directory merely because Open Design has a mutable workspace. Never overwrite an adopted baseline in place; update upstream, create or approve a new immutable version/digest and update the owning reference.
32
- 7. Accept the selected provider revision if one exists, then re-read the MCP design-system resource and compare its identity/body or digest with the adopted selection.
33
- 8. Verify downstream project binding by creating or reading a provider project with the selected ID. Provider mismatch is a synchronization problem, not evidence that project Design Authority is absent.
34
-
35
- ## Validation
36
-
37
- Run the repository-owned Design Authority lint, Context validation and token generation/check paths. At minimum confirm:
38
-
39
- - `DESIGN.md` is no longer an unconfigured starter;
40
- - exactly one authored token source/generation direction is declared and resolvable;
41
- - provenance points to the selected provider ID/revision/digest;
42
- - each adopted target has a readable immutable locator and a verified editable upstream/update route or an explicit manual/external-update boundary;
43
- - no competing design-system authority or duplicate token owner was introduced;
44
- - MCP can read the provider design system;
45
- - a downstream Open Design project reports the matching `designSystemId`;
46
- - candidate resources remain candidates unless independently selected.
47
-
48
- Report changed owners and validation results. Do not claim production visual acceptance from these checks.
@@ -1,110 +0,0 @@
1
- # Open Design Design-System Provider
2
-
3
- Use Open Design's live structured surface. Do not assume the installed version matches this compatibility note; discover first and branch on actual tool/resource schemas.
4
-
5
- ## Capability order
6
-
7
- 1. Open Design MCP resources/tools.
8
- 2. The same installed Open Design daemon's structured HTTP API when MCP lacks the required design-system lifecycle operation.
9
- 3. Open Design UI/CLI only for bootstrap, preview inspection or a capability unavailable through structured paths.
10
-
11
- Never call a copied prompt or local imitation a provider result. Persistent MCP registration, plugin/auth changes and new disclosure paths require separate authorization.
12
-
13
- ## Current verified MCP contract
14
-
15
- Open Design 0.15.1 exposed MCP server 0.2.0 using protocol `2025-06-18`. A live read-only smoke observed 152 concrete design-system resources through `resources/list`; `resources/read` returned their Markdown bodies. The URI families are:
16
-
17
- - `od://design-systems/<id>/DESIGN.md` for current design-system bodies;
18
- - `od://skills/<id>/SKILL.md` for functional skills;
19
- - `od://focus/active` for current focus.
20
-
21
- This version returns `-32601` for `resources/templates/list`. Treat template enumeration as optional protocol capability: use concrete `resources/list` results when present and never reject a readable design-system catalogue merely because the template-list method is absent.
22
-
23
- Its 18 observed tools included `list_projects`, `get_project`, `create_project`, `start_run`, `get_run`, file/artifact operations and capability discovery. `create_project` accepts optional `designSystem`; verify the result through `get_project.designSystemId`. This version exposes design systems as resources but no create/update design-system MCP tool.
24
-
25
- Feature-detect future structured methods before using the fallback. A tool name alone is insufficient: inspect its input schema and result.
26
-
27
- ## Generation fallback for Open Design 0.15.1
28
-
29
- When MCP cannot create a design system, discover the running daemon and use its official API. Prefer install metadata supplied by Open Design rather than hardcoded paths. Confirm `/api/health` and the version first.
30
-
31
- Start generation:
32
-
33
- ```http
34
- POST /api/design-systems/generation-jobs
35
- Content-Type: application/json
36
- ```
37
-
38
- The body is the provider's current design-system input. Supported 0.15.1 fields observed in the installed provider include:
39
-
40
- ```json
41
- {
42
- "title": "Product design system",
43
- "category": "Custom",
44
- "surface": "web",
45
- "summary": "Product and brand intent",
46
- "sourceNotes": "Bounded design brief",
47
- "provenance": {
48
- "companyBlurb": "Product context",
49
- "sourceUrls": [],
50
- "githubUrls": [],
51
- "localCodeFiles": [],
52
- "figFiles": [],
53
- "assetFiles": [],
54
- "notes": "Selection constraints"
55
- }
56
- }
57
- ```
58
-
59
- Send only relevant, user-authorized sources. Do not transmit secrets or unrelated repository content. `surface` is provider-defined; validate the live accepted value. A supplied `body` creates a direct draft and must not be misrepresented as model generation.
60
-
61
- Poll `GET /api/design-systems/generation-jobs/<jobId>` at a bounded cadence until a terminal state. Preserve the job ID, step diagnostics and returned `designSystemId`. The observed pipeline explores resources, creates a draft, generates `DESIGN.md`/README/SKILL/tokens/previews/context files, registers files and prepares review.
62
-
63
- ## Review and revision
64
-
65
- Read the system and inspect its assets through:
66
-
67
- - `GET /api/design-systems/<id>`;
68
- - `GET /api/design-systems/<id>/files` and `/file?path=<path>`;
69
- - `GET /api/design-systems/<id>/preview` or `/showcase`;
70
- - `POST /api/design-systems/<id>/workspace` when an editable review project is required.
71
-
72
- Create scoped feedback with:
73
-
74
- ```http
75
- POST /api/design-systems/<id>/revision-jobs
76
- Content-Type: application/json
77
-
78
- {"feedback":"...","sectionTitle":"optional section"}
79
- ```
80
-
81
- Poll the returned job through the generation-job endpoint. A succeeded revision job creates a pending revision; it does not alter project authority and must not be called accepted. Inspect revisions with `GET /api/design-systems/<id>/revisions`. After explicit selection, set exactly that revision to accepted:
82
-
83
- ```http
84
- PATCH /api/design-systems/<id>/revisions/<revisionId>
85
- Content-Type: application/json
86
-
87
- {"status":"accepted"}
88
- ```
89
-
90
- Reject explicitly discarded revisions when useful. Accepting a provider revision updates the provider copy only; the authority-adoption step still owns the project writeback.
91
-
92
- The provider also exposes `POST /api/design-systems/<id>/token-contract/rebuild-jobs`. Use it only when the live token-quality decision says a rebuild is available or the user explicitly requests a forced rebuild. A generated token contract still needs selection and project adoption.
93
-
94
- ## Provider binding for downstream resources
95
-
96
- For a new Open Design resource project, call MCP `create_project` with the adopted provider ID in `designSystem`. Immediately call `get_project` and require `designSystemId` to match.
97
-
98
- For an existing project, inspect `get_project` first. When it is missing or mismatched, prefer a new bounded project with the correct binding if MCP offers no safe update. Use a live structured provider update only after feature-detecting it and preserving project identity. Never proceed with a style-bearing run while silently bound to another system.
99
-
100
- ## Failure semantics
101
-
102
- Keep these states separate:
103
-
104
- - daemon/MCP execution: queued, running, succeeded, failed, cancelled or unknown;
105
- - candidate artifacts: missing, partial, retrievable, rendered or corrupt;
106
- - selection: unreviewed, selected, rejected or decision-required;
107
- - project adoption: unchanged, partially adopted, adopted or inconsistent;
108
- - provider binding: unverified, matched or mismatched.
109
-
110
- Preserve exact errors and stop bounded polling. Do not mark a candidate selected because generation succeeded, and do not mark project authority adopted because a provider revision was accepted.