project-tiny-context-harness 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1070) hide show
  1. package/README.md +73 -543
  2. package/assets/agents/AGENTS_CORE.md +11 -87
  3. package/assets/tools/context_rules.json +2 -1
  4. package/dist/commands/context-inspect.js +19 -89
  5. package/dist/commands/context-list.d.ts +1 -0
  6. package/dist/commands/context-list.js +24 -0
  7. package/dist/commands/context.js +4 -0
  8. package/dist/commands/doctor.js +1 -18
  9. package/dist/commands/index.js +33 -63
  10. package/dist/commands/init.d.ts +0 -2
  11. package/dist/commands/init.js +26 -108
  12. package/dist/commands/upgrade.js +14 -2
  13. package/dist/commands/validate.js +1 -1
  14. package/dist/index.d.ts +0 -1
  15. package/dist/index.js +0 -1
  16. package/dist/lib/config.js +14 -45
  17. package/dist/lib/constants.d.ts +1 -1
  18. package/dist/lib/constants.js +1 -1
  19. package/dist/lib/context-catalog/catalog-default-footprint.d.ts +1 -1
  20. package/dist/lib/context-catalog/catalog-default-footprint.js +5 -7
  21. package/dist/lib/context-catalog/catalog-load.js +19 -1
  22. package/dist/lib/context-catalog/catalog-path-validation.js +10 -0
  23. package/dist/lib/context-catalog/catalog-validation.js +13 -5
  24. package/dist/lib/context-controlling-source.d.ts +4 -0
  25. package/dist/lib/context-controlling-source.js +106 -0
  26. package/dist/lib/context-create/context-create.js +2 -0
  27. package/dist/lib/context-default-footprint.js +2 -0
  28. package/dist/lib/context-doctor/context-doctor-types.d.ts +0 -10
  29. package/dist/lib/context-doctor/context-doctor-types.js +0 -12
  30. package/dist/lib/context-export.js +17 -9
  31. package/dist/lib/context-inspect/context-inspect-projection.d.ts +1 -2
  32. package/dist/lib/context-inspect/context-inspect-projection.js +0 -1
  33. package/dist/lib/context-inspect/context-inspect-render.js +0 -8
  34. package/dist/lib/context-inspect/context-inspect-types.d.ts +0 -14
  35. package/dist/lib/context-inspect/context-inspect.js +0 -27
  36. package/dist/lib/context-manifest-schema.d.ts +1 -0
  37. package/dist/lib/context-manifest-schema.js +2 -1
  38. package/dist/lib/context-manifest.js +1 -41
  39. package/dist/lib/context-markdown/context-markdown-analysis.js +8 -0
  40. package/dist/lib/context-markdown/context-markdown-extract.d.ts +2 -1
  41. package/dist/lib/context-markdown/context-markdown-extract.js +20 -0
  42. package/dist/lib/context-markdown/context-markdown-types.d.ts +26 -0
  43. package/dist/lib/context-move/context-move.js +3 -2
  44. package/dist/lib/context-mutation/manifest-lossless-patch.js +11 -0
  45. package/dist/lib/context-mutation/mutation-commit.js +2 -2
  46. package/dist/lib/context-mutation/mutation-interlock.d.ts +1 -0
  47. package/dist/lib/context-mutation/mutation-interlock.js +9 -0
  48. package/dist/lib/context-mutation/mutation-recovery.js +3 -3
  49. package/dist/lib/context-register/context-register.js +3 -0
  50. package/dist/lib/context-templates.d.ts +0 -4
  51. package/dist/lib/context-templates.js +1 -210
  52. package/dist/lib/doctor.d.ts +2 -2
  53. package/dist/lib/doctor.js +44 -133
  54. package/dist/lib/init.js +34 -39
  55. package/dist/lib/maintenance-lock.d.ts +3 -0
  56. package/dist/lib/maintenance-lock.js +203 -0
  57. package/dist/lib/maintenance-write.d.ts +3 -0
  58. package/dist/lib/maintenance-write.js +55 -0
  59. package/dist/lib/migrations.d.ts +1 -20
  60. package/dist/lib/migrations.js +48 -755
  61. package/dist/lib/package-json-config.js +34 -21
  62. package/dist/lib/package-source.js +27 -14
  63. package/dist/lib/repository-path-safety.d.ts +2 -0
  64. package/dist/lib/repository-path-safety.js +20 -0
  65. package/dist/lib/retirement-assets.d.ts +13 -0
  66. package/dist/lib/retirement-assets.js +182 -0
  67. package/dist/lib/retirement-binding.d.ts +10 -0
  68. package/dist/lib/retirement-binding.js +59 -0
  69. package/dist/lib/retirement-defaults.d.ts +7 -0
  70. package/dist/lib/retirement-defaults.js +29 -0
  71. package/dist/lib/retirement-plan.d.ts +10 -0
  72. package/dist/lib/retirement-plan.js +96 -0
  73. package/dist/lib/retirement-preflight.d.ts +2 -0
  74. package/dist/lib/retirement-preflight.js +13 -0
  75. package/dist/lib/retirement-references.d.ts +6 -0
  76. package/dist/lib/retirement-references.js +102 -0
  77. package/dist/lib/retirement-runner.d.ts +22 -0
  78. package/dist/lib/retirement-runner.js +217 -0
  79. package/dist/lib/schema-guard.d.ts +1 -0
  80. package/dist/lib/schema-guard.js +47 -6
  81. package/dist/lib/source-files.d.ts +0 -2
  82. package/dist/lib/source-files.js +0 -21
  83. package/dist/lib/source-pack-export.js +4 -1
  84. package/dist/lib/source-pack-manifest.js +93 -38
  85. package/dist/lib/sync-engine.d.ts +7 -1
  86. package/dist/lib/sync-engine.js +38 -336
  87. package/dist/lib/types.d.ts +0 -19
  88. package/dist/lib/upgrade.d.ts +3 -2
  89. package/dist/lib/upgrade.js +30 -40
  90. package/dist/lib/validators.d.ts +3 -3
  91. package/dist/lib/validators.js +72 -401
  92. package/dist/public-api-core.d.ts +14 -11
  93. package/dist/public-api-core.js +14 -11
  94. package/dist/public-types.d.ts +7 -13
  95. package/migrations/README.md +19 -178
  96. package/migrations/schema-4-owned-assets.json +170 -0
  97. package/package.json +14 -20
  98. package/source-mappings.yaml +3 -39
  99. package/assets/README.md +0 -944
  100. package/assets/README.zh-CN.md +0 -556
  101. package/assets/agents/.gitkeep +0 -1
  102. package/assets/agents/long-task-implementation.toml +0 -15
  103. package/assets/context_templates/architecture.md +0 -37
  104. package/assets/context_templates/area.md +0 -40
  105. package/assets/context_templates/context.toml +0 -46
  106. package/assets/context_templates/deployment.md +0 -35
  107. package/assets/context_templates/global.md +0 -57
  108. package/assets/context_templates/product-surface-contract.md +0 -70
  109. package/assets/context_templates/screen-contract.md +0 -205
  110. package/assets/context_templates/verification.md +0 -35
  111. package/assets/github/.gitkeep +0 -1
  112. package/assets/github/harness.yml +0 -41
  113. package/assets/make/.gitkeep +0 -1
  114. package/assets/make/ty-context.mk +0 -48
  115. package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_helpers.cs +0 -301
  116. package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_run.cs +0 -197
  117. package/assets/runtime/windows-job-supervisor/formal_process_supervisor_native_types.cs +0 -215
  118. package/assets/runtime/windows-job-supervisor/windows_job_process_supervisor.ps1 +0 -117
  119. package/assets/skills/context_development_engineer/SKILL.md +0 -58
  120. package/assets/skills/context_development_engineer/references/engineering-design-reasoning.md +0 -93
  121. package/assets/skills/context_full_project_export/SKILL.md +0 -70
  122. package/assets/skills/context_harness_upgrade/SKILL.md +0 -60
  123. package/assets/skills/context_product_plan/SKILL.md +0 -42
  124. package/assets/skills/context_surface_contract/SKILL.md +0 -205
  125. package/assets/skills/context_uiux_design/SKILL.md +0 -53
  126. package/assets/skills/context_uiux_design/references/task-uiux-analysis.md +0 -82
  127. package/assets/skills/design-resource-authoring/SKILL.md +0 -63
  128. package/assets/skills/design-resource-authoring/references/authority-delta-assessment.md +0 -52
  129. package/assets/skills/design-resource-authoring/references/downstream-handoff.md +0 -67
  130. package/assets/skills/design-resource-authoring/references/formal-selected-web-app-handoff.md +0 -114
  131. package/assets/skills/design-resource-authoring/references/implementation-feasibility.md +0 -111
  132. package/assets/skills/design-resource-authoring/references/open-design-provider.md +0 -198
  133. package/assets/skills/design-resource-authoring/references/recovery-and-writeback.md +0 -205
  134. package/assets/skills/design-resource-authoring/references/resource-selection.md +0 -290
  135. package/assets/skills/design-system-authoring/SKILL.md +0 -63
  136. package/assets/skills/design-system-authoring/agents/openai.yaml +0 -6
  137. package/assets/skills/design-system-authoring/references/authority-adoption.md +0 -58
  138. package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md +0 -114
  139. package/assets/skills/long-task-workflow/SKILL.md +0 -75
  140. package/assets/skills/long-task-workflow/agents/openai.yaml +0 -6
  141. package/assets/skills/long-task-workflow/references/authority-lifecycle.md +0 -86
  142. package/assets/skills/long-task-workflow/references/contract-authoring.md +0 -152
  143. package/assets/skills/long-task-workflow/references/evidence-design.md +0 -132
  144. package/assets/skills/long-task-workflow/references/source-authoring.md +0 -126
  145. package/assets/tools/validate_context.py +0 -667
  146. package/dist/commands/check-modularity.d.ts +0 -1
  147. package/dist/commands/check-modularity.js +0 -181
  148. package/dist/commands/composite-campaign.d.ts +0 -1
  149. package/dist/commands/composite-campaign.js +0 -8
  150. package/dist/commands/composite-long-task.d.ts +0 -1
  151. package/dist/commands/composite-long-task.js +0 -8
  152. package/dist/commands/delivery-set.d.ts +0 -1
  153. package/dist/commands/delivery-set.js +0 -8
  154. package/dist/commands/design-authority-delta.d.ts +0 -1
  155. package/dist/commands/design-authority-delta.js +0 -53
  156. package/dist/commands/design-authority.d.ts +0 -1
  157. package/dist/commands/design-authority.js +0 -104
  158. package/dist/commands/design-resource-recovery.d.ts +0 -1
  159. package/dist/commands/design-resource-recovery.js +0 -152
  160. package/dist/commands/design-resource.d.ts +0 -1
  161. package/dist/commands/design-resource.js +0 -132
  162. package/dist/commands/disable.d.ts +0 -1
  163. package/dist/commands/disable.js +0 -15
  164. package/dist/commands/enable.d.ts +0 -1
  165. package/dist/commands/enable.js +0 -16
  166. package/dist/commands/long-task-authoring.d.ts +0 -3
  167. package/dist/commands/long-task-authoring.js +0 -234
  168. package/dist/commands/long-task-command-args.d.ts +0 -4
  169. package/dist/commands/long-task-command-args.js +0 -26
  170. package/dist/commands/long-task-explain.d.ts +0 -1
  171. package/dist/commands/long-task-explain.js +0 -52
  172. package/dist/commands/long-task-revision.d.ts +0 -1
  173. package/dist/commands/long-task-revision.js +0 -177
  174. package/dist/commands/long-task-workdir.d.ts +0 -2
  175. package/dist/commands/long-task-workdir.js +0 -23
  176. package/dist/commands/long-task.d.ts +0 -1
  177. package/dist/commands/long-task.js +0 -212
  178. package/dist/commands/route.d.ts +0 -15
  179. package/dist/commands/route.js +0 -142
  180. package/dist/lib/compact-authoring-support.d.ts +0 -22
  181. package/dist/lib/compact-authoring-support.js +0 -143
  182. package/dist/lib/compact-shared-structure-authoring.d.ts +0 -5
  183. package/dist/lib/compact-shared-structure-authoring.js +0 -9
  184. package/dist/lib/compact-shared-structure-types.d.ts +0 -61
  185. package/dist/lib/compact-shared-structure-types.js +0 -1
  186. package/dist/lib/compact-shared-structure-validation.d.ts +0 -2
  187. package/dist/lib/compact-shared-structure-validation.js +0 -159
  188. package/dist/lib/compact-shared-structures.d.ts +0 -3
  189. package/dist/lib/compact-shared-structures.js +0 -204
  190. package/dist/lib/context-doctor/context-doctor.d.ts +0 -2
  191. package/dist/lib/context-doctor/context-doctor.js +0 -130
  192. package/dist/lib/context-graph-snapshot.d.ts +0 -23
  193. package/dist/lib/context-graph-snapshot.js +0 -199
  194. package/dist/lib/context-mutation/mutation-long-task-guard.d.ts +0 -6
  195. package/dist/lib/context-mutation/mutation-long-task-guard.js +0 -57
  196. package/dist/lib/context-router/context-route-budget.d.ts +0 -15
  197. package/dist/lib/context-router/context-route-budget.js +0 -14
  198. package/dist/lib/context-router/context-route-candidates.d.ts +0 -15
  199. package/dist/lib/context-router/context-route-candidates.js +0 -112
  200. package/dist/lib/context-router/context-route-order.d.ts +0 -6
  201. package/dist/lib/context-router/context-route-order.js +0 -53
  202. package/dist/lib/context-router/context-route-paths.d.ts +0 -16
  203. package/dist/lib/context-router/context-route-paths.js +0 -109
  204. package/dist/lib/context-router/context-route-render.d.ts +0 -2
  205. package/dist/lib/context-router/context-route-render.js +0 -32
  206. package/dist/lib/context-router/context-route-scan.d.ts +0 -18
  207. package/dist/lib/context-router/context-route-scan.js +0 -156
  208. package/dist/lib/context-router/context-route-selection.d.ts +0 -16
  209. package/dist/lib/context-router/context-route-selection.js +0 -72
  210. package/dist/lib/context-router/context-route-terms.d.ts +0 -13
  211. package/dist/lib/context-router/context-route-terms.js +0 -202
  212. package/dist/lib/context-router/context-route-types.d.ts +0 -101
  213. package/dist/lib/context-router/context-route-types.js +0 -1
  214. package/dist/lib/context-router/context-route.d.ts +0 -2
  215. package/dist/lib/context-router/context-route.js +0 -127
  216. package/dist/lib/context-units-migration.d.ts +0 -13
  217. package/dist/lib/context-units-migration.js +0 -217
  218. package/dist/lib/design-authority-binding.d.ts +0 -7
  219. package/dist/lib/design-authority-binding.js +0 -96
  220. package/dist/lib/design-authority-closure.d.ts +0 -3
  221. package/dist/lib/design-authority-closure.js +0 -201
  222. package/dist/lib/design-authority-delta-codec-primitives.d.ts +0 -10
  223. package/dist/lib/design-authority-delta-codec-primitives.js +0 -58
  224. package/dist/lib/design-authority-delta-codec.d.ts +0 -2
  225. package/dist/lib/design-authority-delta-codec.js +0 -193
  226. package/dist/lib/design-authority-delta-types.d.ts +0 -65
  227. package/dist/lib/design-authority-delta-types.js +0 -6
  228. package/dist/lib/design-authority-delta-validation.d.ts +0 -2
  229. package/dist/lib/design-authority-delta-validation.js +0 -16
  230. package/dist/lib/design-authority-digest.d.ts +0 -8
  231. package/dist/lib/design-authority-digest.js +0 -36
  232. package/dist/lib/design-authority-files.d.ts +0 -9
  233. package/dist/lib/design-authority-files.js +0 -62
  234. package/dist/lib/design-authority-format.d.ts +0 -2
  235. package/dist/lib/design-authority-format.js +0 -93
  236. package/dist/lib/design-authority-links.d.ts +0 -10
  237. package/dist/lib/design-authority-links.js +0 -137
  238. package/dist/lib/design-authority-manifest.d.ts +0 -4
  239. package/dist/lib/design-authority-manifest.js +0 -144
  240. package/dist/lib/design-authority-tokens.d.ts +0 -9
  241. package/dist/lib/design-authority-tokens.js +0 -45
  242. package/dist/lib/design-authority-types.d.ts +0 -80
  243. package/dist/lib/design-authority-types.js +0 -23
  244. package/dist/lib/design-md-tool-adapter.d.ts +0 -9
  245. package/dist/lib/design-md-tool-adapter.js +0 -152
  246. package/dist/lib/design-md-tool-normalization.d.ts +0 -7
  247. package/dist/lib/design-md-tool-normalization.js +0 -78
  248. package/dist/lib/design-md-tool-types.d.ts +0 -99
  249. package/dist/lib/design-md-tool-types.js +0 -8
  250. package/dist/lib/design-md.d.ts +0 -12
  251. package/dist/lib/design-md.js +0 -169
  252. package/dist/lib/design-resource-fact-enums.d.ts +0 -24
  253. package/dist/lib/design-resource-fact-enums.js +0 -182
  254. package/dist/lib/design-resource-fact-locator-extractors.d.ts +0 -8
  255. package/dist/lib/design-resource-fact-locator-extractors.js +0 -108
  256. package/dist/lib/design-resource-fact-locator-resolver.d.ts +0 -3
  257. package/dist/lib/design-resource-fact-locator-resolver.js +0 -112
  258. package/dist/lib/design-resource-fact-locator-validation.d.ts +0 -5
  259. package/dist/lib/design-resource-fact-locator-validation.js +0 -16
  260. package/dist/lib/design-resource-fact-manifest-catalog.d.ts +0 -4
  261. package/dist/lib/design-resource-fact-manifest-catalog.js +0 -249
  262. package/dist/lib/design-resource-fact-manifest-model.d.ts +0 -91
  263. package/dist/lib/design-resource-fact-manifest-model.js +0 -21
  264. package/dist/lib/design-resource-fact-manifest-shape-axes.d.ts +0 -6
  265. package/dist/lib/design-resource-fact-manifest-shape-axes.js +0 -159
  266. package/dist/lib/design-resource-fact-manifest-shape-evidence.d.ts +0 -4
  267. package/dist/lib/design-resource-fact-manifest-shape-evidence.js +0 -59
  268. package/dist/lib/design-resource-fact-manifest-shape-facts.d.ts +0 -4
  269. package/dist/lib/design-resource-fact-manifest-shape-facts.js +0 -109
  270. package/dist/lib/design-resource-fact-manifest-shape-inspector.d.ts +0 -5
  271. package/dist/lib/design-resource-fact-manifest-shape-inspector.js +0 -144
  272. package/dist/lib/design-resource-fact-manifest-shape.d.ts +0 -7
  273. package/dist/lib/design-resource-fact-manifest-shape.js +0 -75
  274. package/dist/lib/design-resource-fact-manifest-types.d.ts +0 -3
  275. package/dist/lib/design-resource-fact-manifest-types.js +0 -3
  276. package/dist/lib/design-resource-fact-manifest-universe.d.ts +0 -5
  277. package/dist/lib/design-resource-fact-manifest-universe.js +0 -50
  278. package/dist/lib/design-resource-fact-manifest-validation.d.ts +0 -5
  279. package/dist/lib/design-resource-fact-manifest-validation.js +0 -111
  280. package/dist/lib/design-resource-fact-policy.d.ts +0 -43
  281. package/dist/lib/design-resource-fact-policy.js +0 -106
  282. package/dist/lib/design-resource-fact-property-methods.d.ts +0 -3
  283. package/dist/lib/design-resource-fact-property-methods.js +0 -158
  284. package/dist/lib/design-resource-fact-shape-primitives.d.ts +0 -3
  285. package/dist/lib/design-resource-fact-shape-primitives.js +0 -18
  286. package/dist/lib/design-resource-fact-types.d.ts +0 -164
  287. package/dist/lib/design-resource-fact-types.js +0 -1
  288. package/dist/lib/design-resource-fact-universe-assets.d.ts +0 -4
  289. package/dist/lib/design-resource-fact-universe-assets.js +0 -71
  290. package/dist/lib/design-resource-fact-universe-catalog.d.ts +0 -4
  291. package/dist/lib/design-resource-fact-universe-catalog.js +0 -161
  292. package/dist/lib/design-resource-fact-universe-conditions.d.ts +0 -2
  293. package/dist/lib/design-resource-fact-universe-conditions.js +0 -92
  294. package/dist/lib/design-resource-fact-universe-facts.d.ts +0 -4
  295. package/dist/lib/design-resource-fact-universe-facts.js +0 -108
  296. package/dist/lib/design-resource-fact-universe-helpers.d.ts +0 -30
  297. package/dist/lib/design-resource-fact-universe-helpers.js +0 -171
  298. package/dist/lib/design-resource-fact-universe-inspector.d.ts +0 -7
  299. package/dist/lib/design-resource-fact-universe-inspector.js +0 -119
  300. package/dist/lib/design-resource-fact-universe-proof.d.ts +0 -4
  301. package/dist/lib/design-resource-fact-universe-proof.js +0 -113
  302. package/dist/lib/design-resource-fact-universe-subjects.d.ts +0 -5
  303. package/dist/lib/design-resource-fact-universe-subjects.js +0 -97
  304. package/dist/lib/design-resource-fact-universe-variations.d.ts +0 -2
  305. package/dist/lib/design-resource-fact-universe-variations.js +0 -75
  306. package/dist/lib/design-resource-fact-value-validation.d.ts +0 -2
  307. package/dist/lib/design-resource-fact-value-validation.js +0 -80
  308. package/dist/lib/design-resource-handoff-bundle-draft.d.ts +0 -11
  309. package/dist/lib/design-resource-handoff-bundle-draft.js +0 -40
  310. package/dist/lib/design-resource-handoff-bundle.d.ts +0 -31
  311. package/dist/lib/design-resource-handoff-bundle.js +0 -152
  312. package/dist/lib/design-resource-handoff-file-primitives.d.ts +0 -4
  313. package/dist/lib/design-resource-handoff-file-primitives.js +0 -16
  314. package/dist/lib/design-resource-handoff-file-validation.d.ts +0 -2
  315. package/dist/lib/design-resource-handoff-file-validation.js +0 -47
  316. package/dist/lib/design-resource-handoff-input-types.d.ts +0 -14
  317. package/dist/lib/design-resource-handoff-input-types.js +0 -1
  318. package/dist/lib/design-resource-handoff-manifest-projection.d.ts +0 -4
  319. package/dist/lib/design-resource-handoff-manifest-projection.js +0 -41
  320. package/dist/lib/design-resource-handoff-parser.d.ts +0 -8
  321. package/dist/lib/design-resource-handoff-parser.js +0 -49
  322. package/dist/lib/design-resource-handoff-policy.d.ts +0 -4
  323. package/dist/lib/design-resource-handoff-policy.js +0 -143
  324. package/dist/lib/design-resource-handoff-set-integrity.d.ts +0 -8
  325. package/dist/lib/design-resource-handoff-set-integrity.js +0 -94
  326. package/dist/lib/design-resource-handoff-shape-evidence.d.ts +0 -6
  327. package/dist/lib/design-resource-handoff-shape-evidence.js +0 -187
  328. package/dist/lib/design-resource-handoff-shape-primitives.d.ts +0 -14
  329. package/dist/lib/design-resource-handoff-shape-primitives.js +0 -70
  330. package/dist/lib/design-resource-handoff-shape-structure.d.ts +0 -5
  331. package/dist/lib/design-resource-handoff-shape-structure.js +0 -239
  332. package/dist/lib/design-resource-handoff-shape.d.ts +0 -6
  333. package/dist/lib/design-resource-handoff-shape.js +0 -192
  334. package/dist/lib/design-resource-handoff-snapshot.d.ts +0 -6
  335. package/dist/lib/design-resource-handoff-snapshot.js +0 -25
  336. package/dist/lib/design-resource-handoff-types.d.ts +0 -264
  337. package/dist/lib/design-resource-handoff-types.js +0 -68
  338. package/dist/lib/design-resource-handoff-validation-coverage.d.ts +0 -4
  339. package/dist/lib/design-resource-handoff-validation-coverage.js +0 -223
  340. package/dist/lib/design-resource-handoff-validation-fact-cells.d.ts +0 -2
  341. package/dist/lib/design-resource-handoff-validation-fact-cells.js +0 -60
  342. package/dist/lib/design-resource-handoff-validation-fact-records.d.ts +0 -2
  343. package/dist/lib/design-resource-handoff-validation-fact-records.js +0 -90
  344. package/dist/lib/design-resource-handoff-validation-facts.d.ts +0 -2
  345. package/dist/lib/design-resource-handoff-validation-facts.js +0 -13
  346. package/dist/lib/design-resource-handoff-validation-primitives.d.ts +0 -11
  347. package/dist/lib/design-resource-handoff-validation-primitives.js +0 -26
  348. package/dist/lib/design-resource-handoff-validation-proofs.d.ts +0 -2
  349. package/dist/lib/design-resource-handoff-validation-proofs.js +0 -67
  350. package/dist/lib/design-resource-handoff-validation-resource-closure.d.ts +0 -3
  351. package/dist/lib/design-resource-handoff-validation-resource-closure.js +0 -88
  352. package/dist/lib/design-resource-handoff-validation-structure.d.ts +0 -6
  353. package/dist/lib/design-resource-handoff-validation-structure.js +0 -124
  354. package/dist/lib/design-resource-handoff-validation.d.ts +0 -8
  355. package/dist/lib/design-resource-handoff-validation.js +0 -177
  356. package/dist/lib/design-resource-handoff-web-dependency-validation.d.ts +0 -6
  357. package/dist/lib/design-resource-handoff-web-dependency-validation.js +0 -130
  358. package/dist/lib/design-resource-implementation-feasibility-model.d.ts +0 -35
  359. package/dist/lib/design-resource-implementation-feasibility-model.js +0 -62
  360. package/dist/lib/design-resource-implementation-feasibility-shape-sections.d.ts +0 -43
  361. package/dist/lib/design-resource-implementation-feasibility-shape-sections.js +0 -142
  362. package/dist/lib/design-resource-implementation-feasibility-shape.d.ts +0 -4
  363. package/dist/lib/design-resource-implementation-feasibility-shape.js +0 -154
  364. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.d.ts +0 -24
  365. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.js +0 -106
  366. package/dist/lib/design-resource-implementation-feasibility-source-decision.d.ts +0 -21
  367. package/dist/lib/design-resource-implementation-feasibility-source-decision.js +0 -75
  368. package/dist/lib/design-resource-implementation-feasibility-types.d.ts +0 -135
  369. package/dist/lib/design-resource-implementation-feasibility-types.js +0 -37
  370. package/dist/lib/design-resource-implementation-feasibility-validation-cells.d.ts +0 -5
  371. package/dist/lib/design-resource-implementation-feasibility-validation-cells.js +0 -125
  372. package/dist/lib/design-resource-implementation-feasibility-validation-document.d.ts +0 -4
  373. package/dist/lib/design-resource-implementation-feasibility-validation-document.js +0 -167
  374. package/dist/lib/design-resource-implementation-feasibility-validation-facts.d.ts +0 -3
  375. package/dist/lib/design-resource-implementation-feasibility-validation-facts.js +0 -76
  376. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.d.ts +0 -8
  377. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.js +0 -76
  378. package/dist/lib/design-resource-implementation-feasibility-validation-support.d.ts +0 -10
  379. package/dist/lib/design-resource-implementation-feasibility-validation-support.js +0 -75
  380. package/dist/lib/design-resource-implementation-feasibility-validation.d.ts +0 -3
  381. package/dist/lib/design-resource-implementation-feasibility-validation.js +0 -138
  382. package/dist/lib/design-resource-reconciliation-codec.d.ts +0 -2
  383. package/dist/lib/design-resource-reconciliation-codec.js +0 -174
  384. package/dist/lib/design-resource-reconciliation-types.d.ts +0 -62
  385. package/dist/lib/design-resource-reconciliation-types.js +0 -1
  386. package/dist/lib/design-resource-reconciliation.d.ts +0 -3
  387. package/dist/lib/design-resource-reconciliation.js +0 -224
  388. package/dist/lib/design-resource-recovery-authority-policy.d.ts +0 -8
  389. package/dist/lib/design-resource-recovery-authority-policy.js +0 -123
  390. package/dist/lib/design-resource-recovery-catalog-resources.d.ts +0 -6
  391. package/dist/lib/design-resource-recovery-catalog-resources.js +0 -121
  392. package/dist/lib/design-resource-recovery-catalog-shape.d.ts +0 -3
  393. package/dist/lib/design-resource-recovery-catalog-shape.js +0 -104
  394. package/dist/lib/design-resource-recovery-catalog.d.ts +0 -9
  395. package/dist/lib/design-resource-recovery-catalog.js +0 -103
  396. package/dist/lib/design-resource-recovery-cleanup.d.ts +0 -2
  397. package/dist/lib/design-resource-recovery-cleanup.js +0 -11
  398. package/dist/lib/design-resource-recovery-codec-primitives.d.ts +0 -19
  399. package/dist/lib/design-resource-recovery-codec-primitives.js +0 -92
  400. package/dist/lib/design-resource-recovery-codec.d.ts +0 -4
  401. package/dist/lib/design-resource-recovery-codec.js +0 -93
  402. package/dist/lib/design-resource-recovery-current.d.ts +0 -9
  403. package/dist/lib/design-resource-recovery-current.js +0 -63
  404. package/dist/lib/design-resource-recovery-delta-policy.d.ts +0 -5
  405. package/dist/lib/design-resource-recovery-delta-policy.js +0 -108
  406. package/dist/lib/design-resource-recovery-files.d.ts +0 -37
  407. package/dist/lib/design-resource-recovery-files.js +0 -204
  408. package/dist/lib/design-resource-recovery-final-disposition-shape.d.ts +0 -2
  409. package/dist/lib/design-resource-recovery-final-disposition-shape.js +0 -47
  410. package/dist/lib/design-resource-recovery-patch-types.d.ts +0 -54
  411. package/dist/lib/design-resource-recovery-patch-types.js +0 -1
  412. package/dist/lib/design-resource-recovery-replay.d.ts +0 -7
  413. package/dist/lib/design-resource-recovery-replay.js +0 -112
  414. package/dist/lib/design-resource-recovery-repository-bindings.d.ts +0 -9
  415. package/dist/lib/design-resource-recovery-repository-bindings.js +0 -49
  416. package/dist/lib/design-resource-recovery-schema.d.ts +0 -5
  417. package/dist/lib/design-resource-recovery-schema.js +0 -5
  418. package/dist/lib/design-resource-recovery-shape.d.ts +0 -10
  419. package/dist/lib/design-resource-recovery-shape.js +0 -241
  420. package/dist/lib/design-resource-recovery-source-authority.d.ts +0 -5
  421. package/dist/lib/design-resource-recovery-source-authority.js +0 -219
  422. package/dist/lib/design-resource-recovery-text.d.ts +0 -17
  423. package/dist/lib/design-resource-recovery-text.js +0 -186
  424. package/dist/lib/design-resource-recovery-types.d.ts +0 -200
  425. package/dist/lib/design-resource-recovery-types.js +0 -1
  426. package/dist/lib/design-resource-recovery-writeback-policy.d.ts +0 -5
  427. package/dist/lib/design-resource-recovery-writeback-policy.js +0 -326
  428. package/dist/lib/design-resource-recovery-writeback-shape.d.ts +0 -6
  429. package/dist/lib/design-resource-recovery-writeback-shape.js +0 -155
  430. package/dist/lib/design-resource-recovery.d.ts +0 -44
  431. package/dist/lib/design-resource-recovery.js +0 -216
  432. package/dist/lib/design-resource-symbolic-applicability-authority.d.ts +0 -7
  433. package/dist/lib/design-resource-symbolic-applicability-authority.js +0 -19
  434. package/dist/lib/design-resource-symbolic-applicability-policy.d.ts +0 -12
  435. package/dist/lib/design-resource-symbolic-applicability-policy.js +0 -79
  436. package/dist/lib/design-resource-symbolic-applicability-profiles.d.ts +0 -8
  437. package/dist/lib/design-resource-symbolic-applicability-profiles.js +0 -55
  438. package/dist/lib/design-resource-symbolic-applicability-shape.d.ts +0 -2
  439. package/dist/lib/design-resource-symbolic-applicability-shape.js +0 -76
  440. package/dist/lib/design-resource-symbolic-applicability-validation.d.ts +0 -7
  441. package/dist/lib/design-resource-symbolic-applicability-validation.js +0 -128
  442. package/dist/lib/design-resource-symbolic-compilation.d.ts +0 -3
  443. package/dist/lib/design-resource-symbolic-compilation.js +0 -13
  444. package/dist/lib/design-resource-symbolic-denotation.d.ts +0 -3
  445. package/dist/lib/design-resource-symbolic-denotation.js +0 -167
  446. package/dist/lib/design-resource-symbolic-disposition-validation.d.ts +0 -4
  447. package/dist/lib/design-resource-symbolic-disposition-validation.js +0 -28
  448. package/dist/lib/design-resource-symbolic-fact-policy.d.ts +0 -12
  449. package/dist/lib/design-resource-symbolic-fact-policy.js +0 -12
  450. package/dist/lib/design-resource-symbolic-fact-shape.d.ts +0 -3
  451. package/dist/lib/design-resource-symbolic-fact-shape.js +0 -146
  452. package/dist/lib/design-resource-symbolic-fact-types.d.ts +0 -221
  453. package/dist/lib/design-resource-symbolic-fact-types.js +0 -1
  454. package/dist/lib/design-resource-symbolic-fact-validation.d.ts +0 -3
  455. package/dist/lib/design-resource-symbolic-fact-validation.js +0 -111
  456. package/dist/lib/design-resource-symbolic-indexes.d.ts +0 -23
  457. package/dist/lib/design-resource-symbolic-indexes.js +0 -54
  458. package/dist/lib/design-resource-symbolic-manifest-shape.d.ts +0 -3
  459. package/dist/lib/design-resource-symbolic-manifest-shape.js +0 -155
  460. package/dist/lib/design-resource-symbolic-manifest-validation.d.ts +0 -6
  461. package/dist/lib/design-resource-symbolic-manifest-validation.js +0 -132
  462. package/dist/lib/design-resource-symbolic-noninterference-artifact.d.ts +0 -33
  463. package/dist/lib/design-resource-symbolic-noninterference-artifact.js +0 -110
  464. package/dist/lib/design-resource-symbolic-noninterference-equivalence.d.ts +0 -3
  465. package/dist/lib/design-resource-symbolic-noninterference-equivalence.js +0 -77
  466. package/dist/lib/design-resource-symbolic-noninterference-recompute.d.ts +0 -4
  467. package/dist/lib/design-resource-symbolic-noninterference-recompute.js +0 -146
  468. package/dist/lib/design-resource-symbolic-noninterference-scope.d.ts +0 -7
  469. package/dist/lib/design-resource-symbolic-noninterference-scope.js +0 -49
  470. package/dist/lib/design-resource-symbolic-noninterference-shape.d.ts +0 -2
  471. package/dist/lib/design-resource-symbolic-noninterference-shape.js +0 -152
  472. package/dist/lib/design-resource-symbolic-noninterference-types.d.ts +0 -103
  473. package/dist/lib/design-resource-symbolic-noninterference-types.js +0 -1
  474. package/dist/lib/design-resource-symbolic-noninterference-validation.d.ts +0 -5
  475. package/dist/lib/design-resource-symbolic-noninterference-validation.js +0 -62
  476. package/dist/lib/design-resource-symbolic-oracle-fingerprint.d.ts +0 -1
  477. package/dist/lib/design-resource-symbolic-oracle-fingerprint.js +0 -47
  478. package/dist/lib/design-resource-symbolic-predicate-shape.d.ts +0 -6
  479. package/dist/lib/design-resource-symbolic-predicate-shape.js +0 -123
  480. package/dist/lib/design-resource-symbolic-production-closure.d.ts +0 -4
  481. package/dist/lib/design-resource-symbolic-production-closure.js +0 -144
  482. package/dist/lib/design-resource-symbolic-proof-authority-validation.d.ts +0 -10
  483. package/dist/lib/design-resource-symbolic-proof-authority-validation.js +0 -68
  484. package/dist/lib/design-resource-symbolic-proof-validation.d.ts +0 -10
  485. package/dist/lib/design-resource-symbolic-proof-validation.js +0 -89
  486. package/dist/lib/design-resource-symbolic-region-validation.d.ts +0 -19
  487. package/dist/lib/design-resource-symbolic-region-validation.js +0 -146
  488. package/dist/lib/design-resource-symbolic-resource-validation.d.ts +0 -5
  489. package/dist/lib/design-resource-symbolic-resource-validation.js +0 -90
  490. package/dist/lib/design-resource-symbolic-rule-shape.d.ts +0 -27
  491. package/dist/lib/design-resource-symbolic-rule-shape.js +0 -158
  492. package/dist/lib/design-resource-symbolic-safety-validation.d.ts +0 -6
  493. package/dist/lib/design-resource-symbolic-safety-validation.js +0 -29
  494. package/dist/lib/design-resource-symbolic-source-ir-evaluation.d.ts +0 -19
  495. package/dist/lib/design-resource-symbolic-source-ir-evaluation.js +0 -74
  496. package/dist/lib/design-resource-symbolic-source-ir-evidence.d.ts +0 -44
  497. package/dist/lib/design-resource-symbolic-source-ir-evidence.js +0 -88
  498. package/dist/lib/design-resource-symbolic-source-ir-oracle.d.ts +0 -13
  499. package/dist/lib/design-resource-symbolic-source-ir-oracle.js +0 -96
  500. package/dist/lib/design-resource-symbolic-source-ir-proof.d.ts +0 -14
  501. package/dist/lib/design-resource-symbolic-source-ir-proof.js +0 -98
  502. package/dist/lib/design-resource-symbolic-source-ir-shape.d.ts +0 -2
  503. package/dist/lib/design-resource-symbolic-source-ir-shape.js +0 -38
  504. package/dist/lib/design-resource-symbolic-source-ir-types.d.ts +0 -17
  505. package/dist/lib/design-resource-symbolic-source-ir-types.js +0 -2
  506. package/dist/lib/design-resource-symbolic-static-dependency-validation.d.ts +0 -2
  507. package/dist/lib/design-resource-symbolic-static-dependency-validation.js +0 -83
  508. package/dist/lib/design-resource-symbolic-structural-closure-validation.d.ts +0 -6
  509. package/dist/lib/design-resource-symbolic-structural-closure-validation.js +0 -79
  510. package/dist/lib/design-resource-symbolic-validation-support.d.ts +0 -29
  511. package/dist/lib/design-resource-symbolic-validation-support.js +0 -111
  512. package/dist/lib/design-resource-v1-capacity-header.d.ts +0 -8
  513. package/dist/lib/design-resource-v1-capacity-header.js +0 -231
  514. package/dist/lib/design-resource-v1-capacity.d.ts +0 -5
  515. package/dist/lib/design-resource-v1-capacity.js +0 -45
  516. package/dist/lib/execution-target-capabilities.d.ts +0 -2
  517. package/dist/lib/execution-target-capabilities.js +0 -45
  518. package/dist/lib/legacy-managed-scan.d.ts +0 -2
  519. package/dist/lib/legacy-managed-scan.js +0 -95
  520. package/dist/lib/legacy-sdlc-migration.d.ts +0 -2
  521. package/dist/lib/legacy-sdlc-migration.js +0 -199
  522. package/dist/lib/long-task-acceptance-reachability-claims.d.ts +0 -2
  523. package/dist/lib/long-task-acceptance-reachability-claims.js +0 -279
  524. package/dist/lib/long-task-acceptance-reachability-design.d.ts +0 -2
  525. package/dist/lib/long-task-acceptance-reachability-design.js +0 -96
  526. package/dist/lib/long-task-acceptance-reachability-external.d.ts +0 -9
  527. package/dist/lib/long-task-acceptance-reachability-external.js +0 -123
  528. package/dist/lib/long-task-acceptance-reachability-helpers.d.ts +0 -64
  529. package/dist/lib/long-task-acceptance-reachability-helpers.js +0 -473
  530. package/dist/lib/long-task-acceptance-reachability-semantic.d.ts +0 -2
  531. package/dist/lib/long-task-acceptance-reachability-semantic.js +0 -122
  532. package/dist/lib/long-task-acceptance-reachability-types.d.ts +0 -91
  533. package/dist/lib/long-task-acceptance-reachability-types.js +0 -1
  534. package/dist/lib/long-task-acceptance-reachability.d.ts +0 -4
  535. package/dist/lib/long-task-acceptance-reachability.js +0 -115
  536. package/dist/lib/long-task-acceptance-reference.d.ts +0 -22
  537. package/dist/lib/long-task-acceptance-reference.js +0 -46
  538. package/dist/lib/long-task-acceptance-shape.d.ts +0 -5
  539. package/dist/lib/long-task-acceptance-shape.js +0 -198
  540. package/dist/lib/long-task-activation-validation.d.ts +0 -27
  541. package/dist/lib/long-task-activation-validation.js +0 -246
  542. package/dist/lib/long-task-active-authority-lock-context.d.ts +0 -4
  543. package/dist/lib/long-task-active-authority-lock-context.js +0 -29
  544. package/dist/lib/long-task-admitted-observation-records.d.ts +0 -25
  545. package/dist/lib/long-task-admitted-observation-records.js +0 -40
  546. package/dist/lib/long-task-admitted-observation.d.ts +0 -93
  547. package/dist/lib/long-task-admitted-observation.js +0 -201
  548. package/dist/lib/long-task-applicability-identity.d.ts +0 -25
  549. package/dist/lib/long-task-applicability-identity.js +0 -60
  550. package/dist/lib/long-task-applicability-shape.d.ts +0 -4
  551. package/dist/lib/long-task-applicability-shape.js +0 -54
  552. package/dist/lib/long-task-artifacts.d.ts +0 -6
  553. package/dist/lib/long-task-artifacts.js +0 -35
  554. package/dist/lib/long-task-assertions-v2.d.ts +0 -22
  555. package/dist/lib/long-task-assertions-v2.js +0 -220
  556. package/dist/lib/long-task-authoring-authority-preview.d.ts +0 -5
  557. package/dist/lib/long-task-authoring-authority-preview.js +0 -87
  558. package/dist/lib/long-task-authoring-preflight-diagnostics.d.ts +0 -8
  559. package/dist/lib/long-task-authoring-preflight-diagnostics.js +0 -199
  560. package/dist/lib/long-task-authoring-preflight-repair-order.d.ts +0 -8
  561. package/dist/lib/long-task-authoring-preflight-repair-order.js +0 -98
  562. package/dist/lib/long-task-authoring-preflight-types.d.ts +0 -48
  563. package/dist/lib/long-task-authoring-preflight-types.js +0 -47
  564. package/dist/lib/long-task-authoring-preflight.d.ts +0 -3
  565. package/dist/lib/long-task-authoring-preflight.js +0 -102
  566. package/dist/lib/long-task-authority-material-diff.d.ts +0 -17
  567. package/dist/lib/long-task-authority-material-diff.js +0 -225
  568. package/dist/lib/long-task-authority-materials.d.ts +0 -7
  569. package/dist/lib/long-task-authority-materials.js +0 -185
  570. package/dist/lib/long-task-authority-policy.d.ts +0 -290
  571. package/dist/lib/long-task-authority-policy.js +0 -310
  572. package/dist/lib/long-task-authority-revision-analysis.d.ts +0 -34
  573. package/dist/lib/long-task-authority-revision-analysis.js +0 -121
  574. package/dist/lib/long-task-authority-revision-brief.d.ts +0 -3
  575. package/dist/lib/long-task-authority-revision-brief.js +0 -76
  576. package/dist/lib/long-task-authority-revision-details.d.ts +0 -21
  577. package/dist/lib/long-task-authority-revision-details.js +0 -205
  578. package/dist/lib/long-task-authority-revision-diagnosis.d.ts +0 -24
  579. package/dist/lib/long-task-authority-revision-diagnosis.js +0 -149
  580. package/dist/lib/long-task-authority-revision-enforcement.d.ts +0 -5
  581. package/dist/lib/long-task-authority-revision-enforcement.js +0 -53
  582. package/dist/lib/long-task-authority-revision-summary.d.ts +0 -14
  583. package/dist/lib/long-task-authority-revision-summary.js +0 -246
  584. package/dist/lib/long-task-authority-revision-types.d.ts +0 -119
  585. package/dist/lib/long-task-authority-revision-types.js +0 -1
  586. package/dist/lib/long-task-authority-revision.d.ts +0 -4
  587. package/dist/lib/long-task-authority-revision.js +0 -156
  588. package/dist/lib/long-task-authority-transition-policy.d.ts +0 -62
  589. package/dist/lib/long-task-authority-transition-policy.js +0 -62
  590. package/dist/lib/long-task-authority-types.d.ts +0 -131
  591. package/dist/lib/long-task-authority-types.js +0 -1
  592. package/dist/lib/long-task-authority.d.ts +0 -7
  593. package/dist/lib/long-task-authority.js +0 -202
  594. package/dist/lib/long-task-boundary-check.d.ts +0 -15
  595. package/dist/lib/long-task-boundary-check.js +0 -9
  596. package/dist/lib/long-task-check-evidence-decoder.d.ts +0 -3
  597. package/dist/lib/long-task-check-evidence-decoder.js +0 -84
  598. package/dist/lib/long-task-check-execution-policy.d.ts +0 -21
  599. package/dist/lib/long-task-check-execution-policy.js +0 -48
  600. package/dist/lib/long-task-check-runner.d.ts +0 -2
  601. package/dist/lib/long-task-check-runner.js +0 -307
  602. package/dist/lib/long-task-check-shape.d.ts +0 -2
  603. package/dist/lib/long-task-check-shape.js +0 -176
  604. package/dist/lib/long-task-claim-definitions.d.ts +0 -7
  605. package/dist/lib/long-task-claim-definitions.js +0 -83
  606. package/dist/lib/long-task-claim-proof-policy.d.ts +0 -4
  607. package/dist/lib/long-task-claim-proof-policy.js +0 -57
  608. package/dist/lib/long-task-claim-semantic-proof-floor.d.ts +0 -3
  609. package/dist/lib/long-task-claim-semantic-proof-floor.js +0 -78
  610. package/dist/lib/long-task-claims.d.ts +0 -10
  611. package/dist/lib/long-task-claims.js +0 -374
  612. package/dist/lib/long-task-codex-agent-profile.d.ts +0 -42
  613. package/dist/lib/long-task-codex-agent-profile.js +0 -276
  614. package/dist/lib/long-task-command-process.d.ts +0 -9
  615. package/dist/lib/long-task-command-process.js +0 -178
  616. package/dist/lib/long-task-compact-authoring-projections.d.ts +0 -12
  617. package/dist/lib/long-task-compact-authoring-projections.js +0 -67
  618. package/dist/lib/long-task-compact-authoring.d.ts +0 -3
  619. package/dist/lib/long-task-compact-authoring.js +0 -176
  620. package/dist/lib/long-task-compact-carrier.d.ts +0 -7
  621. package/dist/lib/long-task-compact-carrier.js +0 -132
  622. package/dist/lib/long-task-compact-parser.d.ts +0 -14
  623. package/dist/lib/long-task-compact-parser.js +0 -123
  624. package/dist/lib/long-task-compact-primitives.d.ts +0 -22
  625. package/dist/lib/long-task-compact-primitives.js +0 -132
  626. package/dist/lib/long-task-compact-projections.d.ts +0 -4
  627. package/dist/lib/long-task-compact-projections.js +0 -163
  628. package/dist/lib/long-task-compact-structure-targets.d.ts +0 -2
  629. package/dist/lib/long-task-compact-structure-targets.js +0 -91
  630. package/dist/lib/long-task-complete-delivery-evidence-types.d.ts +0 -38
  631. package/dist/lib/long-task-complete-delivery-evidence-types.js +0 -1
  632. package/dist/lib/long-task-completion-types.d.ts +0 -109
  633. package/dist/lib/long-task-completion-types.js +0 -1
  634. package/dist/lib/long-task-conformance-policy.d.ts +0 -6
  635. package/dist/lib/long-task-conformance-policy.js +0 -44
  636. package/dist/lib/long-task-context-authority-topology.d.ts +0 -7
  637. package/dist/lib/long-task-context-authority-topology.js +0 -39
  638. package/dist/lib/long-task-context-authority.d.ts +0 -14
  639. package/dist/lib/long-task-context-authority.js +0 -66
  640. package/dist/lib/long-task-contract-types.d.ts +0 -317
  641. package/dist/lib/long-task-contract-types.js +0 -1
  642. package/dist/lib/long-task-control-fields.d.ts +0 -12
  643. package/dist/lib/long-task-control-fields.js +0 -66
  644. package/dist/lib/long-task-control-types.d.ts +0 -1
  645. package/dist/lib/long-task-control-types.js +0 -1
  646. package/dist/lib/long-task-counterfactual-claim-policy.d.ts +0 -9
  647. package/dist/lib/long-task-counterfactual-claim-policy.js +0 -72
  648. package/dist/lib/long-task-counterfactual-sandbox.d.ts +0 -19
  649. package/dist/lib/long-task-counterfactual-sandbox.js +0 -195
  650. package/dist/lib/long-task-counterfactual-types.d.ts +0 -38
  651. package/dist/lib/long-task-counterfactual-types.js +0 -1
  652. package/dist/lib/long-task-delivery-compiler-preflight.d.ts +0 -24
  653. package/dist/lib/long-task-delivery-compiler-preflight.js +0 -32
  654. package/dist/lib/long-task-delivery-compiler.d.ts +0 -14
  655. package/dist/lib/long-task-delivery-compiler.js +0 -170
  656. package/dist/lib/long-task-delivery-parser.d.ts +0 -17
  657. package/dist/lib/long-task-delivery-parser.js +0 -153
  658. package/dist/lib/long-task-delivery-preflight.d.ts +0 -5
  659. package/dist/lib/long-task-delivery-preflight.js +0 -175
  660. package/dist/lib/long-task-delivery-shape.d.ts +0 -6
  661. package/dist/lib/long-task-delivery-shape.js +0 -6
  662. package/dist/lib/long-task-delivery-types.d.ts +0 -15
  663. package/dist/lib/long-task-delivery-types.js +0 -15
  664. package/dist/lib/long-task-delivery-validation.d.ts +0 -11
  665. package/dist/lib/long-task-delivery-validation.js +0 -267
  666. package/dist/lib/long-task-design-feasibility-binding-owners.d.ts +0 -6
  667. package/dist/lib/long-task-design-feasibility-binding-owners.js +0 -52
  668. package/dist/lib/long-task-design-feasibility-binding.d.ts +0 -14
  669. package/dist/lib/long-task-design-feasibility-binding.js +0 -114
  670. package/dist/lib/long-task-design-feasibility-source-closure.d.ts +0 -11
  671. package/dist/lib/long-task-design-feasibility-source-closure.js +0 -87
  672. package/dist/lib/long-task-design-obligation.d.ts +0 -50
  673. package/dist/lib/long-task-design-obligation.js +0 -99
  674. package/dist/lib/long-task-design-resource-handoff.d.ts +0 -20
  675. package/dist/lib/long-task-design-resource-handoff.js +0 -265
  676. package/dist/lib/long-task-design-resource-method-binding.d.ts +0 -15
  677. package/dist/lib/long-task-design-resource-method-binding.js +0 -309
  678. package/dist/lib/long-task-design-target-capabilities.d.ts +0 -14
  679. package/dist/lib/long-task-design-target-capabilities.js +0 -126
  680. package/dist/lib/long-task-effective-external-takeover.d.ts +0 -15
  681. package/dist/lib/long-task-effective-external-takeover.js +0 -109
  682. package/dist/lib/long-task-effective-external-ui-takeover.d.ts +0 -5
  683. package/dist/lib/long-task-effective-external-ui-takeover.js +0 -117
  684. package/dist/lib/long-task-evidence-adapter-policy.d.ts +0 -4
  685. package/dist/lib/long-task-evidence-adapter-policy.js +0 -15
  686. package/dist/lib/long-task-evidence-adapter-types.d.ts +0 -1
  687. package/dist/lib/long-task-evidence-adapter-types.js +0 -1
  688. package/dist/lib/long-task-evidence-capability-codec.d.ts +0 -96
  689. package/dist/lib/long-task-evidence-capability-codec.js +0 -983
  690. package/dist/lib/long-task-evidence-capability-policy.d.ts +0 -9
  691. package/dist/lib/long-task-evidence-capability-policy.js +0 -345
  692. package/dist/lib/long-task-evidence-capability-runtime.d.ts +0 -5
  693. package/dist/lib/long-task-evidence-capability-runtime.js +0 -628
  694. package/dist/lib/long-task-evidence-capability-types.d.ts +0 -277
  695. package/dist/lib/long-task-evidence-capability-types.js +0 -1
  696. package/dist/lib/long-task-evidence-findings.d.ts +0 -5
  697. package/dist/lib/long-task-evidence-findings.js +0 -120
  698. package/dist/lib/long-task-evidence-sensitivity-policy.d.ts +0 -13
  699. package/dist/lib/long-task-evidence-sensitivity-policy.js +0 -166
  700. package/dist/lib/long-task-evidence-v2.d.ts +0 -10
  701. package/dist/lib/long-task-evidence-v2.js +0 -608
  702. package/dist/lib/long-task-exact-comparison.d.ts +0 -16
  703. package/dist/lib/long-task-exact-comparison.js +0 -28
  704. package/dist/lib/long-task-execution-observation.d.ts +0 -31
  705. package/dist/lib/long-task-execution-observation.js +0 -349
  706. package/dist/lib/long-task-expected-authority.d.ts +0 -4
  707. package/dist/lib/long-task-expected-authority.js +0 -126
  708. package/dist/lib/long-task-explain-acceptance-link.d.ts +0 -50
  709. package/dist/lib/long-task-explain-acceptance-link.js +0 -100
  710. package/dist/lib/long-task-explain-claim-links.d.ts +0 -47
  711. package/dist/lib/long-task-explain-claim-links.js +0 -90
  712. package/dist/lib/long-task-explain-source-links.d.ts +0 -99
  713. package/dist/lib/long-task-explain-source-links.js +0 -51
  714. package/dist/lib/long-task-external-confirmation-artifacts.d.ts +0 -9
  715. package/dist/lib/long-task-external-confirmation-artifacts.js +0 -138
  716. package/dist/lib/long-task-external-confirmation-attestation.d.ts +0 -20
  717. package/dist/lib/long-task-external-confirmation-attestation.js +0 -115
  718. package/dist/lib/long-task-external-confirmation-challenge.d.ts +0 -23
  719. package/dist/lib/long-task-external-confirmation-challenge.js +0 -164
  720. package/dist/lib/long-task-external-confirmation-context.d.ts +0 -14
  721. package/dist/lib/long-task-external-confirmation-context.js +0 -53
  722. package/dist/lib/long-task-external-confirmation-evaluation.d.ts +0 -11
  723. package/dist/lib/long-task-external-confirmation-evaluation.js +0 -454
  724. package/dist/lib/long-task-external-confirmation-expected.d.ts +0 -8
  725. package/dist/lib/long-task-external-confirmation-expected.js +0 -200
  726. package/dist/lib/long-task-external-confirmation-identity.d.ts +0 -10
  727. package/dist/lib/long-task-external-confirmation-identity.js +0 -77
  728. package/dist/lib/long-task-external-confirmation-plan.d.ts +0 -25
  729. package/dist/lib/long-task-external-confirmation-plan.js +0 -148
  730. package/dist/lib/long-task-external-confirmation-preparation.d.ts +0 -4
  731. package/dist/lib/long-task-external-confirmation-preparation.js +0 -100
  732. package/dist/lib/long-task-external-confirmation-shape.d.ts +0 -8
  733. package/dist/lib/long-task-external-confirmation-shape.js +0 -387
  734. package/dist/lib/long-task-external-confirmation-state.d.ts +0 -10
  735. package/dist/lib/long-task-external-confirmation-state.js +0 -109
  736. package/dist/lib/long-task-external-confirmation-types.d.ts +0 -195
  737. package/dist/lib/long-task-external-confirmation-types.js +0 -1
  738. package/dist/lib/long-task-final-integrity.d.ts +0 -18
  739. package/dist/lib/long-task-final-integrity.js +0 -109
  740. package/dist/lib/long-task-final-v2.d.ts +0 -7
  741. package/dist/lib/long-task-final-v2.js +0 -275
  742. package/dist/lib/long-task-finalization-identity.d.ts +0 -27
  743. package/dist/lib/long-task-finalization-identity.js +0 -58
  744. package/dist/lib/long-task-finding-context.d.ts +0 -3
  745. package/dist/lib/long-task-finding-context.js +0 -189
  746. package/dist/lib/long-task-freshness.d.ts +0 -30
  747. package/dist/lib/long-task-freshness.js +0 -203
  748. package/dist/lib/long-task-hook-install.d.ts +0 -26
  749. package/dist/lib/long-task-hook-install.js +0 -381
  750. package/dist/lib/long-task-hook-preflight.d.ts +0 -7
  751. package/dist/lib/long-task-hook-preflight.js +0 -58
  752. package/dist/lib/long-task-json-pointer-observation.d.ts +0 -59
  753. package/dist/lib/long-task-json-pointer-observation.js +0 -184
  754. package/dist/lib/long-task-material-input-closure.d.ts +0 -3
  755. package/dist/lib/long-task-material-input-closure.js +0 -92
  756. package/dist/lib/long-task-obligation-authority-resolution.d.ts +0 -12
  757. package/dist/lib/long-task-obligation-authority-resolution.js +0 -57
  758. package/dist/lib/long-task-obligation-semantic-identity.d.ts +0 -16
  759. package/dist/lib/long-task-obligation-semantic-identity.js +0 -116
  760. package/dist/lib/long-task-observation-artifact.d.ts +0 -8
  761. package/dist/lib/long-task-observation-artifact.js +0 -58
  762. package/dist/lib/long-task-observation-authority.d.ts +0 -28
  763. package/dist/lib/long-task-observation-authority.js +0 -479
  764. package/dist/lib/long-task-observation-ownership.d.ts +0 -2
  765. package/dist/lib/long-task-observation-ownership.js +0 -22
  766. package/dist/lib/long-task-outcome-parser.d.ts +0 -4
  767. package/dist/lib/long-task-outcome-parser.js +0 -143
  768. package/dist/lib/long-task-paths.d.ts +0 -48
  769. package/dist/lib/long-task-paths.js +0 -414
  770. package/dist/lib/long-task-playwright-capability-records.d.ts +0 -7
  771. package/dist/lib/long-task-playwright-capability-records.js +0 -218
  772. package/dist/lib/long-task-playwright-case-evidence.d.ts +0 -46
  773. package/dist/lib/long-task-playwright-case-evidence.js +0 -91
  774. package/dist/lib/long-task-playwright-case-primitives.d.ts +0 -28
  775. package/dist/lib/long-task-playwright-case-primitives.js +0 -143
  776. package/dist/lib/long-task-playwright-counterfactual-policy.d.ts +0 -7
  777. package/dist/lib/long-task-playwright-counterfactual-policy.js +0 -125
  778. package/dist/lib/long-task-playwright-evidence.d.ts +0 -8
  779. package/dist/lib/long-task-playwright-evidence.js +0 -147
  780. package/dist/lib/long-task-process-observation.d.ts +0 -6
  781. package/dist/lib/long-task-process-observation.js +0 -117
  782. package/dist/lib/long-task-process-runtime-closure.d.ts +0 -13
  783. package/dist/lib/long-task-process-runtime-closure.js +0 -207
  784. package/dist/lib/long-task-process-table.d.ts +0 -9
  785. package/dist/lib/long-task-process-table.js +0 -87
  786. package/dist/lib/long-task-process-tree.d.ts +0 -8
  787. package/dist/lib/long-task-process-tree.js +0 -108
  788. package/dist/lib/long-task-product-shape.d.ts +0 -8
  789. package/dist/lib/long-task-product-shape.js +0 -197
  790. package/dist/lib/long-task-progress.d.ts +0 -4
  791. package/dist/lib/long-task-progress.js +0 -120
  792. package/dist/lib/long-task-proof-adequacy.d.ts +0 -12
  793. package/dist/lib/long-task-proof-adequacy.js +0 -57
  794. package/dist/lib/long-task-proof-capability-floor.d.ts +0 -6
  795. package/dist/lib/long-task-proof-capability-floor.js +0 -137
  796. package/dist/lib/long-task-protected-files.d.ts +0 -1
  797. package/dist/lib/long-task-protected-files.js +0 -1
  798. package/dist/lib/long-task-repair-frontier-checks.d.ts +0 -8
  799. package/dist/lib/long-task-repair-frontier-checks.js +0 -93
  800. package/dist/lib/long-task-repair-frontier-groups.d.ts +0 -2
  801. package/dist/lib/long-task-repair-frontier-groups.js +0 -64
  802. package/dist/lib/long-task-repair-frontier-utils.d.ts +0 -6
  803. package/dist/lib/long-task-repair-frontier-utils.js +0 -27
  804. package/dist/lib/long-task-repair-frontier.d.ts +0 -14
  805. package/dist/lib/long-task-repair-frontier.js +0 -132
  806. package/dist/lib/long-task-required-proof-surfaces.d.ts +0 -2
  807. package/dist/lib/long-task-required-proof-surfaces.js +0 -13
  808. package/dist/lib/long-task-requirement-shape.d.ts +0 -2
  809. package/dist/lib/long-task-requirement-shape.js +0 -21
  810. package/dist/lib/long-task-risk-surfaces.d.ts +0 -2
  811. package/dist/lib/long-task-risk-surfaces.js +0 -60
  812. package/dist/lib/long-task-risk-types.d.ts +0 -5
  813. package/dist/lib/long-task-risk-types.js +0 -12
  814. package/dist/lib/long-task-risk.d.ts +0 -10
  815. package/dist/lib/long-task-risk.js +0 -186
  816. package/dist/lib/long-task-root-shape.d.ts +0 -5
  817. package/dist/lib/long-task-root-shape.js +0 -322
  818. package/dist/lib/long-task-runner-environment.d.ts +0 -7
  819. package/dist/lib/long-task-runner-environment.js +0 -57
  820. package/dist/lib/long-task-runner-files.d.ts +0 -3
  821. package/dist/lib/long-task-runner-files.js +0 -39
  822. package/dist/lib/long-task-runner-freeze.d.ts +0 -5
  823. package/dist/lib/long-task-runner-freeze.js +0 -318
  824. package/dist/lib/long-task-runtime-types.d.ts +0 -346
  825. package/dist/lib/long-task-runtime-types.js +0 -1
  826. package/dist/lib/long-task-scoped-binding.d.ts +0 -13
  827. package/dist/lib/long-task-scoped-binding.js +0 -11
  828. package/dist/lib/long-task-semantic-assurance-policy.d.ts +0 -4
  829. package/dist/lib/long-task-semantic-assurance-policy.js +0 -43
  830. package/dist/lib/long-task-semantic-contract-types.d.ts +0 -55
  831. package/dist/lib/long-task-semantic-contract-types.js +0 -1
  832. package/dist/lib/long-task-semantic-drift-migration.d.ts +0 -3
  833. package/dist/lib/long-task-semantic-drift-migration.js +0 -150
  834. package/dist/lib/long-task-semantic-fact-binding-types.d.ts +0 -85
  835. package/dist/lib/long-task-semantic-fact-binding-types.js +0 -1
  836. package/dist/lib/long-task-semantic-fact-closure-primitives.d.ts +0 -5
  837. package/dist/lib/long-task-semantic-fact-closure-primitives.js +0 -43
  838. package/dist/lib/long-task-semantic-fact-closure.d.ts +0 -17
  839. package/dist/lib/long-task-semantic-fact-closure.js +0 -79
  840. package/dist/lib/long-task-semantic-fact-contract-closure.d.ts +0 -4
  841. package/dist/lib/long-task-semantic-fact-contract-closure.js +0 -211
  842. package/dist/lib/long-task-semantic-fact-contract-facts.d.ts +0 -4
  843. package/dist/lib/long-task-semantic-fact-contract-facts.js +0 -33
  844. package/dist/lib/long-task-semantic-fact-contract-proofs.d.ts +0 -4
  845. package/dist/lib/long-task-semantic-fact-contract-proofs.js +0 -123
  846. package/dist/lib/long-task-semantic-fact-evidence.d.ts +0 -25
  847. package/dist/lib/long-task-semantic-fact-evidence.js +0 -225
  848. package/dist/lib/long-task-semantic-fact-input-closure.d.ts +0 -18
  849. package/dist/lib/long-task-semantic-fact-input-closure.js +0 -224
  850. package/dist/lib/long-task-semantic-fact-provenance-closure.d.ts +0 -4
  851. package/dist/lib/long-task-semantic-fact-provenance-closure.js +0 -140
  852. package/dist/lib/long-task-semantic-fact-shape.d.ts +0 -4
  853. package/dist/lib/long-task-semantic-fact-shape.js +0 -134
  854. package/dist/lib/long-task-semantic-fact-value-closure.d.ts +0 -3
  855. package/dist/lib/long-task-semantic-fact-value-closure.js +0 -110
  856. package/dist/lib/long-task-semantic-mutation.d.ts +0 -7
  857. package/dist/lib/long-task-semantic-mutation.js +0 -81
  858. package/dist/lib/long-task-semantic-proof-adequacy.d.ts +0 -2
  859. package/dist/lib/long-task-semantic-proof-adequacy.js +0 -19
  860. package/dist/lib/long-task-semantic-proof-profile.d.ts +0 -5
  861. package/dist/lib/long-task-semantic-proof-profile.js +0 -187
  862. package/dist/lib/long-task-shape-primitives.d.ts +0 -21
  863. package/dist/lib/long-task-shape-primitives.js +0 -121
  864. package/dist/lib/long-task-source-anchors.d.ts +0 -10
  865. package/dist/lib/long-task-source-anchors.js +0 -102
  866. package/dist/lib/long-task-source-authority-types.d.ts +0 -61
  867. package/dist/lib/long-task-source-authority-types.js +0 -1
  868. package/dist/lib/long-task-source-claim-validation.d.ts +0 -5
  869. package/dist/lib/long-task-source-claim-validation.js +0 -135
  870. package/dist/lib/long-task-source-conservation-facts.d.ts +0 -8
  871. package/dist/lib/long-task-source-conservation-facts.js +0 -57
  872. package/dist/lib/long-task-source-conservation-types.d.ts +0 -34
  873. package/dist/lib/long-task-source-conservation-types.js +0 -1
  874. package/dist/lib/long-task-source-conservation.d.ts +0 -7
  875. package/dist/lib/long-task-source-conservation.js +0 -110
  876. package/dist/lib/long-task-source-continuity.d.ts +0 -4
  877. package/dist/lib/long-task-source-continuity.js +0 -57
  878. package/dist/lib/long-task-source-fragments.d.ts +0 -6
  879. package/dist/lib/long-task-source-fragments.js +0 -219
  880. package/dist/lib/long-task-source-inventory.d.ts +0 -2
  881. package/dist/lib/long-task-source-inventory.js +0 -21
  882. package/dist/lib/long-task-source-item-parser.d.ts +0 -11
  883. package/dist/lib/long-task-source-item-parser.js +0 -108
  884. package/dist/lib/long-task-source-markers.d.ts +0 -12
  885. package/dist/lib/long-task-source-markers.js +0 -146
  886. package/dist/lib/long-task-source-owned-sections.d.ts +0 -29
  887. package/dist/lib/long-task-source-owned-sections.js +0 -90
  888. package/dist/lib/long-task-source-projection-resolution.d.ts +0 -5
  889. package/dist/lib/long-task-source-projection-resolution.js +0 -57
  890. package/dist/lib/long-task-source-projection-validation.d.ts +0 -17
  891. package/dist/lib/long-task-source-projection-validation.js +0 -154
  892. package/dist/lib/long-task-source-shape.d.ts +0 -2
  893. package/dist/lib/long-task-source-shape.js +0 -64
  894. package/dist/lib/long-task-source-supersession.d.ts +0 -5
  895. package/dist/lib/long-task-source-supersession.js +0 -138
  896. package/dist/lib/long-task-source-target-continuity.d.ts +0 -4
  897. package/dist/lib/long-task-source-target-continuity.js +0 -141
  898. package/dist/lib/long-task-source-target-index.d.ts +0 -15
  899. package/dist/lib/long-task-source-target-index.js +0 -91
  900. package/dist/lib/long-task-source-validation.d.ts +0 -3
  901. package/dist/lib/long-task-source-validation.js +0 -46
  902. package/dist/lib/long-task-stage-policy.d.ts +0 -9
  903. package/dist/lib/long-task-stage-policy.js +0 -170
  904. package/dist/lib/long-task-state.d.ts +0 -93
  905. package/dist/lib/long-task-state.js +0 -897
  906. package/dist/lib/long-task-static-observation-freeze.d.ts +0 -83
  907. package/dist/lib/long-task-static-observation-freeze.js +0 -429
  908. package/dist/lib/long-task-status-projection.d.ts +0 -26
  909. package/dist/lib/long-task-status-projection.js +0 -211
  910. package/dist/lib/long-task-status-v2.d.ts +0 -61
  911. package/dist/lib/long-task-status-v2.js +0 -363
  912. package/dist/lib/long-task-target-policy.d.ts +0 -11
  913. package/dist/lib/long-task-target-policy.js +0 -181
  914. package/dist/lib/long-task-technical-shape.d.ts +0 -3
  915. package/dist/lib/long-task-technical-shape.js +0 -44
  916. package/dist/lib/long-task-terminal-finalization.d.ts +0 -12
  917. package/dist/lib/long-task-terminal-finalization.js +0 -190
  918. package/dist/lib/long-task-ui-design-policy.d.ts +0 -17
  919. package/dist/lib/long-task-ui-design-policy.js +0 -236
  920. package/dist/lib/long-task-ui-surface-policy.d.ts +0 -5
  921. package/dist/lib/long-task-ui-surface-policy.js +0 -112
  922. package/dist/lib/long-task-ui-surface-shape.d.ts +0 -2
  923. package/dist/lib/long-task-ui-surface-shape.js +0 -402
  924. package/dist/lib/long-task-ui-surface-types.d.ts +0 -134
  925. package/dist/lib/long-task-ui-surface-types.js +0 -1
  926. package/dist/lib/long-task-ui-surface-validation.d.ts +0 -13
  927. package/dist/lib/long-task-ui-surface-validation.js +0 -62
  928. package/dist/lib/long-task-verification-preview.d.ts +0 -65
  929. package/dist/lib/long-task-verification-preview.js +0 -120
  930. package/dist/lib/long-task-verifier-authority.d.ts +0 -12
  931. package/dist/lib/long-task-verifier-authority.js +0 -49
  932. package/dist/lib/long-task-verifier-counterfactuals.d.ts +0 -11
  933. package/dist/lib/long-task-verifier-counterfactuals.js +0 -96
  934. package/dist/lib/long-task-verifier-dependency-closure.d.ts +0 -3
  935. package/dist/lib/long-task-verifier-dependency-closure.js +0 -183
  936. package/dist/lib/long-task-verifier-execution.d.ts +0 -9
  937. package/dist/lib/long-task-verifier-execution.js +0 -67
  938. package/dist/lib/long-task-verifier-identity.d.ts +0 -2
  939. package/dist/lib/long-task-verifier-identity.js +0 -66
  940. package/dist/lib/long-task-verifier-v2.d.ts +0 -17
  941. package/dist/lib/long-task-verifier-v2.js +0 -317
  942. package/dist/lib/long-task-windows-job-supervisor-helper.d.ts +0 -1
  943. package/dist/lib/long-task-windows-job-supervisor-helper.js +0 -104
  944. package/dist/lib/long-task-windows-job-supervisor-protocol.d.ts +0 -28
  945. package/dist/lib/long-task-windows-job-supervisor-protocol.js +0 -124
  946. package/dist/lib/long-task-windows-job-supervisor-result.d.ts +0 -11
  947. package/dist/lib/long-task-windows-job-supervisor-result.js +0 -152
  948. package/dist/lib/long-task-windows-job-supervisor.d.ts +0 -2
  949. package/dist/lib/long-task-windows-job-supervisor.js +0 -126
  950. package/dist/lib/long-task-worker-selection.d.ts +0 -2
  951. package/dist/lib/long-task-worker-selection.js +0 -7
  952. package/dist/lib/long-task-workspace-manifest.d.ts +0 -8
  953. package/dist/lib/long-task-workspace-manifest.js +0 -173
  954. package/dist/lib/long-task-workspace-runtime-types.d.ts +0 -23
  955. package/dist/lib/long-task-workspace-runtime-types.js +0 -1
  956. package/dist/lib/long-task-workspace-scope.d.ts +0 -39
  957. package/dist/lib/long-task-workspace-scope.js +0 -126
  958. package/dist/lib/long-task-workspace-snapshot.d.ts +0 -8
  959. package/dist/lib/long-task-workspace-snapshot.js +0 -176
  960. package/dist/lib/long-task-workspace.d.ts +0 -6
  961. package/dist/lib/long-task-workspace.js +0 -14
  962. package/dist/lib/modularity-capability-migration.d.ts +0 -2
  963. package/dist/lib/modularity-capability-migration.js +0 -165
  964. package/dist/lib/modularity-python.d.ts +0 -7
  965. package/dist/lib/modularity-python.js +0 -191
  966. package/dist/lib/modularity.d.ts +0 -60
  967. package/dist/lib/modularity.js +0 -781
  968. package/dist/lib/profiles.d.ts +0 -13
  969. package/dist/lib/profiles.js +0 -65
  970. package/dist/lib/semantic-fact-base-types.d.ts +0 -14
  971. package/dist/lib/semantic-fact-base-types.js +0 -1
  972. package/dist/lib/semantic-fact-catalog.d.ts +0 -8
  973. package/dist/lib/semantic-fact-catalog.js +0 -191
  974. package/dist/lib/semantic-fact-compact-authoring.d.ts +0 -2
  975. package/dist/lib/semantic-fact-compact-authoring.js +0 -160
  976. package/dist/lib/semantic-fact-compact-capacity.d.ts +0 -9
  977. package/dist/lib/semantic-fact-compact-capacity.js +0 -40
  978. package/dist/lib/semantic-fact-compact-carrier.d.ts +0 -16
  979. package/dist/lib/semantic-fact-compact-carrier.js +0 -146
  980. package/dist/lib/semantic-fact-compact-parser.d.ts +0 -17
  981. package/dist/lib/semantic-fact-compact-parser.js +0 -168
  982. package/dist/lib/semantic-fact-compact-revision.d.ts +0 -11
  983. package/dist/lib/semantic-fact-compact-revision.js +0 -64
  984. package/dist/lib/semantic-fact-compact-support.d.ts +0 -23
  985. package/dist/lib/semantic-fact-compact-support.js +0 -159
  986. package/dist/lib/semantic-fact-condition-shape.d.ts +0 -48
  987. package/dist/lib/semantic-fact-condition-shape.js +0 -111
  988. package/dist/lib/semantic-fact-input-shape.d.ts +0 -39
  989. package/dist/lib/semantic-fact-input-shape.js +0 -135
  990. package/dist/lib/semantic-fact-inventory-types.d.ts +0 -153
  991. package/dist/lib/semantic-fact-inventory-types.js +0 -1
  992. package/dist/lib/semantic-fact-manifest-shape.d.ts +0 -4
  993. package/dist/lib/semantic-fact-manifest-shape.js +0 -135
  994. package/dist/lib/semantic-fact-manifest-types.d.ts +0 -58
  995. package/dist/lib/semantic-fact-manifest-types.js +0 -19
  996. package/dist/lib/semantic-fact-policy-authority.d.ts +0 -8
  997. package/dist/lib/semantic-fact-policy-authority.js +0 -79
  998. package/dist/lib/semantic-fact-policy-census.d.ts +0 -3
  999. package/dist/lib/semantic-fact-policy-census.js +0 -126
  1000. package/dist/lib/semantic-fact-policy-condition-references.d.ts +0 -7
  1001. package/dist/lib/semantic-fact-policy-condition-references.js +0 -19
  1002. package/dist/lib/semantic-fact-policy-conditions.d.ts +0 -2
  1003. package/dist/lib/semantic-fact-policy-conditions.js +0 -105
  1004. package/dist/lib/semantic-fact-policy-facts.d.ts +0 -3
  1005. package/dist/lib/semantic-fact-policy-facts.js +0 -73
  1006. package/dist/lib/semantic-fact-policy-primitives.d.ts +0 -26
  1007. package/dist/lib/semantic-fact-policy-primitives.js +0 -169
  1008. package/dist/lib/semantic-fact-policy-proofs.d.ts +0 -2
  1009. package/dist/lib/semantic-fact-policy-proofs.js +0 -75
  1010. package/dist/lib/semantic-fact-policy-properties.d.ts +0 -3
  1011. package/dist/lib/semantic-fact-policy-properties.js +0 -84
  1012. package/dist/lib/semantic-fact-policy-units.d.ts +0 -4
  1013. package/dist/lib/semantic-fact-policy-units.js +0 -103
  1014. package/dist/lib/semantic-fact-policy.d.ts +0 -17
  1015. package/dist/lib/semantic-fact-policy.js +0 -41
  1016. package/dist/lib/semantic-fact-proof-shape.d.ts +0 -51
  1017. package/dist/lib/semantic-fact-proof-shape.js +0 -121
  1018. package/dist/lib/semantic-fact-proof-types.d.ts +0 -74
  1019. package/dist/lib/semantic-fact-proof-types.js +0 -1
  1020. package/dist/lib/semantic-fact-property-shape.d.ts +0 -29
  1021. package/dist/lib/semantic-fact-property-shape.js +0 -77
  1022. package/dist/lib/semantic-fact-shape-constants.d.ts +0 -3
  1023. package/dist/lib/semantic-fact-shape-constants.js +0 -38
  1024. package/dist/lib/semantic-fact-shape-primitives.d.ts +0 -15
  1025. package/dist/lib/semantic-fact-shape-primitives.js +0 -68
  1026. package/dist/lib/semantic-fact-source-parser.d.ts +0 -14
  1027. package/dist/lib/semantic-fact-source-parser.js +0 -87
  1028. package/dist/lib/semantic-fact-support-shape.d.ts +0 -21
  1029. package/dist/lib/semantic-fact-support-shape.js +0 -59
  1030. package/dist/lib/semantic-fact-types.d.ts +0 -5
  1031. package/dist/lib/semantic-fact-types.js +0 -5
  1032. package/dist/lib/semantic-fact-unit-shape.d.ts +0 -34
  1033. package/dist/lib/semantic-fact-unit-shape.js +0 -89
  1034. package/dist/lib/semantic-fact-value-shape.d.ts +0 -12
  1035. package/dist/lib/semantic-fact-value-shape.js +0 -39
  1036. package/dist/lib/source-line-scanner.d.ts +0 -3
  1037. package/dist/lib/source-line-scanner.js +0 -42
  1038. package/dist/lib/stable-json.d.ts +0 -2
  1039. package/dist/lib/stable-json.js +0 -21
  1040. package/dist/lib/structural-closure-cost.d.ts +0 -79
  1041. package/dist/lib/structural-closure-cost.js +0 -91
  1042. package/dist/lib/symbolic-denotation-dag-builder.d.ts +0 -25
  1043. package/dist/lib/symbolic-denotation-dag-builder.js +0 -176
  1044. package/dist/lib/symbolic-denotation-domain-validation.d.ts +0 -3
  1045. package/dist/lib/symbolic-denotation-domain-validation.js +0 -56
  1046. package/dist/lib/symbolic-denotation-engine.d.ts +0 -32
  1047. package/dist/lib/symbolic-denotation-engine.js +0 -140
  1048. package/dist/lib/symbolic-denotation-public.d.ts +0 -11
  1049. package/dist/lib/symbolic-denotation-public.js +0 -12
  1050. package/dist/lib/symbolic-denotation-runtime.d.ts +0 -20
  1051. package/dist/lib/symbolic-denotation-runtime.js +0 -90
  1052. package/dist/lib/symbolic-denotation-support.d.ts +0 -11
  1053. package/dist/lib/symbolic-denotation-support.js +0 -49
  1054. package/dist/lib/symbolic-denotation-types.d.ts +0 -133
  1055. package/dist/lib/symbolic-denotation-types.js +0 -18
  1056. package/dist/lib/symbolic-denotation-validation.d.ts +0 -6
  1057. package/dist/lib/symbolic-denotation-validation.js +0 -126
  1058. package/dist/long-task-hook.d.ts +0 -2
  1059. package/dist/long-task-hook.js +0 -103
  1060. package/dist/public-api-long-task.d.ts +0 -10
  1061. package/dist/public-api-long-task.js +0 -10
  1062. package/dist/schemas/design-authority-delta-assessment-v1.schema.json +0 -191
  1063. package/dist/schemas/design-resource-symbolic-noninterference-artifact-v2.schema.json +0 -289
  1064. package/dist/schemas/design-resource-symbolic-source-ir-v1.schema.json +0 -130
  1065. package/dist/schemas/long-task-delivery-v2/long-task-delivery-v2.schema.json +0 -2354
  1066. package/dist/schemas/long-task-delivery-v2/long-task-outcomes-v2.schema.json +0 -18
  1067. package/dist/schemas/long-task-external-confirmation-record-v1.schema.json +0 -155
  1068. package/dist/schemas/long-task-external-confirmation-record-v2.schema.json +0 -209
  1069. /package/dist/lib/{long-task-git.d.ts → git.d.ts} +0 -0
  1070. /package/dist/lib/{long-task-git.js → git.js} +0 -0
@@ -1,42 +0,0 @@
1
- ---
2
- name: context_product_plan
3
- description: Use when the user explicitly asks for a product plan/spec, product-manager analysis, requirements, goals/scope, business rules, user stories/flows, acceptance criteria, 产品方案, 需求方案, 功能方案, 业务规则方案, 用户流程, 用户故事, or 验收标准 in a Minimal Context Harness project. Do not trigger for ordinary coding, debugging, package/release work, visual design/resource generation, or a request whose durable question is only Product Surface responsibility.
4
- ---
5
-
6
- # Context Product Plan
7
-
8
- ## Ownership
9
-
10
- Own product meaning: goals, users, problem, scope/non-goals, business and user-visible rules, user flows, product feedback, success/acceptance meaning and genuine product decisions. This Skill does not own Product Surface placement, visual Design Authority, generated design resources, technical architecture, implementation, verification authority or a Gate.
11
-
12
- Project-specific product behavior belongs in `project_context/**` and may be specialized by `<harnessRoot>/skills/product_plan/SKILL.md`. Durable conclusions never live only in the Skill output.
13
-
14
- When Long-Task is active, it alone owns Source/Contract lifecycle and Final Gate. This Skill may clarify product meaning for the existing Source/Context, but creates no second plan, requirement ledger, stage or acceptance path.
15
-
16
- ## Workflow
17
-
18
- 1. Read `project_context/global.md`, `project_context/context.toml`, the default area and product owners triggered by the request. Use the default Workflow Contract's bounded high-signal Context search before `Context Delta`.
19
- 2. Establish target users/actors, problem and desired outcome, scope/non-goals, relevant objects/capabilities, main flow and material alternatives, business/user rules, failure/degraded/recovery expectations, success signals and real decision gaps.
20
- 3. Treat explicit user/product/legal/security/commercial/external constraints as Source. Internally classify each material constraint as Context-covered, requiring Context update, task-local, out of scope or decision-required. Current code reveals implementation; it cannot silently redefine product intent.
21
- 4. Keep conditions and acceptance concrete enough to be observed through the actual product entry. A representative sample cannot satisfy a declared full-population/all-provider/all-interface/all-platform outcome; unresolved scope is decision-required.
22
- 5. Route durable information/action/feedback placement, main-versus-drilldown responsibility, screen ownership or cross-surface IA to `context_surface_contract`. Provide goals, users, flows, rules and acceptance meaning as inputs; do not compile a Surface Contract here.
23
- 6. Route durable visual identity/tokens/rationale/adopted-target interpretation to `context_uiux_design`; new resource generation to `design-resource-authoring`; architecture/engineering design to `context_development_engineer`.
24
- 7. Decide exactly one `Context Delta: none|required`. Update the smallest product owner before implementation when goals, scope, business/user rules, flow ownership, acceptance semantics or durable rationale change. Local bugs or implementation drift that preserve meaning are `none`.
25
- 8. Under the default Workflow Contract, hand implementation to the current Goal and include product conformance in its one current-candidate Contract Conformance. Under Long-Task, project exact non-UI meaning from this product owner into its existing Source/Contract mechanism only—never build a nested Fact ledger or second closure.
26
-
27
- ## Product-plan output
28
-
29
- Keep the result concise and implementation-usable:
30
-
31
- - goal, user/problem and success outcome;
32
- - in-scope and non-goals;
33
- - product objects/capabilities and owner;
34
- - main and material degraded/recovery flows;
35
- - business/user-visible rules and product feedback;
36
- - acceptance boundaries and observation entry;
37
- - assumptions, external constraints and decision-required gaps;
38
- - durable Context changes and downstream owner routes.
39
-
40
- Do not invent missing business, legal, security, commercial or external decisions. Do not create a required PRD, `plan.md`, Task Contract, Source-to-Context table, matrix, evidence ledger, phase or lifecycle. Context may name repeatable validation/deployment entries but never say a test or deployment passed unless current evidence establishes it.
41
-
42
- Finish with `Context: updated ...` or `Context: no durable fact change`, and clearly separate judged, verified, unverified and decision-required scope.
@@ -1,205 +0,0 @@
1
- ---
2
- name: context_surface_contract
3
- description: Use when the user asks for Product Surface Contract, Surface Contract, Screen Contract, durable product-surface responsibility, information/action/feedback ownership, information architecture governance, main/drilldown ownership, UI product boundary, 产品界面职责治理, 产品接触面, 用户接触面, 页面职责契约, 界面责任契约, or 主层/下钻归属 in a Minimal Context Harness project. Do not trigger for ordinary CSS/UI fixes, product-goal planning, visual Design Authority, design-resource generation, or implementation-only work unless durable surface responsibility is explicitly being defined or repaired.
4
- ---
5
-
6
- # Context Surface Contract
7
-
8
- ## Package-Managed Boundary
9
-
10
- This Skill is generated by `ty-context sync` and owned by the Harness package. Do not edit the generated `context_surface_contract` Skill directly.
11
-
12
- Project-specific Product Surface responsibilities belong in `project_context/**` and an optional `<harnessRoot>/skills/surface_contract/SKILL.md`. This is the sole package-managed owner for durable surface responsibility; it must not contain business-specific page duties, provider facts, project names, raw payload schemas or product examples.
13
-
14
- ## Purpose
15
-
16
- Help agents turn broad product/UI principles into concrete, project-owned Product Surface Contracts while keeping Minimal Context small.
17
-
18
- This Skill owns where user-facing information, actions and feedback belong, including main/drilldown/diagnostic/detail responsibility and cross-surface ownership. `context_product_plan` owns goals, users, business rules, flows and acceptance meaning; `context_uiux_design` owns Design Authority/tokens/rationale/adopted-target interpretation; `design-resource-authoring` owns resource generation. This Skill owns none of those, performs no implementation acceptance and creates no Gate.
19
-
20
- A Product Surface is any user-facing interface where users make judgments, take actions and receive feedback. Covered platforms include Web apps, dashboards, admin or operations UI, mobile screens, desktop windows, game UI/HUD/menu scenes, CLI/TUI output, browser extension or plugin UI, and embedded, kiosk or device UI.
21
-
22
- Use two depths without creating new roles: Product Surface Contract for cross-surface/main-versus-drilldown ownership, and an optional on-demand Screen Contract when one screen needs stable entry/exit/shared-state, information hierarchy, layout regions, navigation, variants or material-control semantics. Start from managed `product-surface-contract.md` or `screen-contract.md`; do not require both for every task.
23
-
24
- ## Context Roles
25
-
26
- Do not add a new `context_role`.
27
-
28
- Use existing roles:
29
-
30
- - `contract` for cross-surface, cross-area or project-level Product Surface Contracts.
31
- - `area` or `subdomain` for owning product-domain Screen Contracts.
32
- - `verification` for repeatable UI, CLI, app or product-surface validation paths.
33
- - `decision-rationale` for stable product-surface tradeoff reasons.
34
- - `implementation-index` for code navigation only.
35
-
36
- Forbidden roles include `surface-contract`, `product-surface`, `web-contract`, `app-contract` and `game-surface`.
37
-
38
- Use `DESIGN.md` only for visual identity, visual tokens and visual rationale. Do not put surface responsibility, main/drilldown ownership or diagnostic placement into `DESIGN.md`.
39
-
40
- Keep one meaning owner: Surface Context owns cross-surface responsibility, Screen/interaction Context owns durable screen/control behavior, `DESIGN.md` owns visual-system semantics and target interpretations, authored targets own concrete declared composition, and verification Context owns repeatable proof paths. Link them with stable surface/control/target keys instead of copying facts.
41
-
42
- ## Mode Selection
43
-
44
- Use the narrowest mode that matches the request:
45
-
46
- - Audit Mode: inspect whether existing surfaces have clear responsibility.
47
- - Compile Mode: turn audit findings or user decisions into Context candidates.
48
- - Apply Mode: write durable Context only when the user explicitly allows durable writes, or when already-authorized product/UI implementation independently yields `Context Delta: required` in the current Goal.
49
- - Conformance Mode: check implementation against an existing Product Surface Contract.
50
-
51
- Do not run implementation, long validation, browser smoke, app smoke or CLI smoke unless the user explicitly asks for execution.
52
-
53
- ## Audit Mode
54
-
55
- Use when the user asks to inspect, review or audit surface responsibility.
56
-
57
- Output only:
58
-
59
- - Surface list.
60
- - Surface platform.
61
- - Code, screenshot, CLI or app evidence inspected.
62
- - Existing Context expectation.
63
- - Drift, missing contract or backend complexity exposure.
64
- - Candidate `Context Delta`.
65
- - Suggested durable placement.
66
- - Optional temporary audit path under `tmp/**` when useful.
67
-
68
- Do not edit durable Context by default. Code, screenshots and CLI output are evidence of current implementation, not authority for product responsibility.
69
-
70
- ## Compile Mode
71
-
72
- Use when turning audit findings or user decisions into Context candidates.
73
-
74
- Output:
75
-
76
- - Project-level Product Surface Contract candidate when responsibilities cross surfaces or areas.
77
- - Area-level Screen Contract candidate when ownership belongs inside one domain.
78
- - `context.toml` candidate registration with `role = "contract"` when durable registration is needed.
79
- - `global.md#Context Index` candidate entry when a new Context file is added.
80
- - Verification candidate for repeatable surface checks.
81
- - Internal source classification when an external product, architecture, technical or acceptance source changes durable surface responsibility; do not create a Markdown coverage table.
82
- - Repo-local Skill task-block candidate when the user wants project-specific enforcement.
83
-
84
- Do not assume business responsibilities from current code shape alone. Ask for confirmation if the candidate would silently choose between competing product or information-architecture meanings.
85
-
86
- ## Apply Mode
87
-
88
- Use only when the user explicitly allows durable writes, or when product/UI implementation is already authorized and the current Goal independently decides that durable Surface/Screen responsibility changed. Skill activation, analysis, audit, candidate comparison or resource generation alone never grants write authority.
89
-
90
- Allowed writes:
91
-
92
- - `project_context/**`.
93
- - `project_context/context.toml`.
94
- - `project_context/global.md#Context Index`.
95
- - Optional `verification` role Context.
96
- - Optional separate project-local Skill files when the user explicitly wants project-local enforcement.
97
-
98
- Forbidden writes:
99
-
100
- - Package-managed generated Skills in a consumer project.
101
- - `<harnessRoot>/ty-context-managed/**` in a consumer project.
102
- - Business code unless the user also requested implementation.
103
- - Generated files.
104
- - `DESIGN.md`, except visual tokens or visual rationale that do not belong in a Product Surface Contract.
105
-
106
- If `Surface Contract Hit` is `none` and the task creates durable surface responsibility, set `Context Delta: required` and update project Context before implementation alignment.
107
-
108
- ## Conformance Mode
109
-
110
- Use after implementation or during review.
111
-
112
- Output:
113
-
114
- - Surface Contract Conformance.
115
- - External-source constraint classification and implementation alignment status.
116
- - Remaining Drift.
117
- - Missing Context.
118
- - Implementation Drift.
119
- - Verification run / not_run / failed.
120
-
121
- Do not store one-off evidence, screenshots, logs, raw outputs or implementation summaries in Context.
122
-
123
- ## Compiler Questions
124
-
125
- For each touched surface, answer only what is relevant:
126
-
127
- - What surface is being touched?
128
- - What platform shape does it have?
129
- - Which authoritative target-user and usage-context reference applies?
130
- - What primary user question does it answer?
131
- - What primary task outcome, primary work object and shortest task loop does it support?
132
- - Which critical context must remain visible while the user acts?
133
- - How are each material operation, affected object and feedback related?
134
- - Does the task force repeated scrolling, navigation or context switching to make one judgment?
135
- - Which client/host, input-method and size-class constraints change the interaction topology?
136
- - What belongs on the main surface?
137
- - What must move to drilldown, diagnostics, operations, evidence or technical detail?
138
- - Which long-running or mutating actions require task id, progress, retry, import, recovery or history?
139
- - Which empty, loading, stale, unavailable, fixture or fallback states matter?
140
- - What validation path can prove conformance?
141
- - If this came from an external plan/source, which source constraints are covered by existing Context, require new Context, are task-local only, are explicitly out of scope, need user decision or remain under-scoped?
142
-
143
- When screen depth is material, also answer only the applicable questions:
144
-
145
- - What stable surface/route key, entry context, exit outcome, inherited state and committed state identify the screen?
146
- - What is the semantic information order and which regions are fixed, scrolling or overlay-owned?
147
- - Across supported size classes, which regions remain, reflow, collapse, become sheets/sidebars/modals or move to another surface, and how is the primary work object preserved?
148
- - Which navigation, back/cancel, focus restoration, interruption and responsive/mode/state variants are durable?
149
- - For each material stable control key, what are its region/location, type/label, user task, visibility/availability, trigger/input/validation/default, interaction/navigation, loading/empty/success/failure/recovery/permission/feedback and accessibility semantics?
150
- - Which exact-target/constraint/inspiration IDs govern which declared conditions, and which verification path proves each independent claim?
151
-
152
- Before applying material UI facts, perform UI Authority Closure: classify each item as Context-covered, Context update, task-local, out of scope or decision-required. Conflicting controlling owners fail closed; current code, timestamps and Contract YAML do not silently win.
153
-
154
- ## Repo-Local Task Block Candidate
155
-
156
- When the user wants project-local enforcement, propose a separate project-local Skill block like this and tailor only the project-specific answers:
157
-
158
- ```markdown
159
- ## Surface Contract Task Block
160
-
161
- For any task touching user-facing surfaces, information placement, forms, filters, search, long-running UI actions, diagnostics, evidence, CLI/TUI output or main/drilldown ownership, answer before implementation:
162
-
163
- - Surface Contract Hit: `<context file / none>`
164
- - Surface: `<route / screen / window / panel / command / HUD / menu>`
165
- - Surface Platform: `<web | mobile | desktop | game | cli-tui | extension | embedded | mixed>`
166
- - Owning Product Domain: `<area / subdomain>`
167
- - Primary User Question: `<one concrete user judgment>`
168
- - Primary Task Outcome / Work Object / Loop: `<outcome; object; orient-act-feedback-finish loop>`
169
- - Critical Context Kept Visible: `<context required while acting>`
170
- - Operation–Object–Feedback: `<material relationship>`
171
- - Client / Size-Class Topology: `<host/input constraints and region changes>`
172
- - Main Surface Allows: `<durable visible information and actions>`
173
- - Main Surface Forbids: `<backend fields, raw payloads, diagnostics, debug ids, fake states, etc.>`
174
- - Drilldown Ownership: `<details / evidence / operations / diagnostics / technical details>`
175
- - Long Task State Requirement: `<run id, progress, retry, recovery, import, history, or none>`
176
- - Context Delta: `<none | required>`
177
- - Verification: `<view-model test / component test / browser smoke / CLI smoke / manual check>`
178
- ```
179
-
180
- Do not add this task block to package-managed default Skills as a universal gate. Projects opt in through separate project-local Skills.
181
-
182
- ## Implementation Alignment
183
-
184
- When implementation is also requested, align code with the Product Surface Contract:
185
-
186
- - View-models or presenters should expose user-facing states instead of raw backend payloads when that contract exists.
187
- - Components or commands should render main-surface facts and move technical details to the owning drilldown.
188
- - Long-running actions should persist or recover the required operation state.
189
- - Tests should assert user-facing state semantics, not only backend field plumbing.
190
- - Browser, app, CLI or game smoke checks should validate actual surface behavior when feasible.
191
-
192
- Final handoff should include concise `Surface Contract Conformance`: contract source, implementation alignment, remaining drift and verification status.
193
-
194
- Conformance must internally confirm that every important external-source constraint is covered by Context, updated into Context, task-local, explicitly out of scope or awaiting a genuine user decision, and that controlling surface facts reached the correct implementation. Unresolved constraints or non-aligned surface implementation mean the work cannot be described as fully aligned; component, modal, viewmodel or unit evidence alone cannot prove main-surface ownership. Do not create a fixed `plan.md`, Task Contract file or Markdown mapping tables for this check.
195
-
196
- ## Output Boundaries
197
-
198
- - Do not create PRDs, UI/UX handoff docs, ADRs, stage artifacts, lifecycle state or phase gates.
199
- - Do not update Context for ordinary CSS tweaks, copy edits or one-off UI bug fixes unless durable surface responsibility changes.
200
- - Do not treat current backend fields, enums, JSON, screenshots or terminal output as product intent.
201
- - Do not invent rationale; rejected alternatives or tradeoffs belong in Context only when they are stable enough to affect future surface decisions.
202
- - Do not add a surface-specific validator, edit-order gate, plan-contract validator or package-level mandatory Surface Contract gate.
203
- - Do not create a `design`/`screen` Context role, per-surface readiness state, UI/UX Contract lifecycle or required Screen Contract for local fixes.
204
- - Do not include business-domain examples in this package-managed Skill.
205
- - Do not author visual values, `DESIGN.md`, design resources, product acceptance evidence, a verification verdict or a workflow Gate.
@@ -1,53 +0,0 @@
1
- ---
2
- name: context_uiux_design
3
- description: Use when the user explicitly asks to establish, adopt or repair durable UI/UX Design Authority, DESIGN.md, design-system governance, visual tokens/rationale, adopted target interpretation, UI Authority Closure, selected-design alignment or durable visual standards; or when actual task content requires material UI/UX analysis or audit for a new page/flow/complex control, information hierarchy, fixed/scroll/overlay/sheet/sidebar/modal topology, map/canvas/editor work, primary task and feedback loop, client adaptation, navigation/recovery/states or accessibility in a Minimal Context Harness project. Do not trigger merely for product/surface responsibility, design-resource generation, ordinary local UI implementation, CSS/copy/icon/image fixes, local exact-target alignment, a single-control visual preview or an unselected visual exploration.
4
- ---
5
-
6
- # Context UI/UX Design
7
-
8
- ## Ownership
9
-
10
- Own durable Design Authority only: root `DESIGN.md`, visual identity and exact-value token source/generation direction, visual rationale, canonical adopted-target interpretation/selection basis, adoption records, UI Authority Closure and selected-design alignment.
11
-
12
- This Skill does not own product goals/business rules/acceptance (`context_product_plan`), information/action/feedback and main/drilldown responsibility (`context_surface_contract`), resource generation (`design-resource-authoring`), implementation, or acceptance. Route rather than duplicate those owners.
13
-
14
- Project-specific UI/UX rules may live in `<harnessRoot>/skills/uiux_design/SKILL.md`; durable facts remain in `DESIGN.md` and owning `project_context/**`. When a valid Long-Task binding is active, `long-task-workflow` alone owns Source/Contract lifecycle, formal verification, Final Gate and completion. This Skill may contribute non-authoritative task-level UI/UX analysis and Design Authority closure, but creates no second plan, lifecycle, Authority, Gate or acceptance path.
15
-
16
- ## Task-level analysis adapter
17
-
18
- For a material task-analysis trigger, read [task-uiux-analysis.md](references/task-uiux-analysis.md) completely and apply only the relevant methods. This adapter is non-authoritative: Product/Surface/Screen Source owns the user, page duty, primary task/work object, information/action/feedback and interaction-topology facts; this Skill still owns durable Design Authority only. The current Goal may compare and select implementation candidates under those constraints. A conflicting candidate cannot proceed to resource generation or implementation until the stale owner is authoritatively updated or a genuine decision is obtained.
19
-
20
- ## UI Authority Closure
21
-
22
- 1. Read core/default and owning surface/interaction Context, root `DESIGN.md`, its authored token source/generation direction, existing production route/components and every affected selected `exact-target` or `constraint` through its immutable locator. Run `ty-context design-resource preflight <handoff.md>` before treating a formal handoff as input.
23
- 2. Classify references as `exact-target`, `constraint` or `inspiration`. Inspiration authorizes no reproduction claim. Provider success, a hash/index or an implementation screenshot proves neither selection nor fidelity.
24
- 3. For every affected stable surface/control/target key, classify durable meaning as Context/`DESIGN.md` covered, requiring update, task-local, out of scope or decision-required. Conflicting, missing, stale, unreadable or unselected authority fails closed for the affected claim.
25
- 4. Confirm exactly one canonical adoption record per adopted target:
26
- - project/system/component-family targets are fully owned by `DESIGN.md`;
27
- - screen/interaction targets are fully owned by the owning Screen Contract, with `DESIGN.md` keeping only the stable key and owner/anchor;
28
- - the record preserves interpretation, selection basis, immutable path/URI and digest, applicable conditions and editable upstream owner/locator/update route.
29
- 5. Never overwrite an adopted baseline. Create a new immutable version/digest, review it deliberately and update the unique canonical record. An implementation render/diff is evidence and cannot become the target it claims to match.
30
- 6. Decide exactly one `Context Delta: none|required`. Skill activation, analysis, audit or candidate comparison alone authorizes no durable write. Durable visual-system, token, rationale, adopted interpretation, owner/anchor or verification-route change is `required`; ordinary UI/CSS fixes that preserve authority are `none`. When product/UI implementation is already authorized and the current Goal independently finds a durable Surface/Screen change, update the smallest owning Surface Context before code or return `decision-required`.
31
- 7. Route unresolved surface placement to `context_surface_contract`; route any request to generate/iterate a wireframe, prototype, visual candidate, state study or handoff to `design-resource-authoring`. Do not invoke resource generation implicitly.
32
-
33
- ## Selected-design alignment
34
-
35
- For a selected implementation handoff, consume the actual canonical resource and its dependency/Fact closure; do not stop at an index or aggregate `complete` label. Preserve exact located values and design-system lineage through stable keys rather than duplicating them into Context.
36
-
37
- An `exact-target` claim requires condition-specific full-target layout and pixel comparison through a project-owned Oracle; a named constraint requires proof of that constraint only. Validate affected state, viewport/platform, theme/mode, content stress, accessibility/input and motion conditions declared by Source. Never replace declared combinations with representative/pairwise sampling unless Source narrows scope or a project-owned complete equivalence proof exists.
38
-
39
- Implementation conformance runs on the real production route/component and affected cold-start journey after the final change. Detached specimens and deep links are supplemental. Report conditions not established; resource integrity/preflight is not production conformance, and screenshot baseline replacement merely to erase a failure is forbidden.
40
-
41
- ## DESIGN.md boundary
42
-
43
- Use Google `@google/design.md` compatible structure: supported YAML tokens plus Markdown rationale. Maintain Design Authority status, one authored exact-value token source/generation direction and the canonical records owned at project/system/component-family scope. Do not add unsupported front-matter keys or duplicate exact values already owned by a project-native token source.
44
-
45
- If available after a change, run `npx @google/design.md lint DESIGN.md`. Exported CSS/theme files are generated implementation outputs, not competing authored truth.
46
-
47
- Missing/unconfigured authority blocks invented style-bearing production design. Only an explicit request to initialize/generate/select/adopt the project design system routes to `design-system-authoring`; local fixes and explicit non-fidelity prototypes remain lightweight.
48
-
49
- ## Output
50
-
51
- Report affected authority owners/keys, selected resource classification and condition coverage, immutable/editable provenance, closure/update decisions, implementation-alignment checks, unresolved claims and `Context: updated ...` or `Context: no durable fact change`.
52
-
53
- Do not create a UI lifecycle, resource pack, Product Surface Contract, acceptance record, fixed plan/matrix, phase or second Authority/Gate. Do not write one-time screenshots, test logs, debug notes or implementation summaries into Context/`DESIGN.md`.
@@ -1,82 +0,0 @@
1
- # Task-Level UI/UX Analysis
2
-
3
- Use this non-authoritative reference only for material UI/UX reasoning or audit. It helps the current Goal understand and compare candidates; it does not own product meaning, page duty, information/action/feedback placement, interaction topology, Design Authority, resources, implementation or acceptance. Product/Surface/Screen/Design Source remains controlling.
4
-
5
- ## 1. Recover the user and operating context
6
-
7
- Read the available product and Surface/Screen Source before evaluating layout. Identify only what is authoritative or explicitly task-local:
8
-
9
- - target user or role and usage context;
10
- - primary task outcome and success feedback;
11
- - client/host/platform, input mode, viewport/size class and environmental constraints;
12
- - current page/surface duty and entry/exit context;
13
- - permissions, data/state, recovery and accessibility constraints; and
14
- - affected exact targets, constraints and inspirations.
15
-
16
- Do not infer a user, task priority or product rule from a feature list, screenshot or current component tree. Missing meaning that changes the candidate remains `decision-required` or belongs in the stale owning Source.
17
-
18
- ## 2. Model the primary work object and task loop
19
-
20
- Name the object the user is inspecting, creating, editing, moving or deciding about. Trace the shortest meaningful loop:
21
-
22
- ```text
23
- orient -> inspect/select the work object -> act -> see local feedback -> recover or continue -> finish
24
- ```
25
-
26
- For each material action, keep operation, affected object and feedback spatially and temporally understandable. Record which context must remain visible while acting, what state commits, how cancellation/retry works and where focus/selection returns. Secondary diagnostics or configuration must not displace the primary work object without an explicit Surface decision.
27
-
28
- ## 3. Test information hierarchy and topology
29
-
30
- Evaluate semantic priority before visual polish:
31
-
32
- - primary judgment, work object and action;
33
- - critical context that must remain visible;
34
- - supporting information and secondary actions;
35
- - drilldown/evidence/diagnostic ownership; and
36
- - loading, empty, partial, error, permission, offline and recovery states.
37
-
38
- Compare the smallest material topology candidates: fixed versus scrolling regions; inline versus overlay; sidebar, sheet, modal or popover; split view; map/canvas/editor viewport; and navigation versus contextual reveal. For each candidate, explain what remains visible, what scrolls, who owns focus/back/cancel and how the primary loop changes across size classes.
39
-
40
- Client-specific structure is allowed when host chrome, safe area, keyboard/input method, pointer/touch conventions, native navigation or viewport constraints materially differ. Do not treat a desktop layout shrunk to mobile width as mobile interaction design.
41
-
42
- ## 4. Walk the task and its counterfactuals
43
-
44
- Run a concise cognitive walkthrough for the primary path and material failure/recovery path:
45
-
46
- 1. Can the user identify the current work object and next useful action?
47
- 2. Is the action discoverable and available at the moment it matters?
48
- 3. Is the affected object unambiguous before commit?
49
- 4. Is progress, success, failure or partial result visible near the action/object?
50
- 5. Can the user cancel, retry, undo, navigate back or recover without losing unexplained state?
51
- 6. Do keyboard, focus, touch target, screen-reader label/order, contrast and reduced-motion needs remain viable?
52
-
53
- Challenge the leading candidate with long content, empty/error/permission states, narrow and wide size classes, localization/text scaling, keyboard or IME display, interrupted work and returning to the prior selection. Apply only conditions material to Source; do not invent a universal matrix.
54
-
55
- ## 5. Compare and select under authority
56
-
57
- For each material candidate, state:
58
-
59
- - which authoritative facts it satisfies;
60
- - the primary-loop advantage and cognitive cost;
61
- - repeated scroll, navigation or context-switch cost;
62
- - state/recovery/accessibility consequences;
63
- - client/size-class behavior; and
64
- - what evidence or decision would change the choice.
65
-
66
- The current Goal may select among implementation-equivalent candidates when Source delegates that freedom. If candidates change product meaning, page duty, main/drilldown placement or a durable interaction topology, update the smallest owning Product Surface/Screen Context only when writes are already authorized and `Context Delta: required`; otherwise return `decision-required`. If a candidate conflicts with an adopted exact target or Design Authority, repair/revise the owning authority first. Only then may explicit resource generation route to `design-resource-authoring`.
67
-
68
- ## Failure sentinels
69
-
70
- Explicitly check for these common defects when relevant:
71
-
72
- - repeated scrolling or cross-surface switching to compare information needed for one decision;
73
- - a hidden, collapsed or displaced primary work object;
74
- - critical actions detached from the object or hidden behind unrelated navigation;
75
- - feedback that does not identify the operation and affected object;
76
- - a keyboard or IME obscuring the editable object, commit/cancel actions or validation feedback;
77
- - destructive, interrupted or failed work with no understandable recovery path; and
78
- - mobile behavior produced only by shrinking desktop regions, with no touch/navigation/keyboard adaptation.
79
-
80
- ## Output
81
-
82
- Return a concise task model, authoritative inputs and gaps, primary work object/loop, operation-object-feedback relationship, hierarchy/topology candidates, walkthrough/counterfactual findings, selected candidate or decision gap, owner/Context effect and verification suggestions. Do not create a required UI plan, matrix, lifecycle, resource pack, acceptance result or durable task-level UI/UX authority.
@@ -1,63 +0,0 @@
1
- ---
2
- name: design-resource-authoring
3
- description: Use when the user explicitly asks to generate, author, commission, iterate or recover design resources; use Open Design; create a scoped wireframe, prototype, visual candidate, component/control state study or implementation handoff; or asks to 生成设计资源, 使用 Open Design, 生成原型图, 生成高保真/低保真设计, 为开发准备设计资源, 恢复设计资源任务, or 先看一个控件/页面效果 in a Minimal Context Harness project. Do not trigger for generic design discussion, UX audits, ordinary UI implementation, local CSS fixes, durable Design Authority adoption, initial product-proposal authoring or Long-Task execution.
4
- ---
5
-
6
- # Design Resource Authoring
7
-
8
- Commission the smallest sufficient resource set for the user's explicit output/development scope. “Smallest” limits artifact count and surrounding scope, never material information granularity. Open Design or another selected provider owns generation; this Skill owns task-local scoping, provider adaptation, iteration, selection reconciliation and handoff preparation—not provider prompts/runtime, Design Authority, product meaning or acceptance.
9
-
10
- ## Hard boundaries
11
-
12
- - A raw proposal, plan, brief, screenshot or existing resource is valid input. Never require or create a special intermediary planning format, and never rewrite caller-owned Source except for the one explicitly selected proposal reconciliation.
13
- - The explicit output/development scope is a hard ceiling. Necessary surrounding context may orient the slice but cannot expand it. Report an outside-ceiling effect as existing `decision-required` with reason `scope-expansion-required`; only explicit user expansion changes the ceiling.
14
- - Candidates are ordinary external Source. They do not select themselves, become `exact-target`, update `DESIGN.md`/Context or prove implementation acceptance.
15
- - A selected task design does not update the project design system. DRA may emit only the non-authoritative Authority Delta Assessment; it never invokes Design System Authoring, selects a system candidate or adopts Authority.
16
- - Keep candidate effects in a task-local buffer. Only after explicit selection or explicitly delegated selection may accepted decisions be reconciled once and idempotently into the initial proposal; never write rejected/unresolved meaning as accepted.
17
- - Never mutate `project_context/**`, `DESIGN.md`, a Delivery Contract, production code or tests as a resource-authoring side effect.
18
- - Do not require a prototype, fidelity pair, provider-native file, fixed directory, variant count, resource pack or one artifact per control. Reuse selected component families and group repeated controls.
19
- - Visual resources may express user-visible interaction/presentation but cannot invent or become sole owner of business, data, permission or algorithmic rules.
20
- - A Web/App implementation resource must be feasible on the real project substrate. DRA may enumerate Source-backed feasible realizations and blockers, but it cannot select a production owner or required realization unless an exact current marked technical Source Item already makes that choice. Role labels, same-file prose and path-only claims are not authority.
21
- - Before commissioning a page, flow or complex control, consume controlling Product/Surface/Screen Source for target user/context, client/host, page duty, primary task outcome, primary work object/task loop, operation-object-feedback and applicable state/recovery/accessibility meaning. Separately consume `DESIGN.md` and selected exact-target/constraint Source for visual-system and selected-design conditions. If the requested direction requires durable Product/Surface/Screen/Design meaning to change, route to and update the actual owner before resuming generation; do not design against stale Source.
22
- - Non-authoritative task-level UI/UX analysis may inform candidate comparison but cannot supply missing product or surface meaning. A Provider must not infer that meaning from a feature list, screenshot, route tree, component inventory or analysis output.
23
- - Do not install/configure MCP, plugins, authentication or disclosure paths without separate authorization. Create no provider registry, global workflow state, authority lifecycle, scheduler or acceptance record.
24
-
25
- ## Progressive references
26
-
27
- 1. Always read [resource-selection.md](references/resource-selection.md) to fix the scope ceiling, authoritative product/surface inputs, intent, input roles, style dependency and minimum commission.
28
- 2. Read [open-design-provider.md](references/open-design-provider.md) only before live capability discovery, provider execution, Design Authority binding, source acquisition or recovery.
29
- 3. Read [downstream-handoff.md](references/downstream-handoff.md) only when selection, proposal reconciliation or downstream handoff is material. A simple unselected preview may stop without it.
30
- 4. Read [authority-delta-assessment.md](references/authority-delta-assessment.md) after task-direction selection whenever a downstream handoff is being prepared. It owns the lightweight post-DRA system-delta judgment and explicit DSA stop.
31
- 5. Read [implementation-feasibility.md](references/implementation-feasibility.md) before commissioning or publishing a Web/App implementation handoff against a real repository substrate. Reference-only and non-implementation resources never load it.
32
- 6. Read [formal-selected-web-app-handoff.md](references/formal-selected-web-app-handoff.md) completely only for an explicitly final selected Web/App implementation handoff. Exploration, unselected previews, reference-only resources and non-Web/App commissions never load this reference.
33
-
34
- For simple-preview overhead accounting, the requested preview is neither additional Provider generation nor an added tool action.
35
-
36
- ## Workflow
37
-
38
- 1. Name in-scope surfaces/flows/regions/component families/unique controls, conditions, necessary context, exclusions and intent: `exploration`, `handoff` or `selected-source-preparation`. For a page, flow or complex control, first resolve controlling Product/Surface/Screen user/context, client/host, page-duty, primary-task, primary-work-object/task-loop, operation-object-feedback and applicable state/recovery/accessibility meaning; separately resolve `DESIGN.md` and selected-target visual conditions. Keep missing meaning unresolved, route a durable owner change before generation and keep outside-ceiling impact `decision-required` rather than filling it from task analysis or expanding scope.
39
- 2. Inventory every input as `exact-target`, `constraint`, `inspiration`, current-implementation evidence or background. Report unreadable/unused material.
40
- 3. Classify the commission `style-bearing` or `non-fidelity`. Style-bearing means high fidelity/brand/visual direction/typography/color/density/component treatment/production-style prototype. IA/flow topology, low-fidelity structure and semantics-only state studies are non-fidelity.
41
- 4. For style-bearing work, read configured Design Authority and its exact-value token source. If unconfigured, stop before provider project/run creation and route the user to explicit `$design-system-authoring`; never invoke it automatically. Non-fidelity work remains allowed.
42
- A combined explicit request authorizes running `$design-system-authoring` first and then resuming this Skill.
43
- Before every style-bearing generation or material revision, use the always-read resource-selection reference to close every applicable current-slice style-application dimension as `existing-covered`, `projected`, `not-applicable` or the existing `decision-required`. No applicable dimension may be silently omitted; `decision-required`, an undispositioned dimension or Source conflict blocks the Provider run. Complete current input-bound coverage permits omitting `style_application`, while the actual envelope contains only `projected` fields; generic design-system identity or Tokens alone are not current-slice coverage. Repeat the judgment for each material revision. A simple preview performs it through the current Source/envelope action without another tool action, persistent state or fixed extra user turn.
44
- 5. For a Web/App implementation handoff, inspect current technical Source for platform, framework/runtime, UI system, token/theming adapter, component-owner roots and route-owner roots. Owner roots are current no-follow repository directories, not arbitrary identifiers. Treat every unavailable or decision-required observation as target-wide: an exact Source-backed blocker naming that observation must reach every material component-family × condition cell, and a target with no family carrier cannot hide the unresolved observation. Cover every material component-family × target × condition profile, including the complete transitive family subject closure, with at least one Source-backed feasible realization or an explicit blocker. A candidate-bearing cell requires observed non-empty component-owner roots; unresolved roots force blocker-only coverage. Exact planned-owner authorization, required realization and blocker authority use the marked-Source decision projection defined by the feasibility reference. Keep canonical design values in design resources; never put them into any feasibility prose field, while explicit technical build/test/runtime costs may retain their time units.
45
- 6. Discover only the live provider capabilities needed by the bounded commission. For a formal generation, major revision or critical regeneration, apply the provider reference's `highest_available_capability + highest_supported_reasoning_effort` policy and fail closed when eligible candidates cannot be authoritatively ranked; never infer rank from price, name, release date or list order, and never claim an effective model/effort the run cannot confirm. Give every considered resource one disposition—`selected`, `optional`, `not-needed`, `unavailable` or `decision-required`—with a reason. Ask only when a missing preference materially changes the result.
46
- 7. Bind style-bearing provider work to the adopted design-system identity, send only the scoped product/resource commission and keep provider execution, model-selection verification, Artifact readiness, Design suitability, human selection and authority adoption distinct.
47
- 8. Iterate within scope. Re-review applicable suitability checks after every material revision. A first render with no material Source, feasibility or suitability defect may be selected directly; never require a revision merely to satisfy process. Exploration returns a visible candidate after minimal sanity review. When direction review or selection is material, use the downstream owner's `Design Resource Review & Selection Stop`; it is not approval, acceptance, formal completeness or persistent state. Do not burden exploration with handoff schema, hashes, complete Fact closure or downstream validation.
48
- 9. After direction selection, preserve canonical immutable identity and editable-upstream provenance. For a selected formal Web/App handoff, complete the formal reference's closure first and return to the review stop if it exposes a new visible decision. Reconcile accepted proposal effects once only after stable formal closure; non-formal small requests retain their one-turn option.
49
- 10. Before downstream handoff, perform the reference-owned Authority Delta Assessment against the complete current Design Authority closure. `consistent_with_current_authority` continues without DSA; a task-only variance declares forbidden precedent; a reusable local variance requires its durable owner decision; an `authority_delta_candidate` returns a non-authoritative packet and stops for a separate explicit `$design-system-authoring` invocation. After adoption, rebind the handoff to the new closure identity and rerun affected validation.
50
-
51
- ## Conditional Design Authority stop
52
-
53
- Unconfigured includes a missing `DESIGN.md`, the starter/status `unconfigured`, style-only prose/inspiration or no authored exact-value token source/generation direction. Say:
54
-
55
- ```text
56
- Style-bearing design resources require an adopted project design system. Explicitly invoke $design-system-authoring to generate/select/adopt one, then resume $design-resource-authoring. I will not initialize it automatically.
57
- ```
58
-
59
- ## Routing and output
60
-
61
- Route durable system adoption/repair to `context_uiux_design`, surface responsibility to `context_surface_contract`, ordinary implementation to the default Workflow Contract/current Goal, and machine-assurance delivery to an explicitly selected/resumed `long-task-workflow`.
62
-
63
- Report intent-sized results: scope/context/exclusions, style gate, input roles, resource dispositions, provider/binding status, visible artifacts/locators, selection basis, immutable/editable provenance, limitations/decision gaps, proposal-reconciliation status and exactly one Authority Delta Assessment when a handoff is prepared. A formal handoff additionally reports exactly what its dedicated reference requires. Never call a failing, unresolved, incomplete or unselected result ready.
@@ -1,52 +0,0 @@
1
- # Authority Delta Assessment
2
-
3
- Run this lightweight assessment only after the task resource direction is selected and, for a formal Web/App handoff, its selected-source closure is stable. It asks whether the selected task design changes durable Design Authority. It is neither Proposal–Resource reconciliation nor an acceptance/adoption Gate.
4
-
5
- ## Bind the current Authority
6
-
7
- Read the complete current project Design Authority closure. A new style-bearing or mixed handoff binds the exact `repository-closure` identity: `format_version`, root `DESIGN.md`, optional `design_system/authority.manifest.json`, closure digest and human revision diagnostic. Bundle format additionally requires the exact body-leading `<!-- ty-context-design-authority-format: bundle-v1 -->` declaration; marker/manifest mismatch is invalid rather than legacy. Legacy omission is only backward compatibility for a true unmarked one-file project. Never compare revision alone.
8
-
9
- If the closure changed after resource selection, re-read it and reassess the selected task design. Do not reuse a stale assessment.
10
-
11
- ## Exactly three assessments
12
-
13
- ### `consistent_with_current_authority`
14
-
15
- Use only when concrete current tokens/components/rules cover the selected task design and `observed_variances` is empty. Cite exact token keys, component keys and local Authority rule anchors. This is evidence-backed Agent judgment, not machine acceptance, and it does not invoke Design System Authoring.
16
-
17
- ### `task_local_variance`
18
-
19
- Use for a deliberate deviation that must not silently become a system rule.
20
-
21
- - A one-task deviation declares `durability: task_only` and `precedent: forbidden`. It may remain in the task handoff, creates no cross-task memory and is never reused as precedent.
22
- - A reusable local rule declares `durability: cross_task_candidate` and one required Screen Contract owner. Before handoff, the user must explicitly update that owner, explicitly start Design System Authoring for a system-level rule, or abandon the durable claim. DRA changes neither owner automatically.
23
-
24
- State scope, reason and affected current rule anchors. Do not accumulate ownerless exceptions.
25
-
26
- ### `authority_delta_candidate`
27
-
28
- Use only when the selected task design proposes a reusable long-lived Token, component, pattern, motion or platform change. Produce a non-authoritative packet based on the exact current closure identity, with keyed proposed changes/rationales, supporting resource anchors and representative scenarios. At least one proposal and one representative scenario are required.
29
-
30
- DRA stops after producing the packet. Tell the user to explicitly invoke `$design-system-authoring` in `reconcile` mode. DRA never invokes it, selects a system candidate or adopts Authority.
31
-
32
- ## Strict data boundary
33
-
34
- When a replayable assessment file is warranted, use the package `design-authority-delta-assessment-v1` JSON shape and validate it read-only:
35
-
36
- ```text
37
- ty-context design-resource authority-delta validate <assessment.json> --json
38
- ```
39
-
40
- The codec accepts only:
41
-
42
- - `consistent_with_current_authority` with concrete evidence and no variance;
43
- - `task_local_variance` with exactly one durability branch;
44
- - `authority_delta_candidate` with the complete proposed-change categories.
45
-
46
- It rejects `status`, `passed`, `selected`, `adopted`, `authority_updated` and unknown fields. Validation proves structural integrity and current base identity only. It performs no write, selection, DSA invocation, adoption or production conformance.
47
-
48
- ## Handoff consequence
49
-
50
- For `consistent_with_current_authority` and a valid task-only variance, return the assessment with the normal DRA handoff. A cross-task candidate blocks an unqualified durable-memory claim until its owner decision closes. An Authority delta candidate blocks system-adoption claims and waits for explicit DSA; the selected task resource may continue only as a user-approved task-only variance or after adoption/rebinding.
51
-
52
- After a DSA adoption, bind the DRA handoff to the new complete closure identity and rerun affected preflight/resource verification before downstream handoff. Page/resource selection never implies system adoption.
@@ -1,67 +0,0 @@
1
- # Selection, Proposal Reconciliation And Downstream Handoff
2
-
3
- Generated resources remain ordinary external Source. Preserve enough identity and meaning for downstream work without creating a Tiny Context pack, registry, authority lifecycle or acceptance result.
4
-
5
- ## Candidate, selection and adoption
6
-
7
- - **Candidate:** provider output proposed for review; it authorizes no fidelity.
8
- - **Selection:** explicit user/team choice, or explicit delegation with known criteria; it permits proposal reconciliation and selected-source preparation.
9
- - **Authority adoption:** later UI Authority Closure reconciles selected Source with surface/interaction Context and `DESIGN.md` and binds implementation/verification to declared conditions.
10
-
11
- Task-resource selection is not design-system adoption. Before downstream handoff, load the dedicated Authority Delta Assessment reference. DRA can classify the selected task design as current-system-consistent, a bounded local variance or a system-delta candidate; none of those classifications adopts Authority.
12
-
13
- This Skill may preserve an input already classified `exact-target`; it cannot promote its own candidate. Unknown coverage remains unknown. Resource hashes, provider success and previews establish neither selection nor production conformance.
14
-
15
- A selection binds the canonical selected-source digest, target identity, declared conditions and controlling Source/Design-Authority identity. Preview URLs, names, PNGs, export archives and wrappers are derived artifacts, not the selection identity. A derived artifact proved equivalent to that canonical source under the bound target/conditions preserves selection; a visible or semantic difference requires fresh Design suitability review and another user choice.
16
-
17
- ## Development-scope coverage
18
-
19
- For every material in-scope surface/flow/region/component/control condition, record selected existing Source, newly generated Source, `not-applicable`, `excluded-by-scope`, `decision-required` or `unavailable`. Include only necessary context and explicit exclusions. One addressable artifact may cover several items; a static/default frame covers only what it actually shows.
20
-
21
- Design resources may show user-visible triggers, transitions, states, feedback and rule presentation. Product/technical Source still owns business, data, permission and algorithmic rules.
22
-
23
- For a Web/App implementation handoff, also return the separate implementation-feasibility Source described in [implementation-feasibility.md](implementation-feasibility.md): real substrate observations plus complete transitive component-family × target × condition candidates/blockers. Owner roots are current repository directories. Planned-owner authorization, required realization and blocker authority bind exact marked technical Source Items and strict decision projections. Exact selected design values remain canonical-resource owned and cannot appear in feasibility prose. Multiple feasible candidates remain allowed; DRA selects none unless current technical authority already requires one.
24
-
25
- ## Design Resource Review & Selection Stop
26
-
27
- Use this explicit interaction point when direction review, correction or candidate selection is material. Show the addressable candidate plus the scope ceiling/necessary context/exclusions, selected existing and generated coverage, preservation obligations, Provider/Artifact qualifiers, Design suitability findings, unchecked conditions, outside-ceiling effects and unresolved choices.
28
-
29
- The user may correct design execution, change a requirement, select/reject a candidate, leave a choice unresolved, explicitly expand scope or request a durable Product/Surface/Screen/Design owner change. Route durable meaning to its actual owner and reread it before DRA resumes. Design suitability never performs selection.
30
-
31
- This stop is not an approval record, `review_set_id`, registry, persisted status, Gate, acceptance, readiness or formal-completeness claim. It is not a required extra turn when a small request can generate, review and select in one turn. Ordinary conversational selection creates no persistent state or deterministic cross-session promise and must be reconfirmed if lost. When deterministic cross-interruption recovery is required, load [recovery-and-writeback.md](recovery-and-writeback.md) and use only its existing marked-Source, authority, selected-source and conditional-checkpoint route.
32
-
33
- ## Reconcile the initial proposal once
34
-
35
- During a simple iteration, keep a task-local buffer of selection basis, selected immutable/editable identities, accepted decisions, rejected alternatives, unresolved choices and affected product/surface/control/state/interaction/visual keys. This is reasoning, not a schema or required file. If the loop is material enough to require replayable Delta, a file writeback or interruption recovery, stop and read [recovery-and-writeback.md](recovery-and-writeback.md); do not approximate safe recovery/CAS from this lightweight reference.
36
-
37
- After selection—and, for a formal Web/App handoff, only after its complete closure produces no new visible decision:
38
-
39
- 1. confirm the selection basis and immutable identity;
40
- 2. consolidate duplicate/intermediate notes;
41
- 3. apply accepted decisions once while preserving unaffected requirements and provenance;
42
- 4. keep rejected choices out of requirements and unresolved choices visibly unresolved;
43
- 5. record stable resource keys and conditions, the immutable provider/project/run/entry locator plus digest/snapshot, and the editable upstream owner, locator and update/export method;
44
- 6. make reruns idempotent by updating the existing decision/reference;
45
- 7. edit the authorized writable initial-proposal file, or return one complete revised proposal when it exists only in conversation.
46
-
47
- Never mutate other caller-owned Source, Context, `DESIGN.md`, Contract, production code or tests. If no selection occurs, return candidates and the pending delta without changing the proposal. If formal closure exposes a new state, resource, condition, visible/semantic change or `decision-required` choice, return to the Review & Selection Stop before reconciliation.
48
-
49
- Non-formal small requests may complete generation, selection and reconciliation in one turn; “once” describes the semantic writeback, not a required pause. Formal Web/App work defers its one reconciliation until direction selection plus stable formal closure.
50
-
51
- ## Intent-sized handoff
52
-
53
- Exploration returns the visible candidate, scope, dispositions, obvious limitations and sanity review. It requires no schema, pack, hash or validator unless retrieval itself needs one.
54
-
55
- A non-formal selected-source handoff preserves target/resource classification, conditions, immutable identity, editable-upstream route, coverage/limitations and proposal identity in a project-native location authorized by the user. It remains ordinary Source.
56
-
57
- Every prepared style-bearing or mixed handoff also binds the complete current project Design Authority closure, not only a human revision label or raw `DESIGN.md` digest. If a subordinate owner changes, the old handoff is stale even when revision text is unchanged. Legacy omission is backward compatibility only for a true one-file Authority.
58
-
59
- For an explicitly selected Web/App implementation handoff, stop here and read [implementation-feasibility.md](implementation-feasibility.md) followed by [formal-selected-web-app-handoff.md](formal-selected-web-app-handoff.md). UI symbolic V2 is explicit opt-in; V1 remains the default. Those references own the real-substrate feasibility Source, strict manifest-backed V1/symbolic V2, Census/Fact/method and bundle/preflight rules. If closure exposes a new visible decision, return here for suitability review and the Review & Selection Stop; only stable closure returns for the one Proposal reconciliation. Do not approximate formal rules from this lightweight reference.
60
-
61
- ## Downstream routing
62
-
63
- The default Workflow opens every affected selected `exact-target` or `constraint` plus current feasibility Source, routes design meaning through owning surface/Design Authority, selects an allowed implementation strategy during Architecture Deliberation, implements through the real production entry, runs applicable current-candidate checks, and reports blockers or unestablished conditions. It does not infer system adoption from a selected task resource or require machine-unique binding selection. When no reliable project-native check observes a production claim, report it as `Unverified`; preflight or model judgment cannot promote it. It does not rebuild a per-Fact proof ledger.
64
-
65
- An active Long-Task uses its one Source/Contract/Authority/Final Gate lifecycle. Existing component bindings must uniquely derive an allowed realization for every candidate-bearing cell and must all be attributed back to an allowing candidate-bearing cell; shared bindings are attributed across the complete surface, not forced onto each target. A surface with empty component refs is admitted only by complete Source-aware activation when every target is all-blocker-only; standalone structure validation, candidate/mixed/legacy targets and fake component bindings remain strict failures. Every `file`/`path_glob` target and carrier, every `verified` carrier and every non-empty planned carrier must be a proven subset of an observed component or route root; partial or unknown containment fails. Exact `path#source-item-key` Claims carry selected planned-owner/required-realization decisions, while every blocker is either `decision_required` or an open/closed target-blocking External Confirmation over affected current-target Claims. An open confirmation may project only its externally blocked design Assertions from machine execution and reaches `blocked_external`, never `machine_accepted`; it does not mutate the Contract or create a second Gate. The resource handoff, feasibility document and controlling technical authority are Source and bind only through existing Contract surfaces; this Skill creates no Contract Draft, Outcome, Progress, Evidence, Receipt, Check result or Gate. Historical Provider, preflight, DRA-audit or project-check results never replace current-candidate evidence in the existing Final Gate.
66
-
67
- Never infer that a generated resource is selected/authoritative/accepted, covers undeclared states or targets, is native implementation because a preview renders, changed durable authority, or proves production fidelity, tests or release readiness.