project-tiny-context-harness 0.8.17 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (983) hide show
  1. package/README.md +74 -481
  2. package/assets/agents/AGENTS_CORE.md +11 -87
  3. package/assets/tools/context_rules.json +54 -0
  4. package/dist/cli.js +2 -1
  5. package/dist/commands/context-create.d.ts +1 -0
  6. package/dist/commands/context-create.js +90 -0
  7. package/dist/commands/context-inspect.d.ts +1 -0
  8. package/dist/commands/context-inspect.js +28 -0
  9. package/dist/commands/context-list.d.ts +1 -0
  10. package/dist/commands/context-list.js +24 -0
  11. package/dist/commands/context-move.d.ts +1 -0
  12. package/dist/commands/context-move.js +78 -0
  13. package/dist/commands/context-register.d.ts +1 -0
  14. package/dist/commands/context-register.js +110 -0
  15. package/dist/commands/context-transaction.d.ts +1 -0
  16. package/dist/commands/context-transaction.js +84 -0
  17. package/dist/commands/context.d.ts +1 -0
  18. package/dist/commands/context.js +40 -0
  19. package/dist/commands/doctor.d.ts +1 -1
  20. package/dist/commands/doctor.js +44 -3
  21. package/dist/commands/index.js +38 -51
  22. package/dist/commands/init.d.ts +0 -2
  23. package/dist/commands/init.js +26 -108
  24. package/dist/commands/upgrade.js +14 -2
  25. package/dist/commands/validate.js +1 -1
  26. package/dist/index.d.ts +2 -13
  27. package/dist/index.js +2 -12
  28. package/dist/lib/cli-exit.d.ts +14 -0
  29. package/dist/lib/cli-exit.js +19 -0
  30. package/dist/lib/config.js +14 -45
  31. package/dist/lib/constants.d.ts +1 -1
  32. package/dist/lib/constants.js +1 -1
  33. package/dist/lib/context-catalog/catalog-default-footprint.d.ts +3 -0
  34. package/dist/lib/context-catalog/catalog-default-footprint.js +51 -0
  35. package/dist/lib/context-catalog/catalog-diagnostics.d.ts +9 -0
  36. package/dist/lib/context-catalog/catalog-diagnostics.js +34 -0
  37. package/dist/lib/context-catalog/catalog-discovery.d.ts +7 -0
  38. package/dist/lib/context-catalog/catalog-discovery.js +81 -0
  39. package/dist/lib/context-catalog/catalog-load.d.ts +8 -0
  40. package/dist/lib/context-catalog/catalog-load.js +205 -0
  41. package/dist/lib/context-catalog/catalog-path-validation.d.ts +7 -0
  42. package/dist/lib/context-catalog/catalog-path-validation.js +72 -0
  43. package/dist/lib/context-catalog/catalog-paths.d.ts +11 -0
  44. package/dist/lib/context-catalog/catalog-paths.js +41 -0
  45. package/dist/lib/context-catalog/catalog-portable-contract.d.ts +15 -0
  46. package/dist/lib/context-catalog/catalog-portable-contract.js +68 -0
  47. package/dist/lib/context-catalog/catalog-staged-path-safety.d.ts +1 -0
  48. package/dist/lib/context-catalog/catalog-staged-path-safety.js +36 -0
  49. package/dist/lib/context-catalog/catalog-types.d.ts +40 -0
  50. package/dist/lib/context-catalog/catalog-validation.d.ts +9 -0
  51. package/dist/lib/context-catalog/catalog-validation.js +156 -0
  52. package/dist/lib/context-controlling-source.d.ts +4 -0
  53. package/dist/lib/context-controlling-source.js +106 -0
  54. package/dist/lib/context-create/context-create-path.d.ts +2 -0
  55. package/dist/lib/context-create/context-create-path.js +30 -0
  56. package/dist/lib/context-create/context-create-template.d.ts +2 -0
  57. package/dist/lib/context-create/context-create-template.js +95 -0
  58. package/dist/lib/context-create/context-create-types.d.ts +28 -0
  59. package/dist/lib/context-create/context-create-write.d.ts +1 -0
  60. package/dist/lib/context-create/context-create-write.js +85 -0
  61. package/dist/lib/context-create/context-create.d.ts +2 -0
  62. package/dist/lib/context-create/context-create.js +86 -0
  63. package/dist/lib/context-default-footprint.d.ts +2 -3
  64. package/dist/lib/context-default-footprint.js +51 -57
  65. package/dist/lib/context-doctor/context-doctor-types.d.ts +6 -0
  66. package/dist/lib/context-doctor/context-doctor-types.js +3 -0
  67. package/dist/lib/context-export.js +17 -9
  68. package/dist/lib/context-inspect/context-inspect-projection.d.ts +8 -0
  69. package/dist/lib/context-inspect/context-inspect-projection.js +48 -0
  70. package/dist/lib/context-inspect/context-inspect-render.d.ts +2 -0
  71. package/dist/lib/context-inspect/context-inspect-render.js +21 -0
  72. package/dist/lib/context-inspect/context-inspect-types.d.ts +29 -0
  73. package/dist/lib/context-inspect/context-inspect.d.ts +2 -0
  74. package/dist/lib/context-inspect/context-inspect.js +77 -0
  75. package/dist/lib/context-manifest-schema.d.ts +2 -1
  76. package/dist/lib/context-manifest-schema.js +6 -21
  77. package/dist/lib/context-manifest.js +1 -41
  78. package/dist/lib/context-markdown/context-markdown-analysis.d.ts +15 -0
  79. package/dist/lib/context-markdown/context-markdown-analysis.js +253 -0
  80. package/dist/lib/context-markdown/context-markdown-extract.d.ts +8 -0
  81. package/dist/lib/context-markdown/context-markdown-extract.js +134 -0
  82. package/dist/lib/context-markdown/context-markdown-types.d.ts +83 -0
  83. package/dist/lib/context-move/context-move-input.d.ts +8 -0
  84. package/dist/lib/context-move/context-move-input.js +17 -0
  85. package/dist/lib/context-move/context-move-literal-scan.d.ts +20 -0
  86. package/dist/lib/context-move/context-move-literal-scan.js +213 -0
  87. package/dist/lib/context-move/context-move-live-validation.d.ts +3 -0
  88. package/dist/lib/context-move/context-move-live-validation.js +56 -0
  89. package/dist/lib/context-move/context-move-markdown-plan.d.ts +22 -0
  90. package/dist/lib/context-move/context-move-markdown-plan.js +39 -0
  91. package/dist/lib/context-move/context-move-projection.d.ts +3 -0
  92. package/dist/lib/context-move/context-move-projection.js +11 -0
  93. package/dist/lib/context-move/context-move-reference-validation.d.ts +11 -0
  94. package/dist/lib/context-move/context-move-reference-validation.js +64 -0
  95. package/dist/lib/context-move/context-move-render.d.ts +2 -0
  96. package/dist/lib/context-move/context-move-render.js +24 -0
  97. package/dist/lib/context-move/context-move-support.d.ts +10 -0
  98. package/dist/lib/context-move/context-move-support.js +88 -0
  99. package/dist/lib/context-move/context-move-transaction-plan.d.ts +24 -0
  100. package/dist/lib/context-move/context-move-transaction-plan.js +108 -0
  101. package/dist/lib/context-move/context-move-types.d.ts +74 -0
  102. package/dist/lib/context-move/context-move.d.ts +8 -0
  103. package/dist/lib/context-move/context-move.js +181 -0
  104. package/dist/lib/context-mutation/manifest-lossless-patch.d.ts +28 -0
  105. package/dist/lib/context-mutation/manifest-lossless-patch.js +219 -0
  106. package/dist/lib/context-mutation/markdown-link-patch.d.ts +34 -0
  107. package/dist/lib/context-mutation/markdown-link-patch.js +143 -0
  108. package/dist/lib/context-mutation/markdown-link-spans.d.ts +10 -0
  109. package/dist/lib/context-mutation/markdown-link-spans.js +179 -0
  110. package/dist/lib/context-mutation/mutation-cas.d.ts +13 -0
  111. package/dist/lib/context-mutation/mutation-cas.js +365 -0
  112. package/dist/lib/context-mutation/mutation-command-support.d.ts +12 -0
  113. package/dist/lib/context-mutation/mutation-command-support.js +57 -0
  114. package/dist/lib/context-mutation/mutation-commit.d.ts +12 -0
  115. package/dist/lib/context-mutation/mutation-commit.js +89 -0
  116. package/dist/lib/context-mutation/mutation-directories.d.ts +5 -0
  117. package/dist/lib/context-mutation/mutation-directories.js +56 -0
  118. package/dist/lib/context-mutation/mutation-file-state.d.ts +14 -0
  119. package/dist/lib/context-mutation/mutation-file-state.js +137 -0
  120. package/dist/lib/context-mutation/mutation-interlock.d.ts +1 -0
  121. package/dist/lib/context-mutation/mutation-interlock.js +9 -0
  122. package/dist/lib/context-mutation/mutation-journal-file-validation.d.ts +1 -0
  123. package/dist/lib/context-mutation/mutation-journal-file-validation.js +106 -0
  124. package/dist/lib/context-mutation/mutation-journal-io.d.ts +5 -0
  125. package/dist/lib/context-mutation/mutation-journal-io.js +55 -0
  126. package/dist/lib/context-mutation/mutation-journal-storage.d.ts +18 -0
  127. package/dist/lib/context-mutation/mutation-journal-storage.js +283 -0
  128. package/dist/lib/context-mutation/mutation-journal-validation-support.d.ts +16 -0
  129. package/dist/lib/context-mutation/mutation-journal-validation-support.js +140 -0
  130. package/dist/lib/context-mutation/mutation-journal-validation.d.ts +3 -0
  131. package/dist/lib/context-mutation/mutation-journal-validation.js +177 -0
  132. package/dist/lib/context-mutation/mutation-journal.d.ts +8 -0
  133. package/dist/lib/context-mutation/mutation-journal.js +111 -0
  134. package/dist/lib/context-mutation/mutation-live-validation.d.ts +3 -0
  135. package/dist/lib/context-mutation/mutation-live-validation.js +51 -0
  136. package/dist/lib/context-mutation/mutation-recovery.d.ts +4 -0
  137. package/dist/lib/context-mutation/mutation-recovery.js +189 -0
  138. package/dist/lib/context-mutation/mutation-staged-fs.d.ts +5 -0
  139. package/dist/lib/context-mutation/mutation-staged-fs.js +56 -0
  140. package/dist/lib/context-mutation/mutation-types.d.ts +103 -0
  141. package/dist/lib/context-register/context-register-input.d.ts +11 -0
  142. package/dist/lib/context-register/context-register-input.js +43 -0
  143. package/dist/lib/context-register/context-register-render.d.ts +2 -0
  144. package/dist/lib/context-register/context-register-render.js +21 -0
  145. package/dist/lib/context-register/context-register-support.d.ts +6 -0
  146. package/dist/lib/context-register/context-register-support.js +46 -0
  147. package/dist/lib/context-register/context-register-types.d.ts +46 -0
  148. package/dist/lib/context-register/context-register.d.ts +8 -0
  149. package/dist/lib/context-register/context-register.js +158 -0
  150. package/dist/lib/context-templates.d.ts +0 -4
  151. package/dist/lib/context-templates.js +1 -210
  152. package/dist/lib/doctor.d.ts +2 -1
  153. package/dist/lib/doctor.js +45 -106
  154. package/dist/lib/fs.js +1 -1
  155. package/dist/lib/{long-task-git.js → git.js} +3 -3
  156. package/dist/lib/init.js +34 -39
  157. package/dist/lib/maintenance-lock.d.ts +3 -0
  158. package/dist/lib/maintenance-lock.js +203 -0
  159. package/dist/lib/maintenance-write.d.ts +3 -0
  160. package/dist/lib/maintenance-write.js +55 -0
  161. package/dist/lib/migrations.d.ts +1 -20
  162. package/dist/lib/migrations.js +48 -714
  163. package/dist/lib/package-json-config.js +34 -21
  164. package/dist/lib/package-source.js +27 -14
  165. package/dist/lib/repository-path-safety.d.ts +3 -0
  166. package/dist/lib/repository-path-safety.js +23 -3
  167. package/dist/lib/retirement-assets.d.ts +13 -0
  168. package/dist/lib/retirement-assets.js +182 -0
  169. package/dist/lib/retirement-binding.d.ts +10 -0
  170. package/dist/lib/retirement-binding.js +59 -0
  171. package/dist/lib/retirement-defaults.d.ts +7 -0
  172. package/dist/lib/retirement-defaults.js +29 -0
  173. package/dist/lib/retirement-plan.d.ts +10 -0
  174. package/dist/lib/retirement-plan.js +96 -0
  175. package/dist/lib/retirement-preflight.d.ts +2 -0
  176. package/dist/lib/retirement-preflight.js +13 -0
  177. package/dist/lib/retirement-references.d.ts +6 -0
  178. package/dist/lib/retirement-references.js +102 -0
  179. package/dist/lib/retirement-runner.d.ts +22 -0
  180. package/dist/lib/retirement-runner.js +217 -0
  181. package/dist/lib/schema-guard.d.ts +1 -0
  182. package/dist/lib/schema-guard.js +47 -6
  183. package/dist/lib/source-files.d.ts +0 -2
  184. package/dist/lib/source-files.js +0 -21
  185. package/dist/lib/source-pack-export.js +4 -1
  186. package/dist/lib/source-pack-manifest.js +93 -38
  187. package/dist/lib/sync-engine.d.ts +7 -1
  188. package/dist/lib/sync-engine.js +38 -336
  189. package/dist/lib/types.d.ts +0 -19
  190. package/dist/lib/upgrade.d.ts +3 -2
  191. package/dist/lib/upgrade.js +30 -40
  192. package/dist/lib/validators.d.ts +4 -1
  193. package/dist/lib/validators.js +76 -517
  194. package/dist/public-api-core.d.ts +15 -0
  195. package/dist/public-api-core.js +15 -0
  196. package/dist/public-types.d.ts +7 -9
  197. package/migrations/README.md +22 -82
  198. package/migrations/schema-4-owned-assets.json +170 -0
  199. package/package.json +18 -22
  200. package/source-mappings.yaml +3 -21
  201. package/assets/README.md +0 -830
  202. package/assets/README.zh-CN.md +0 -497
  203. package/assets/agents/.gitkeep +0 -1
  204. package/assets/agents/long-task-implementation.toml +0 -15
  205. package/assets/context_templates/architecture.md +0 -37
  206. package/assets/context_templates/area.md +0 -40
  207. package/assets/context_templates/context.toml +0 -41
  208. package/assets/context_templates/deployment.md +0 -35
  209. package/assets/context_templates/global.md +0 -57
  210. package/assets/context_templates/product-surface-contract.md +0 -70
  211. package/assets/context_templates/screen-contract.md +0 -205
  212. package/assets/context_templates/verification.md +0 -35
  213. package/assets/github/.gitkeep +0 -1
  214. package/assets/github/harness.yml +0 -41
  215. package/assets/make/.gitkeep +0 -1
  216. package/assets/make/ty-context.mk +0 -48
  217. package/assets/skills/context_development_engineer/SKILL.md +0 -58
  218. package/assets/skills/context_development_engineer/references/engineering-design-reasoning.md +0 -93
  219. package/assets/skills/context_full_project_export/SKILL.md +0 -70
  220. package/assets/skills/context_harness_upgrade/SKILL.md +0 -60
  221. package/assets/skills/context_product_plan/SKILL.md +0 -42
  222. package/assets/skills/context_surface_contract/SKILL.md +0 -205
  223. package/assets/skills/context_uiux_design/SKILL.md +0 -53
  224. package/assets/skills/context_uiux_design/references/task-uiux-analysis.md +0 -82
  225. package/assets/skills/design-resource-authoring/SKILL.md +0 -60
  226. package/assets/skills/design-resource-authoring/references/downstream-handoff.md +0 -63
  227. package/assets/skills/design-resource-authoring/references/formal-selected-web-app-handoff.md +0 -114
  228. package/assets/skills/design-resource-authoring/references/implementation-feasibility.md +0 -111
  229. package/assets/skills/design-resource-authoring/references/open-design-provider.md +0 -198
  230. package/assets/skills/design-resource-authoring/references/recovery-and-writeback.md +0 -205
  231. package/assets/skills/design-resource-authoring/references/resource-selection.md +0 -290
  232. package/assets/skills/design-system-authoring/SKILL.md +0 -57
  233. package/assets/skills/design-system-authoring/agents/openai.yaml +0 -6
  234. package/assets/skills/design-system-authoring/references/authority-adoption.md +0 -48
  235. package/assets/skills/design-system-authoring/references/open-design-design-system-provider.md +0 -110
  236. package/assets/skills/long-task-workflow/SKILL.md +0 -75
  237. package/assets/skills/long-task-workflow/agents/openai.yaml +0 -6
  238. package/assets/skills/long-task-workflow/references/authority-lifecycle.md +0 -80
  239. package/assets/skills/long-task-workflow/references/contract-authoring.md +0 -152
  240. package/assets/skills/long-task-workflow/references/evidence-design.md +0 -121
  241. package/assets/skills/long-task-workflow/references/source-authoring.md +0 -123
  242. package/assets/tools/validate_context.py +0 -442
  243. package/dist/commands/check-modularity.d.ts +0 -1
  244. package/dist/commands/check-modularity.js +0 -181
  245. package/dist/commands/composite-campaign.d.ts +0 -1
  246. package/dist/commands/composite-campaign.js +0 -8
  247. package/dist/commands/composite-long-task.d.ts +0 -1
  248. package/dist/commands/composite-long-task.js +0 -8
  249. package/dist/commands/delivery-set.d.ts +0 -1
  250. package/dist/commands/delivery-set.js +0 -8
  251. package/dist/commands/design-resource-recovery.d.ts +0 -1
  252. package/dist/commands/design-resource-recovery.js +0 -152
  253. package/dist/commands/design-resource.d.ts +0 -1
  254. package/dist/commands/design-resource.js +0 -125
  255. package/dist/commands/disable.d.ts +0 -1
  256. package/dist/commands/disable.js +0 -15
  257. package/dist/commands/enable.d.ts +0 -1
  258. package/dist/commands/enable.js +0 -16
  259. package/dist/commands/long-task-authoring.d.ts +0 -3
  260. package/dist/commands/long-task-authoring.js +0 -216
  261. package/dist/commands/long-task-command-args.d.ts +0 -4
  262. package/dist/commands/long-task-command-args.js +0 -26
  263. package/dist/commands/long-task-explain.d.ts +0 -1
  264. package/dist/commands/long-task-explain.js +0 -52
  265. package/dist/commands/long-task-revision.d.ts +0 -1
  266. package/dist/commands/long-task-revision.js +0 -177
  267. package/dist/commands/long-task.d.ts +0 -1
  268. package/dist/commands/long-task.js +0 -143
  269. package/dist/lib/compact-authoring-support.d.ts +0 -22
  270. package/dist/lib/compact-authoring-support.js +0 -143
  271. package/dist/lib/compact-shared-structure-authoring.d.ts +0 -5
  272. package/dist/lib/compact-shared-structure-authoring.js +0 -9
  273. package/dist/lib/compact-shared-structure-types.d.ts +0 -61
  274. package/dist/lib/compact-shared-structure-validation.d.ts +0 -2
  275. package/dist/lib/compact-shared-structure-validation.js +0 -159
  276. package/dist/lib/compact-shared-structures.d.ts +0 -3
  277. package/dist/lib/compact-shared-structures.js +0 -204
  278. package/dist/lib/context-graph-snapshot.d.ts +0 -18
  279. package/dist/lib/context-graph-snapshot.js +0 -178
  280. package/dist/lib/design-md.d.ts +0 -12
  281. package/dist/lib/design-md.js +0 -169
  282. package/dist/lib/design-resource-fact-enums.d.ts +0 -24
  283. package/dist/lib/design-resource-fact-enums.js +0 -182
  284. package/dist/lib/design-resource-fact-locator-extractors.d.ts +0 -8
  285. package/dist/lib/design-resource-fact-locator-extractors.js +0 -108
  286. package/dist/lib/design-resource-fact-locator-resolver.d.ts +0 -3
  287. package/dist/lib/design-resource-fact-locator-resolver.js +0 -112
  288. package/dist/lib/design-resource-fact-locator-validation.d.ts +0 -5
  289. package/dist/lib/design-resource-fact-locator-validation.js +0 -16
  290. package/dist/lib/design-resource-fact-manifest-catalog.d.ts +0 -4
  291. package/dist/lib/design-resource-fact-manifest-catalog.js +0 -249
  292. package/dist/lib/design-resource-fact-manifest-model.d.ts +0 -91
  293. package/dist/lib/design-resource-fact-manifest-model.js +0 -21
  294. package/dist/lib/design-resource-fact-manifest-shape-axes.d.ts +0 -6
  295. package/dist/lib/design-resource-fact-manifest-shape-axes.js +0 -159
  296. package/dist/lib/design-resource-fact-manifest-shape-evidence.d.ts +0 -4
  297. package/dist/lib/design-resource-fact-manifest-shape-evidence.js +0 -59
  298. package/dist/lib/design-resource-fact-manifest-shape-facts.d.ts +0 -4
  299. package/dist/lib/design-resource-fact-manifest-shape-facts.js +0 -109
  300. package/dist/lib/design-resource-fact-manifest-shape-inspector.d.ts +0 -5
  301. package/dist/lib/design-resource-fact-manifest-shape-inspector.js +0 -144
  302. package/dist/lib/design-resource-fact-manifest-shape.d.ts +0 -7
  303. package/dist/lib/design-resource-fact-manifest-shape.js +0 -75
  304. package/dist/lib/design-resource-fact-manifest-types.d.ts +0 -3
  305. package/dist/lib/design-resource-fact-manifest-types.js +0 -3
  306. package/dist/lib/design-resource-fact-manifest-universe.d.ts +0 -5
  307. package/dist/lib/design-resource-fact-manifest-universe.js +0 -50
  308. package/dist/lib/design-resource-fact-manifest-validation.d.ts +0 -5
  309. package/dist/lib/design-resource-fact-manifest-validation.js +0 -111
  310. package/dist/lib/design-resource-fact-policy.d.ts +0 -43
  311. package/dist/lib/design-resource-fact-policy.js +0 -106
  312. package/dist/lib/design-resource-fact-property-methods.d.ts +0 -3
  313. package/dist/lib/design-resource-fact-property-methods.js +0 -158
  314. package/dist/lib/design-resource-fact-shape-primitives.d.ts +0 -3
  315. package/dist/lib/design-resource-fact-shape-primitives.js +0 -18
  316. package/dist/lib/design-resource-fact-types.d.ts +0 -164
  317. package/dist/lib/design-resource-fact-universe-assets.d.ts +0 -4
  318. package/dist/lib/design-resource-fact-universe-assets.js +0 -71
  319. package/dist/lib/design-resource-fact-universe-catalog.d.ts +0 -4
  320. package/dist/lib/design-resource-fact-universe-catalog.js +0 -161
  321. package/dist/lib/design-resource-fact-universe-conditions.d.ts +0 -2
  322. package/dist/lib/design-resource-fact-universe-conditions.js +0 -92
  323. package/dist/lib/design-resource-fact-universe-facts.d.ts +0 -4
  324. package/dist/lib/design-resource-fact-universe-facts.js +0 -108
  325. package/dist/lib/design-resource-fact-universe-helpers.d.ts +0 -30
  326. package/dist/lib/design-resource-fact-universe-helpers.js +0 -171
  327. package/dist/lib/design-resource-fact-universe-inspector.d.ts +0 -7
  328. package/dist/lib/design-resource-fact-universe-inspector.js +0 -119
  329. package/dist/lib/design-resource-fact-universe-proof.d.ts +0 -4
  330. package/dist/lib/design-resource-fact-universe-proof.js +0 -113
  331. package/dist/lib/design-resource-fact-universe-subjects.d.ts +0 -5
  332. package/dist/lib/design-resource-fact-universe-subjects.js +0 -97
  333. package/dist/lib/design-resource-fact-universe-variations.d.ts +0 -2
  334. package/dist/lib/design-resource-fact-universe-variations.js +0 -75
  335. package/dist/lib/design-resource-fact-value-validation.d.ts +0 -2
  336. package/dist/lib/design-resource-fact-value-validation.js +0 -80
  337. package/dist/lib/design-resource-handoff-bundle-draft.d.ts +0 -11
  338. package/dist/lib/design-resource-handoff-bundle-draft.js +0 -40
  339. package/dist/lib/design-resource-handoff-bundle.d.ts +0 -31
  340. package/dist/lib/design-resource-handoff-bundle.js +0 -152
  341. package/dist/lib/design-resource-handoff-file-primitives.d.ts +0 -4
  342. package/dist/lib/design-resource-handoff-file-primitives.js +0 -16
  343. package/dist/lib/design-resource-handoff-file-validation.d.ts +0 -2
  344. package/dist/lib/design-resource-handoff-file-validation.js +0 -47
  345. package/dist/lib/design-resource-handoff-input-types.d.ts +0 -14
  346. package/dist/lib/design-resource-handoff-manifest-projection.d.ts +0 -4
  347. package/dist/lib/design-resource-handoff-manifest-projection.js +0 -38
  348. package/dist/lib/design-resource-handoff-parser.d.ts +0 -8
  349. package/dist/lib/design-resource-handoff-parser.js +0 -49
  350. package/dist/lib/design-resource-handoff-policy.d.ts +0 -4
  351. package/dist/lib/design-resource-handoff-policy.js +0 -143
  352. package/dist/lib/design-resource-handoff-set-integrity.d.ts +0 -8
  353. package/dist/lib/design-resource-handoff-set-integrity.js +0 -94
  354. package/dist/lib/design-resource-handoff-shape-evidence.d.ts +0 -6
  355. package/dist/lib/design-resource-handoff-shape-evidence.js +0 -187
  356. package/dist/lib/design-resource-handoff-shape-primitives.d.ts +0 -14
  357. package/dist/lib/design-resource-handoff-shape-primitives.js +0 -70
  358. package/dist/lib/design-resource-handoff-shape-structure.d.ts +0 -5
  359. package/dist/lib/design-resource-handoff-shape-structure.js +0 -239
  360. package/dist/lib/design-resource-handoff-shape.d.ts +0 -6
  361. package/dist/lib/design-resource-handoff-shape.js +0 -180
  362. package/dist/lib/design-resource-handoff-snapshot.d.ts +0 -6
  363. package/dist/lib/design-resource-handoff-snapshot.js +0 -25
  364. package/dist/lib/design-resource-handoff-types.d.ts +0 -261
  365. package/dist/lib/design-resource-handoff-types.js +0 -68
  366. package/dist/lib/design-resource-handoff-validation-coverage.d.ts +0 -4
  367. package/dist/lib/design-resource-handoff-validation-coverage.js +0 -223
  368. package/dist/lib/design-resource-handoff-validation-fact-cells.d.ts +0 -2
  369. package/dist/lib/design-resource-handoff-validation-fact-cells.js +0 -60
  370. package/dist/lib/design-resource-handoff-validation-fact-records.d.ts +0 -2
  371. package/dist/lib/design-resource-handoff-validation-fact-records.js +0 -90
  372. package/dist/lib/design-resource-handoff-validation-facts.d.ts +0 -2
  373. package/dist/lib/design-resource-handoff-validation-facts.js +0 -13
  374. package/dist/lib/design-resource-handoff-validation-primitives.d.ts +0 -11
  375. package/dist/lib/design-resource-handoff-validation-primitives.js +0 -26
  376. package/dist/lib/design-resource-handoff-validation-proofs.d.ts +0 -2
  377. package/dist/lib/design-resource-handoff-validation-proofs.js +0 -67
  378. package/dist/lib/design-resource-handoff-validation-resource-closure.d.ts +0 -3
  379. package/dist/lib/design-resource-handoff-validation-resource-closure.js +0 -88
  380. package/dist/lib/design-resource-handoff-validation-structure.d.ts +0 -6
  381. package/dist/lib/design-resource-handoff-validation-structure.js +0 -124
  382. package/dist/lib/design-resource-handoff-validation.d.ts +0 -8
  383. package/dist/lib/design-resource-handoff-validation.js +0 -165
  384. package/dist/lib/design-resource-handoff-web-dependency-validation.d.ts +0 -6
  385. package/dist/lib/design-resource-handoff-web-dependency-validation.js +0 -130
  386. package/dist/lib/design-resource-implementation-feasibility-model.d.ts +0 -35
  387. package/dist/lib/design-resource-implementation-feasibility-model.js +0 -62
  388. package/dist/lib/design-resource-implementation-feasibility-shape-sections.d.ts +0 -43
  389. package/dist/lib/design-resource-implementation-feasibility-shape-sections.js +0 -142
  390. package/dist/lib/design-resource-implementation-feasibility-shape.d.ts +0 -4
  391. package/dist/lib/design-resource-implementation-feasibility-shape.js +0 -154
  392. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.d.ts +0 -24
  393. package/dist/lib/design-resource-implementation-feasibility-source-decision-projection.js +0 -106
  394. package/dist/lib/design-resource-implementation-feasibility-source-decision.d.ts +0 -21
  395. package/dist/lib/design-resource-implementation-feasibility-source-decision.js +0 -75
  396. package/dist/lib/design-resource-implementation-feasibility-types.d.ts +0 -135
  397. package/dist/lib/design-resource-implementation-feasibility-types.js +0 -37
  398. package/dist/lib/design-resource-implementation-feasibility-validation-cells.d.ts +0 -5
  399. package/dist/lib/design-resource-implementation-feasibility-validation-cells.js +0 -125
  400. package/dist/lib/design-resource-implementation-feasibility-validation-document.d.ts +0 -4
  401. package/dist/lib/design-resource-implementation-feasibility-validation-document.js +0 -167
  402. package/dist/lib/design-resource-implementation-feasibility-validation-facts.d.ts +0 -3
  403. package/dist/lib/design-resource-implementation-feasibility-validation-facts.js +0 -76
  404. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.d.ts +0 -8
  405. package/dist/lib/design-resource-implementation-feasibility-validation-realizations.js +0 -76
  406. package/dist/lib/design-resource-implementation-feasibility-validation-support.d.ts +0 -10
  407. package/dist/lib/design-resource-implementation-feasibility-validation-support.js +0 -75
  408. package/dist/lib/design-resource-implementation-feasibility-validation.d.ts +0 -3
  409. package/dist/lib/design-resource-implementation-feasibility-validation.js +0 -138
  410. package/dist/lib/design-resource-reconciliation-codec.d.ts +0 -2
  411. package/dist/lib/design-resource-reconciliation-codec.js +0 -174
  412. package/dist/lib/design-resource-reconciliation-types.d.ts +0 -62
  413. package/dist/lib/design-resource-reconciliation.d.ts +0 -3
  414. package/dist/lib/design-resource-reconciliation.js +0 -224
  415. package/dist/lib/design-resource-recovery-authority-policy.d.ts +0 -8
  416. package/dist/lib/design-resource-recovery-authority-policy.js +0 -123
  417. package/dist/lib/design-resource-recovery-catalog-resources.d.ts +0 -6
  418. package/dist/lib/design-resource-recovery-catalog-resources.js +0 -121
  419. package/dist/lib/design-resource-recovery-catalog-shape.d.ts +0 -3
  420. package/dist/lib/design-resource-recovery-catalog-shape.js +0 -104
  421. package/dist/lib/design-resource-recovery-catalog.d.ts +0 -9
  422. package/dist/lib/design-resource-recovery-catalog.js +0 -103
  423. package/dist/lib/design-resource-recovery-cleanup.d.ts +0 -2
  424. package/dist/lib/design-resource-recovery-cleanup.js +0 -11
  425. package/dist/lib/design-resource-recovery-codec-primitives.d.ts +0 -19
  426. package/dist/lib/design-resource-recovery-codec-primitives.js +0 -92
  427. package/dist/lib/design-resource-recovery-codec.d.ts +0 -4
  428. package/dist/lib/design-resource-recovery-codec.js +0 -93
  429. package/dist/lib/design-resource-recovery-current.d.ts +0 -9
  430. package/dist/lib/design-resource-recovery-current.js +0 -41
  431. package/dist/lib/design-resource-recovery-delta-policy.d.ts +0 -5
  432. package/dist/lib/design-resource-recovery-delta-policy.js +0 -108
  433. package/dist/lib/design-resource-recovery-files.d.ts +0 -37
  434. package/dist/lib/design-resource-recovery-files.js +0 -204
  435. package/dist/lib/design-resource-recovery-final-disposition-shape.d.ts +0 -2
  436. package/dist/lib/design-resource-recovery-final-disposition-shape.js +0 -47
  437. package/dist/lib/design-resource-recovery-patch-types.d.ts +0 -54
  438. package/dist/lib/design-resource-recovery-replay.d.ts +0 -7
  439. package/dist/lib/design-resource-recovery-replay.js +0 -112
  440. package/dist/lib/design-resource-recovery-repository-bindings.d.ts +0 -9
  441. package/dist/lib/design-resource-recovery-repository-bindings.js +0 -49
  442. package/dist/lib/design-resource-recovery-schema.d.ts +0 -5
  443. package/dist/lib/design-resource-recovery-schema.js +0 -5
  444. package/dist/lib/design-resource-recovery-shape.d.ts +0 -10
  445. package/dist/lib/design-resource-recovery-shape.js +0 -184
  446. package/dist/lib/design-resource-recovery-source-authority.d.ts +0 -5
  447. package/dist/lib/design-resource-recovery-source-authority.js +0 -219
  448. package/dist/lib/design-resource-recovery-text.d.ts +0 -17
  449. package/dist/lib/design-resource-recovery-text.js +0 -186
  450. package/dist/lib/design-resource-recovery-types.d.ts +0 -197
  451. package/dist/lib/design-resource-recovery-writeback-policy.d.ts +0 -5
  452. package/dist/lib/design-resource-recovery-writeback-policy.js +0 -326
  453. package/dist/lib/design-resource-recovery-writeback-shape.d.ts +0 -6
  454. package/dist/lib/design-resource-recovery-writeback-shape.js +0 -155
  455. package/dist/lib/design-resource-recovery.d.ts +0 -44
  456. package/dist/lib/design-resource-recovery.js +0 -216
  457. package/dist/lib/design-resource-symbolic-applicability-authority.d.ts +0 -7
  458. package/dist/lib/design-resource-symbolic-applicability-authority.js +0 -19
  459. package/dist/lib/design-resource-symbolic-applicability-policy.d.ts +0 -12
  460. package/dist/lib/design-resource-symbolic-applicability-policy.js +0 -79
  461. package/dist/lib/design-resource-symbolic-applicability-profiles.d.ts +0 -8
  462. package/dist/lib/design-resource-symbolic-applicability-profiles.js +0 -55
  463. package/dist/lib/design-resource-symbolic-applicability-shape.d.ts +0 -2
  464. package/dist/lib/design-resource-symbolic-applicability-shape.js +0 -76
  465. package/dist/lib/design-resource-symbolic-applicability-validation.d.ts +0 -7
  466. package/dist/lib/design-resource-symbolic-applicability-validation.js +0 -128
  467. package/dist/lib/design-resource-symbolic-compilation.d.ts +0 -3
  468. package/dist/lib/design-resource-symbolic-compilation.js +0 -13
  469. package/dist/lib/design-resource-symbolic-denotation.d.ts +0 -3
  470. package/dist/lib/design-resource-symbolic-denotation.js +0 -167
  471. package/dist/lib/design-resource-symbolic-disposition-validation.d.ts +0 -4
  472. package/dist/lib/design-resource-symbolic-disposition-validation.js +0 -28
  473. package/dist/lib/design-resource-symbolic-fact-policy.d.ts +0 -12
  474. package/dist/lib/design-resource-symbolic-fact-policy.js +0 -12
  475. package/dist/lib/design-resource-symbolic-fact-shape.d.ts +0 -3
  476. package/dist/lib/design-resource-symbolic-fact-shape.js +0 -140
  477. package/dist/lib/design-resource-symbolic-fact-types.d.ts +0 -218
  478. package/dist/lib/design-resource-symbolic-fact-validation.d.ts +0 -3
  479. package/dist/lib/design-resource-symbolic-fact-validation.js +0 -99
  480. package/dist/lib/design-resource-symbolic-indexes.d.ts +0 -23
  481. package/dist/lib/design-resource-symbolic-indexes.js +0 -54
  482. package/dist/lib/design-resource-symbolic-manifest-shape.d.ts +0 -3
  483. package/dist/lib/design-resource-symbolic-manifest-shape.js +0 -155
  484. package/dist/lib/design-resource-symbolic-manifest-validation.d.ts +0 -6
  485. package/dist/lib/design-resource-symbolic-manifest-validation.js +0 -132
  486. package/dist/lib/design-resource-symbolic-noninterference-artifact.d.ts +0 -33
  487. package/dist/lib/design-resource-symbolic-noninterference-artifact.js +0 -110
  488. package/dist/lib/design-resource-symbolic-noninterference-equivalence.d.ts +0 -3
  489. package/dist/lib/design-resource-symbolic-noninterference-equivalence.js +0 -77
  490. package/dist/lib/design-resource-symbolic-noninterference-recompute.d.ts +0 -4
  491. package/dist/lib/design-resource-symbolic-noninterference-recompute.js +0 -146
  492. package/dist/lib/design-resource-symbolic-noninterference-scope.d.ts +0 -7
  493. package/dist/lib/design-resource-symbolic-noninterference-scope.js +0 -49
  494. package/dist/lib/design-resource-symbolic-noninterference-shape.d.ts +0 -2
  495. package/dist/lib/design-resource-symbolic-noninterference-shape.js +0 -152
  496. package/dist/lib/design-resource-symbolic-noninterference-types.d.ts +0 -103
  497. package/dist/lib/design-resource-symbolic-noninterference-types.js +0 -1
  498. package/dist/lib/design-resource-symbolic-noninterference-validation.d.ts +0 -5
  499. package/dist/lib/design-resource-symbolic-noninterference-validation.js +0 -62
  500. package/dist/lib/design-resource-symbolic-oracle-fingerprint.d.ts +0 -1
  501. package/dist/lib/design-resource-symbolic-oracle-fingerprint.js +0 -47
  502. package/dist/lib/design-resource-symbolic-predicate-shape.d.ts +0 -6
  503. package/dist/lib/design-resource-symbolic-predicate-shape.js +0 -123
  504. package/dist/lib/design-resource-symbolic-production-closure.d.ts +0 -4
  505. package/dist/lib/design-resource-symbolic-production-closure.js +0 -144
  506. package/dist/lib/design-resource-symbolic-proof-authority-validation.d.ts +0 -10
  507. package/dist/lib/design-resource-symbolic-proof-authority-validation.js +0 -68
  508. package/dist/lib/design-resource-symbolic-proof-validation.d.ts +0 -10
  509. package/dist/lib/design-resource-symbolic-proof-validation.js +0 -89
  510. package/dist/lib/design-resource-symbolic-region-validation.d.ts +0 -19
  511. package/dist/lib/design-resource-symbolic-region-validation.js +0 -146
  512. package/dist/lib/design-resource-symbolic-resource-validation.d.ts +0 -5
  513. package/dist/lib/design-resource-symbolic-resource-validation.js +0 -90
  514. package/dist/lib/design-resource-symbolic-rule-shape.d.ts +0 -27
  515. package/dist/lib/design-resource-symbolic-rule-shape.js +0 -158
  516. package/dist/lib/design-resource-symbolic-safety-validation.d.ts +0 -6
  517. package/dist/lib/design-resource-symbolic-safety-validation.js +0 -29
  518. package/dist/lib/design-resource-symbolic-source-ir-evaluation.d.ts +0 -19
  519. package/dist/lib/design-resource-symbolic-source-ir-evaluation.js +0 -74
  520. package/dist/lib/design-resource-symbolic-source-ir-evidence.d.ts +0 -44
  521. package/dist/lib/design-resource-symbolic-source-ir-evidence.js +0 -88
  522. package/dist/lib/design-resource-symbolic-source-ir-oracle.d.ts +0 -13
  523. package/dist/lib/design-resource-symbolic-source-ir-oracle.js +0 -96
  524. package/dist/lib/design-resource-symbolic-source-ir-proof.d.ts +0 -14
  525. package/dist/lib/design-resource-symbolic-source-ir-proof.js +0 -98
  526. package/dist/lib/design-resource-symbolic-source-ir-shape.d.ts +0 -2
  527. package/dist/lib/design-resource-symbolic-source-ir-shape.js +0 -38
  528. package/dist/lib/design-resource-symbolic-source-ir-types.d.ts +0 -17
  529. package/dist/lib/design-resource-symbolic-source-ir-types.js +0 -2
  530. package/dist/lib/design-resource-symbolic-static-dependency-validation.d.ts +0 -2
  531. package/dist/lib/design-resource-symbolic-static-dependency-validation.js +0 -83
  532. package/dist/lib/design-resource-symbolic-structural-closure-validation.d.ts +0 -6
  533. package/dist/lib/design-resource-symbolic-structural-closure-validation.js +0 -79
  534. package/dist/lib/design-resource-symbolic-validation-support.d.ts +0 -29
  535. package/dist/lib/design-resource-symbolic-validation-support.js +0 -111
  536. package/dist/lib/design-resource-v1-capacity-header.d.ts +0 -8
  537. package/dist/lib/design-resource-v1-capacity-header.js +0 -231
  538. package/dist/lib/design-resource-v1-capacity.d.ts +0 -5
  539. package/dist/lib/design-resource-v1-capacity.js +0 -45
  540. package/dist/lib/execution-target-capabilities.d.ts +0 -2
  541. package/dist/lib/execution-target-capabilities.js +0 -45
  542. package/dist/lib/legacy-managed-scan.d.ts +0 -2
  543. package/dist/lib/legacy-managed-scan.js +0 -95
  544. package/dist/lib/legacy-sdlc-migration.d.ts +0 -2
  545. package/dist/lib/legacy-sdlc-migration.js +0 -199
  546. package/dist/lib/long-task-acceptance-reference.d.ts +0 -22
  547. package/dist/lib/long-task-acceptance-reference.js +0 -46
  548. package/dist/lib/long-task-acceptance-shape.d.ts +0 -5
  549. package/dist/lib/long-task-acceptance-shape.js +0 -198
  550. package/dist/lib/long-task-activation-validation.d.ts +0 -21
  551. package/dist/lib/long-task-activation-validation.js +0 -243
  552. package/dist/lib/long-task-admitted-observation-records.d.ts +0 -25
  553. package/dist/lib/long-task-admitted-observation-records.js +0 -40
  554. package/dist/lib/long-task-admitted-observation.d.ts +0 -93
  555. package/dist/lib/long-task-admitted-observation.js +0 -201
  556. package/dist/lib/long-task-applicability-shape.d.ts +0 -4
  557. package/dist/lib/long-task-applicability-shape.js +0 -54
  558. package/dist/lib/long-task-artifacts.d.ts +0 -6
  559. package/dist/lib/long-task-artifacts.js +0 -35
  560. package/dist/lib/long-task-assertions-v2.d.ts +0 -22
  561. package/dist/lib/long-task-assertions-v2.js +0 -220
  562. package/dist/lib/long-task-authoring-authority-preview.d.ts +0 -5
  563. package/dist/lib/long-task-authoring-authority-preview.js +0 -87
  564. package/dist/lib/long-task-authoring-preflight-diagnostics.d.ts +0 -8
  565. package/dist/lib/long-task-authoring-preflight-diagnostics.js +0 -191
  566. package/dist/lib/long-task-authoring-preflight-repair-order.d.ts +0 -8
  567. package/dist/lib/long-task-authoring-preflight-repair-order.js +0 -98
  568. package/dist/lib/long-task-authoring-preflight-types.d.ts +0 -46
  569. package/dist/lib/long-task-authoring-preflight-types.js +0 -38
  570. package/dist/lib/long-task-authoring-preflight.d.ts +0 -3
  571. package/dist/lib/long-task-authoring-preflight.js +0 -86
  572. package/dist/lib/long-task-authority-material-diff.d.ts +0 -17
  573. package/dist/lib/long-task-authority-material-diff.js +0 -221
  574. package/dist/lib/long-task-authority-materials.d.ts +0 -7
  575. package/dist/lib/long-task-authority-materials.js +0 -166
  576. package/dist/lib/long-task-authority-policy.d.ts +0 -287
  577. package/dist/lib/long-task-authority-policy.js +0 -307
  578. package/dist/lib/long-task-authority-revision-analysis.d.ts +0 -34
  579. package/dist/lib/long-task-authority-revision-analysis.js +0 -121
  580. package/dist/lib/long-task-authority-revision-brief.d.ts +0 -3
  581. package/dist/lib/long-task-authority-revision-brief.js +0 -76
  582. package/dist/lib/long-task-authority-revision-details.d.ts +0 -21
  583. package/dist/lib/long-task-authority-revision-details.js +0 -204
  584. package/dist/lib/long-task-authority-revision-diagnosis.d.ts +0 -24
  585. package/dist/lib/long-task-authority-revision-diagnosis.js +0 -149
  586. package/dist/lib/long-task-authority-revision-enforcement.d.ts +0 -5
  587. package/dist/lib/long-task-authority-revision-enforcement.js +0 -53
  588. package/dist/lib/long-task-authority-revision-summary.d.ts +0 -14
  589. package/dist/lib/long-task-authority-revision-summary.js +0 -246
  590. package/dist/lib/long-task-authority-revision-types.d.ts +0 -119
  591. package/dist/lib/long-task-authority-revision-types.js +0 -1
  592. package/dist/lib/long-task-authority-revision.d.ts +0 -4
  593. package/dist/lib/long-task-authority-revision.js +0 -156
  594. package/dist/lib/long-task-authority-transition-policy.d.ts +0 -62
  595. package/dist/lib/long-task-authority-transition-policy.js +0 -62
  596. package/dist/lib/long-task-authority-types.d.ts +0 -129
  597. package/dist/lib/long-task-authority-types.js +0 -1
  598. package/dist/lib/long-task-authority.d.ts +0 -7
  599. package/dist/lib/long-task-authority.js +0 -200
  600. package/dist/lib/long-task-boundary-check.d.ts +0 -15
  601. package/dist/lib/long-task-boundary-check.js +0 -9
  602. package/dist/lib/long-task-check-evidence-decoder.d.ts +0 -3
  603. package/dist/lib/long-task-check-evidence-decoder.js +0 -84
  604. package/dist/lib/long-task-check-execution-policy.d.ts +0 -21
  605. package/dist/lib/long-task-check-execution-policy.js +0 -48
  606. package/dist/lib/long-task-check-runner.d.ts +0 -2
  607. package/dist/lib/long-task-check-runner.js +0 -307
  608. package/dist/lib/long-task-check-shape.d.ts +0 -2
  609. package/dist/lib/long-task-check-shape.js +0 -171
  610. package/dist/lib/long-task-claim-definitions.d.ts +0 -7
  611. package/dist/lib/long-task-claim-definitions.js +0 -85
  612. package/dist/lib/long-task-claim-proof-policy.d.ts +0 -4
  613. package/dist/lib/long-task-claim-proof-policy.js +0 -57
  614. package/dist/lib/long-task-claims.d.ts +0 -28
  615. package/dist/lib/long-task-claims.js +0 -373
  616. package/dist/lib/long-task-codex-agent-profile.d.ts +0 -42
  617. package/dist/lib/long-task-codex-agent-profile.js +0 -276
  618. package/dist/lib/long-task-command-process.d.ts +0 -9
  619. package/dist/lib/long-task-command-process.js +0 -175
  620. package/dist/lib/long-task-compact-authoring-projections.d.ts +0 -12
  621. package/dist/lib/long-task-compact-authoring-projections.js +0 -67
  622. package/dist/lib/long-task-compact-authoring.d.ts +0 -3
  623. package/dist/lib/long-task-compact-authoring.js +0 -173
  624. package/dist/lib/long-task-compact-carrier.d.ts +0 -7
  625. package/dist/lib/long-task-compact-carrier.js +0 -132
  626. package/dist/lib/long-task-compact-parser.d.ts +0 -14
  627. package/dist/lib/long-task-compact-parser.js +0 -123
  628. package/dist/lib/long-task-compact-primitives.d.ts +0 -22
  629. package/dist/lib/long-task-compact-primitives.js +0 -132
  630. package/dist/lib/long-task-compact-projections.d.ts +0 -4
  631. package/dist/lib/long-task-compact-projections.js +0 -153
  632. package/dist/lib/long-task-compact-structure-targets.d.ts +0 -2
  633. package/dist/lib/long-task-compact-structure-targets.js +0 -91
  634. package/dist/lib/long-task-conformance-policy.d.ts +0 -5
  635. package/dist/lib/long-task-conformance-policy.js +0 -37
  636. package/dist/lib/long-task-context-authority-topology.d.ts +0 -7
  637. package/dist/lib/long-task-context-authority-topology.js +0 -37
  638. package/dist/lib/long-task-context-authority.d.ts +0 -14
  639. package/dist/lib/long-task-context-authority.js +0 -66
  640. package/dist/lib/long-task-contract-types.d.ts +0 -266
  641. package/dist/lib/long-task-contract-types.js +0 -1
  642. package/dist/lib/long-task-control-fields.d.ts +0 -12
  643. package/dist/lib/long-task-control-fields.js +0 -66
  644. package/dist/lib/long-task-control-types.d.ts +0 -1
  645. package/dist/lib/long-task-control-types.js +0 -1
  646. package/dist/lib/long-task-counterfactual-claim-policy.d.ts +0 -9
  647. package/dist/lib/long-task-counterfactual-claim-policy.js +0 -72
  648. package/dist/lib/long-task-counterfactual-sandbox.d.ts +0 -13
  649. package/dist/lib/long-task-counterfactual-sandbox.js +0 -115
  650. package/dist/lib/long-task-counterfactual-types.d.ts +0 -38
  651. package/dist/lib/long-task-counterfactual-types.js +0 -1
  652. package/dist/lib/long-task-delivery-compiler.d.ts +0 -13
  653. package/dist/lib/long-task-delivery-compiler.js +0 -155
  654. package/dist/lib/long-task-delivery-parser.d.ts +0 -14
  655. package/dist/lib/long-task-delivery-parser.js +0 -135
  656. package/dist/lib/long-task-delivery-preflight.d.ts +0 -5
  657. package/dist/lib/long-task-delivery-preflight.js +0 -175
  658. package/dist/lib/long-task-delivery-shape.d.ts +0 -6
  659. package/dist/lib/long-task-delivery-shape.js +0 -6
  660. package/dist/lib/long-task-delivery-types.d.ts +0 -13
  661. package/dist/lib/long-task-delivery-types.js +0 -13
  662. package/dist/lib/long-task-delivery-validation.d.ts +0 -6
  663. package/dist/lib/long-task-delivery-validation.js +0 -252
  664. package/dist/lib/long-task-design-feasibility-binding-owners.d.ts +0 -6
  665. package/dist/lib/long-task-design-feasibility-binding-owners.js +0 -52
  666. package/dist/lib/long-task-design-feasibility-binding.d.ts +0 -13
  667. package/dist/lib/long-task-design-feasibility-binding.js +0 -114
  668. package/dist/lib/long-task-design-feasibility-source-closure.d.ts +0 -11
  669. package/dist/lib/long-task-design-feasibility-source-closure.js +0 -78
  670. package/dist/lib/long-task-design-resource-handoff.d.ts +0 -18
  671. package/dist/lib/long-task-design-resource-handoff.js +0 -241
  672. package/dist/lib/long-task-design-resource-method-binding.d.ts +0 -15
  673. package/dist/lib/long-task-design-resource-method-binding.js +0 -297
  674. package/dist/lib/long-task-design-target-capabilities.d.ts +0 -14
  675. package/dist/lib/long-task-design-target-capabilities.js +0 -126
  676. package/dist/lib/long-task-evidence-adapter-policy.d.ts +0 -4
  677. package/dist/lib/long-task-evidence-adapter-policy.js +0 -15
  678. package/dist/lib/long-task-evidence-adapter-types.d.ts +0 -1
  679. package/dist/lib/long-task-evidence-adapter-types.js +0 -1
  680. package/dist/lib/long-task-evidence-capability-codec.d.ts +0 -96
  681. package/dist/lib/long-task-evidence-capability-codec.js +0 -892
  682. package/dist/lib/long-task-evidence-capability-policy.d.ts +0 -9
  683. package/dist/lib/long-task-evidence-capability-policy.js +0 -345
  684. package/dist/lib/long-task-evidence-capability-runtime.d.ts +0 -5
  685. package/dist/lib/long-task-evidence-capability-runtime.js +0 -580
  686. package/dist/lib/long-task-evidence-capability-types.d.ts +0 -276
  687. package/dist/lib/long-task-evidence-capability-types.js +0 -1
  688. package/dist/lib/long-task-evidence-findings.d.ts +0 -5
  689. package/dist/lib/long-task-evidence-findings.js +0 -120
  690. package/dist/lib/long-task-evidence-sensitivity-policy.d.ts +0 -13
  691. package/dist/lib/long-task-evidence-sensitivity-policy.js +0 -166
  692. package/dist/lib/long-task-evidence-v2.d.ts +0 -5
  693. package/dist/lib/long-task-evidence-v2.js +0 -525
  694. package/dist/lib/long-task-exact-comparison.d.ts +0 -16
  695. package/dist/lib/long-task-exact-comparison.js +0 -28
  696. package/dist/lib/long-task-execution-observation.d.ts +0 -24
  697. package/dist/lib/long-task-execution-observation.js +0 -332
  698. package/dist/lib/long-task-explain-acceptance-link.d.ts +0 -50
  699. package/dist/lib/long-task-explain-acceptance-link.js +0 -100
  700. package/dist/lib/long-task-explain-claim-links.d.ts +0 -47
  701. package/dist/lib/long-task-explain-claim-links.js +0 -90
  702. package/dist/lib/long-task-explain-source-links.d.ts +0 -99
  703. package/dist/lib/long-task-explain-source-links.js +0 -51
  704. package/dist/lib/long-task-final-integrity.d.ts +0 -16
  705. package/dist/lib/long-task-final-integrity.js +0 -98
  706. package/dist/lib/long-task-final-v2.d.ts +0 -2
  707. package/dist/lib/long-task-final-v2.js +0 -151
  708. package/dist/lib/long-task-finding-context.d.ts +0 -3
  709. package/dist/lib/long-task-finding-context.js +0 -63
  710. package/dist/lib/long-task-freshness.d.ts +0 -3
  711. package/dist/lib/long-task-freshness.js +0 -80
  712. package/dist/lib/long-task-hook-install.d.ts +0 -26
  713. package/dist/lib/long-task-hook-install.js +0 -381
  714. package/dist/lib/long-task-hook-preflight.d.ts +0 -7
  715. package/dist/lib/long-task-hook-preflight.js +0 -58
  716. package/dist/lib/long-task-json-pointer-observation.d.ts +0 -59
  717. package/dist/lib/long-task-json-pointer-observation.js +0 -184
  718. package/dist/lib/long-task-observation-artifact.d.ts +0 -8
  719. package/dist/lib/long-task-observation-artifact.js +0 -58
  720. package/dist/lib/long-task-observation-authority.d.ts +0 -17
  721. package/dist/lib/long-task-observation-authority.js +0 -348
  722. package/dist/lib/long-task-observation-ownership.d.ts +0 -2
  723. package/dist/lib/long-task-observation-ownership.js +0 -22
  724. package/dist/lib/long-task-outcome-parser.d.ts +0 -4
  725. package/dist/lib/long-task-outcome-parser.js +0 -143
  726. package/dist/lib/long-task-paths.d.ts +0 -48
  727. package/dist/lib/long-task-paths.js +0 -414
  728. package/dist/lib/long-task-playwright-capability-records.d.ts +0 -7
  729. package/dist/lib/long-task-playwright-capability-records.js +0 -218
  730. package/dist/lib/long-task-playwright-case-evidence.d.ts +0 -46
  731. package/dist/lib/long-task-playwright-case-evidence.js +0 -91
  732. package/dist/lib/long-task-playwright-case-primitives.d.ts +0 -28
  733. package/dist/lib/long-task-playwright-case-primitives.js +0 -143
  734. package/dist/lib/long-task-playwright-counterfactual-policy.d.ts +0 -7
  735. package/dist/lib/long-task-playwright-counterfactual-policy.js +0 -125
  736. package/dist/lib/long-task-playwright-evidence.d.ts +0 -8
  737. package/dist/lib/long-task-playwright-evidence.js +0 -147
  738. package/dist/lib/long-task-process-observation.d.ts +0 -6
  739. package/dist/lib/long-task-process-observation.js +0 -117
  740. package/dist/lib/long-task-process-runtime-closure.d.ts +0 -13
  741. package/dist/lib/long-task-process-runtime-closure.js +0 -207
  742. package/dist/lib/long-task-process-table.d.ts +0 -12
  743. package/dist/lib/long-task-process-table.js +0 -119
  744. package/dist/lib/long-task-process-tree.d.ts +0 -9
  745. package/dist/lib/long-task-process-tree.js +0 -138
  746. package/dist/lib/long-task-product-shape.d.ts +0 -8
  747. package/dist/lib/long-task-product-shape.js +0 -197
  748. package/dist/lib/long-task-progress.d.ts +0 -4
  749. package/dist/lib/long-task-progress.js +0 -120
  750. package/dist/lib/long-task-protected-files.d.ts +0 -1
  751. package/dist/lib/long-task-protected-files.js +0 -1
  752. package/dist/lib/long-task-required-proof-surfaces.d.ts +0 -2
  753. package/dist/lib/long-task-required-proof-surfaces.js +0 -13
  754. package/dist/lib/long-task-requirement-shape.d.ts +0 -2
  755. package/dist/lib/long-task-requirement-shape.js +0 -21
  756. package/dist/lib/long-task-risk-surfaces.d.ts +0 -2
  757. package/dist/lib/long-task-risk-surfaces.js +0 -60
  758. package/dist/lib/long-task-risk-types.d.ts +0 -5
  759. package/dist/lib/long-task-risk-types.js +0 -12
  760. package/dist/lib/long-task-risk.d.ts +0 -9
  761. package/dist/lib/long-task-risk.js +0 -137
  762. package/dist/lib/long-task-root-shape.d.ts +0 -5
  763. package/dist/lib/long-task-root-shape.js +0 -182
  764. package/dist/lib/long-task-runner-environment.d.ts +0 -7
  765. package/dist/lib/long-task-runner-environment.js +0 -57
  766. package/dist/lib/long-task-runner-files.d.ts +0 -3
  767. package/dist/lib/long-task-runner-files.js +0 -39
  768. package/dist/lib/long-task-runner-freeze.d.ts +0 -4
  769. package/dist/lib/long-task-runner-freeze.js +0 -303
  770. package/dist/lib/long-task-runtime-types.d.ts +0 -352
  771. package/dist/lib/long-task-runtime-types.js +0 -1
  772. package/dist/lib/long-task-scoped-binding.d.ts +0 -13
  773. package/dist/lib/long-task-scoped-binding.js +0 -11
  774. package/dist/lib/long-task-semantic-assurance-policy.d.ts +0 -4
  775. package/dist/lib/long-task-semantic-assurance-policy.js +0 -52
  776. package/dist/lib/long-task-semantic-contract-types.d.ts +0 -54
  777. package/dist/lib/long-task-semantic-contract-types.js +0 -1
  778. package/dist/lib/long-task-semantic-drift-migration.d.ts +0 -3
  779. package/dist/lib/long-task-semantic-drift-migration.js +0 -104
  780. package/dist/lib/long-task-semantic-fact-binding-types.d.ts +0 -65
  781. package/dist/lib/long-task-semantic-fact-binding-types.js +0 -1
  782. package/dist/lib/long-task-semantic-fact-closure-primitives.d.ts +0 -5
  783. package/dist/lib/long-task-semantic-fact-closure-primitives.js +0 -43
  784. package/dist/lib/long-task-semantic-fact-closure.d.ts +0 -13
  785. package/dist/lib/long-task-semantic-fact-closure.js +0 -51
  786. package/dist/lib/long-task-semantic-fact-contract-closure.d.ts +0 -4
  787. package/dist/lib/long-task-semantic-fact-contract-closure.js +0 -36
  788. package/dist/lib/long-task-semantic-fact-contract-facts.d.ts +0 -4
  789. package/dist/lib/long-task-semantic-fact-contract-facts.js +0 -33
  790. package/dist/lib/long-task-semantic-fact-contract-proofs.d.ts +0 -4
  791. package/dist/lib/long-task-semantic-fact-contract-proofs.js +0 -106
  792. package/dist/lib/long-task-semantic-fact-evidence.d.ts +0 -25
  793. package/dist/lib/long-task-semantic-fact-evidence.js +0 -225
  794. package/dist/lib/long-task-semantic-fact-input-closure.d.ts +0 -4
  795. package/dist/lib/long-task-semantic-fact-input-closure.js +0 -101
  796. package/dist/lib/long-task-semantic-fact-provenance-closure.d.ts +0 -4
  797. package/dist/lib/long-task-semantic-fact-provenance-closure.js +0 -140
  798. package/dist/lib/long-task-semantic-fact-shape.d.ts +0 -3
  799. package/dist/lib/long-task-semantic-fact-shape.js +0 -100
  800. package/dist/lib/long-task-semantic-fact-value-closure.d.ts +0 -3
  801. package/dist/lib/long-task-semantic-fact-value-closure.js +0 -110
  802. package/dist/lib/long-task-semantic-mutation.d.ts +0 -7
  803. package/dist/lib/long-task-semantic-mutation.js +0 -81
  804. package/dist/lib/long-task-shape-primitives.d.ts +0 -21
  805. package/dist/lib/long-task-shape-primitives.js +0 -116
  806. package/dist/lib/long-task-source-authority-types.d.ts +0 -15
  807. package/dist/lib/long-task-source-authority-types.js +0 -1
  808. package/dist/lib/long-task-source-claim-validation.d.ts +0 -5
  809. package/dist/lib/long-task-source-claim-validation.js +0 -99
  810. package/dist/lib/long-task-source-continuity.d.ts +0 -4
  811. package/dist/lib/long-task-source-continuity.js +0 -57
  812. package/dist/lib/long-task-source-inventory.d.ts +0 -2
  813. package/dist/lib/long-task-source-inventory.js +0 -21
  814. package/dist/lib/long-task-source-item-parser.d.ts +0 -11
  815. package/dist/lib/long-task-source-item-parser.js +0 -108
  816. package/dist/lib/long-task-source-markers.d.ts +0 -12
  817. package/dist/lib/long-task-source-markers.js +0 -146
  818. package/dist/lib/long-task-source-owned-sections.d.ts +0 -29
  819. package/dist/lib/long-task-source-owned-sections.js +0 -90
  820. package/dist/lib/long-task-source-shape.d.ts +0 -2
  821. package/dist/lib/long-task-source-shape.js +0 -56
  822. package/dist/lib/long-task-source-target-continuity.d.ts +0 -4
  823. package/dist/lib/long-task-source-target-continuity.js +0 -141
  824. package/dist/lib/long-task-source-target-index.d.ts +0 -15
  825. package/dist/lib/long-task-source-target-index.js +0 -91
  826. package/dist/lib/long-task-source-validation.d.ts +0 -3
  827. package/dist/lib/long-task-source-validation.js +0 -46
  828. package/dist/lib/long-task-stage-policy.d.ts +0 -4
  829. package/dist/lib/long-task-stage-policy.js +0 -126
  830. package/dist/lib/long-task-state.d.ts +0 -79
  831. package/dist/lib/long-task-state.js +0 -611
  832. package/dist/lib/long-task-static-observation-freeze.d.ts +0 -83
  833. package/dist/lib/long-task-static-observation-freeze.js +0 -428
  834. package/dist/lib/long-task-status-projection.d.ts +0 -24
  835. package/dist/lib/long-task-status-projection.js +0 -180
  836. package/dist/lib/long-task-status-v2.d.ts +0 -57
  837. package/dist/lib/long-task-status-v2.js +0 -351
  838. package/dist/lib/long-task-target-policy.d.ts +0 -6
  839. package/dist/lib/long-task-target-policy.js +0 -150
  840. package/dist/lib/long-task-technical-shape.d.ts +0 -3
  841. package/dist/lib/long-task-technical-shape.js +0 -44
  842. package/dist/lib/long-task-ui-design-policy.d.ts +0 -17
  843. package/dist/lib/long-task-ui-design-policy.js +0 -225
  844. package/dist/lib/long-task-ui-surface-policy.d.ts +0 -5
  845. package/dist/lib/long-task-ui-surface-policy.js +0 -112
  846. package/dist/lib/long-task-ui-surface-shape.d.ts +0 -2
  847. package/dist/lib/long-task-ui-surface-shape.js +0 -402
  848. package/dist/lib/long-task-ui-surface-types.d.ts +0 -134
  849. package/dist/lib/long-task-ui-surface-types.js +0 -1
  850. package/dist/lib/long-task-ui-surface-validation.d.ts +0 -13
  851. package/dist/lib/long-task-ui-surface-validation.js +0 -62
  852. package/dist/lib/long-task-verification-preview.d.ts +0 -65
  853. package/dist/lib/long-task-verification-preview.js +0 -120
  854. package/dist/lib/long-task-verifier-authority.d.ts +0 -12
  855. package/dist/lib/long-task-verifier-authority.js +0 -49
  856. package/dist/lib/long-task-verifier-dependency-closure.d.ts +0 -3
  857. package/dist/lib/long-task-verifier-dependency-closure.js +0 -183
  858. package/dist/lib/long-task-verifier-identity.d.ts +0 -2
  859. package/dist/lib/long-task-verifier-identity.js +0 -55
  860. package/dist/lib/long-task-verifier-v2.d.ts +0 -17
  861. package/dist/lib/long-task-verifier-v2.js +0 -330
  862. package/dist/lib/long-task-worker-selection.d.ts +0 -2
  863. package/dist/lib/long-task-worker-selection.js +0 -7
  864. package/dist/lib/long-task-workspace-manifest.d.ts +0 -8
  865. package/dist/lib/long-task-workspace-manifest.js +0 -173
  866. package/dist/lib/long-task-workspace-runtime-types.d.ts +0 -23
  867. package/dist/lib/long-task-workspace-runtime-types.js +0 -1
  868. package/dist/lib/long-task-workspace-scope.d.ts +0 -38
  869. package/dist/lib/long-task-workspace-scope.js +0 -123
  870. package/dist/lib/long-task-workspace-snapshot.d.ts +0 -8
  871. package/dist/lib/long-task-workspace-snapshot.js +0 -176
  872. package/dist/lib/long-task-workspace.d.ts +0 -5
  873. package/dist/lib/long-task-workspace.js +0 -4
  874. package/dist/lib/modularity-capability-migration.d.ts +0 -2
  875. package/dist/lib/modularity-capability-migration.js +0 -165
  876. package/dist/lib/modularity-python.d.ts +0 -7
  877. package/dist/lib/modularity-python.js +0 -191
  878. package/dist/lib/modularity.d.ts +0 -60
  879. package/dist/lib/modularity.js +0 -781
  880. package/dist/lib/profiles.d.ts +0 -13
  881. package/dist/lib/profiles.js +0 -65
  882. package/dist/lib/semantic-fact-base-types.d.ts +0 -14
  883. package/dist/lib/semantic-fact-base-types.js +0 -1
  884. package/dist/lib/semantic-fact-catalog.d.ts +0 -8
  885. package/dist/lib/semantic-fact-catalog.js +0 -191
  886. package/dist/lib/semantic-fact-compact-authoring.d.ts +0 -2
  887. package/dist/lib/semantic-fact-compact-authoring.js +0 -160
  888. package/dist/lib/semantic-fact-compact-capacity.d.ts +0 -9
  889. package/dist/lib/semantic-fact-compact-capacity.js +0 -40
  890. package/dist/lib/semantic-fact-compact-carrier.d.ts +0 -16
  891. package/dist/lib/semantic-fact-compact-carrier.js +0 -146
  892. package/dist/lib/semantic-fact-compact-parser.d.ts +0 -17
  893. package/dist/lib/semantic-fact-compact-parser.js +0 -168
  894. package/dist/lib/semantic-fact-compact-revision.d.ts +0 -11
  895. package/dist/lib/semantic-fact-compact-revision.js +0 -64
  896. package/dist/lib/semantic-fact-compact-support.d.ts +0 -23
  897. package/dist/lib/semantic-fact-compact-support.js +0 -159
  898. package/dist/lib/semantic-fact-condition-shape.d.ts +0 -48
  899. package/dist/lib/semantic-fact-condition-shape.js +0 -111
  900. package/dist/lib/semantic-fact-input-shape.d.ts +0 -34
  901. package/dist/lib/semantic-fact-input-shape.js +0 -111
  902. package/dist/lib/semantic-fact-inventory-types.d.ts +0 -147
  903. package/dist/lib/semantic-fact-inventory-types.js +0 -1
  904. package/dist/lib/semantic-fact-manifest-shape.d.ts +0 -4
  905. package/dist/lib/semantic-fact-manifest-shape.js +0 -135
  906. package/dist/lib/semantic-fact-manifest-types.d.ts +0 -58
  907. package/dist/lib/semantic-fact-manifest-types.js +0 -19
  908. package/dist/lib/semantic-fact-policy-authority.d.ts +0 -8
  909. package/dist/lib/semantic-fact-policy-authority.js +0 -79
  910. package/dist/lib/semantic-fact-policy-census.d.ts +0 -3
  911. package/dist/lib/semantic-fact-policy-census.js +0 -123
  912. package/dist/lib/semantic-fact-policy-condition-references.d.ts +0 -7
  913. package/dist/lib/semantic-fact-policy-condition-references.js +0 -19
  914. package/dist/lib/semantic-fact-policy-conditions.d.ts +0 -2
  915. package/dist/lib/semantic-fact-policy-conditions.js +0 -105
  916. package/dist/lib/semantic-fact-policy-facts.d.ts +0 -3
  917. package/dist/lib/semantic-fact-policy-facts.js +0 -73
  918. package/dist/lib/semantic-fact-policy-primitives.d.ts +0 -26
  919. package/dist/lib/semantic-fact-policy-primitives.js +0 -169
  920. package/dist/lib/semantic-fact-policy-proofs.d.ts +0 -2
  921. package/dist/lib/semantic-fact-policy-proofs.js +0 -75
  922. package/dist/lib/semantic-fact-policy-properties.d.ts +0 -3
  923. package/dist/lib/semantic-fact-policy-properties.js +0 -84
  924. package/dist/lib/semantic-fact-policy-units.d.ts +0 -4
  925. package/dist/lib/semantic-fact-policy-units.js +0 -103
  926. package/dist/lib/semantic-fact-policy.d.ts +0 -17
  927. package/dist/lib/semantic-fact-policy.js +0 -41
  928. package/dist/lib/semantic-fact-proof-shape.d.ts +0 -51
  929. package/dist/lib/semantic-fact-proof-shape.js +0 -121
  930. package/dist/lib/semantic-fact-proof-types.d.ts +0 -74
  931. package/dist/lib/semantic-fact-proof-types.js +0 -1
  932. package/dist/lib/semantic-fact-property-shape.d.ts +0 -29
  933. package/dist/lib/semantic-fact-property-shape.js +0 -77
  934. package/dist/lib/semantic-fact-shape-constants.d.ts +0 -3
  935. package/dist/lib/semantic-fact-shape-constants.js +0 -38
  936. package/dist/lib/semantic-fact-shape-primitives.d.ts +0 -15
  937. package/dist/lib/semantic-fact-shape-primitives.js +0 -68
  938. package/dist/lib/semantic-fact-source-parser.d.ts +0 -14
  939. package/dist/lib/semantic-fact-source-parser.js +0 -87
  940. package/dist/lib/semantic-fact-support-shape.d.ts +0 -21
  941. package/dist/lib/semantic-fact-support-shape.js +0 -59
  942. package/dist/lib/semantic-fact-types.d.ts +0 -5
  943. package/dist/lib/semantic-fact-types.js +0 -5
  944. package/dist/lib/semantic-fact-unit-shape.d.ts +0 -34
  945. package/dist/lib/semantic-fact-unit-shape.js +0 -89
  946. package/dist/lib/semantic-fact-value-shape.d.ts +0 -12
  947. package/dist/lib/semantic-fact-value-shape.js +0 -39
  948. package/dist/lib/source-line-scanner.d.ts +0 -3
  949. package/dist/lib/source-line-scanner.js +0 -42
  950. package/dist/lib/stable-json.d.ts +0 -2
  951. package/dist/lib/stable-json.js +0 -21
  952. package/dist/lib/structural-closure-cost.d.ts +0 -79
  953. package/dist/lib/structural-closure-cost.js +0 -91
  954. package/dist/lib/symbolic-denotation-dag-builder.d.ts +0 -25
  955. package/dist/lib/symbolic-denotation-dag-builder.js +0 -176
  956. package/dist/lib/symbolic-denotation-domain-validation.d.ts +0 -3
  957. package/dist/lib/symbolic-denotation-domain-validation.js +0 -56
  958. package/dist/lib/symbolic-denotation-engine.d.ts +0 -32
  959. package/dist/lib/symbolic-denotation-engine.js +0 -140
  960. package/dist/lib/symbolic-denotation-public.d.ts +0 -11
  961. package/dist/lib/symbolic-denotation-public.js +0 -12
  962. package/dist/lib/symbolic-denotation-runtime.d.ts +0 -20
  963. package/dist/lib/symbolic-denotation-runtime.js +0 -90
  964. package/dist/lib/symbolic-denotation-support.d.ts +0 -11
  965. package/dist/lib/symbolic-denotation-support.js +0 -49
  966. package/dist/lib/symbolic-denotation-types.d.ts +0 -133
  967. package/dist/lib/symbolic-denotation-types.js +0 -18
  968. package/dist/lib/symbolic-denotation-validation.d.ts +0 -6
  969. package/dist/lib/symbolic-denotation-validation.js +0 -126
  970. package/dist/long-task-hook.d.ts +0 -2
  971. package/dist/long-task-hook.js +0 -103
  972. package/dist/schemas/design-resource-symbolic-noninterference-artifact-v2.schema.json +0 -289
  973. package/dist/schemas/design-resource-symbolic-source-ir-v1.schema.json +0 -130
  974. package/dist/schemas/long-task-delivery-v2/long-task-delivery-v2.schema.json +0 -2190
  975. package/dist/schemas/long-task-delivery-v2/long-task-outcomes-v2.schema.json +0 -18
  976. /package/dist/lib/{compact-shared-structure-types.js → context-catalog/catalog-types.js} +0 -0
  977. /package/dist/lib/{design-resource-fact-types.js → context-create/context-create-types.js} +0 -0
  978. /package/dist/lib/{design-resource-handoff-input-types.js → context-inspect/context-inspect-types.js} +0 -0
  979. /package/dist/lib/{design-resource-reconciliation-types.js → context-markdown/context-markdown-types.js} +0 -0
  980. /package/dist/lib/{design-resource-recovery-patch-types.js → context-move/context-move-types.js} +0 -0
  981. /package/dist/lib/{design-resource-recovery-types.js → context-mutation/mutation-types.js} +0 -0
  982. /package/dist/lib/{design-resource-symbolic-fact-types.js → context-register/context-register-types.js} +0 -0
  983. /package/dist/lib/{long-task-git.d.ts → git.d.ts} +0 -0
@@ -1,58 +0,0 @@
1
- ---
2
- name: context_development_engineer
3
- description: Use when the user asks for an architecture or engineering design, technical design/plan, complex implementation design, high-level engineering assessment, 架构方案/工程设计/技术设计/复杂实现方案/系统拆分/工程取舍/架构审计, or when the actual task content materially requires owner/source-of-truth, API/schema/data/state/lifecycle, dependency, complex alternatives, concurrency/recovery, external-integration/shared-abstraction, performance, security, compatibility/migration, implementation tradeoff, or architecture-audit judgment. Do not trigger merely for routine coding, local bug fixes, small refactors, tests, documentation, styling, package/release work, generic requests to implement/build/change code, a generic implementation plan, role-only mentions, or mentions of multi-agent, subagent, or parallel work.
4
- ---
5
-
6
- # Context Development Engineer
7
-
8
- ## Scope
9
-
10
- Add engineering-design and architecture judgment to the default Workflow Contract. This Skill is not the default implementation workflow, a coding persona, planner, agent allocator or verification authority. Routine implementation continues under root `AGENTS.md`.
11
-
12
- Project-specific engineering rules belong in `<harnessRoot>/skills/development_engineer/SKILL.md`; the repo-local Skill is more specific, while durable conclusions still belong in `project_context/**`.
13
-
14
- With a valid Long-Task binding, `long-task-workflow` alone owns its lifecycle and Final Gate. This Skill contributes architecture judgment only and creates no second plan, stage, delegation policy/state or acceptance path.
15
-
16
- ## Progressive reasoning reference
17
-
18
- Read [engineering-design-reasoning.md](references/engineering-design-reasoning.md) completely. Apply only the methods triggered by actual uncertainty and risk; this is not a checklist, artifact schema or required sequence. An explicit-owner task without material design uncertainty stays on the lightweight default path.
19
-
20
- ## Engineering-design workflow
21
-
22
- 1. Read required core/default and implicated-owner Context. Before `Context Delta`, run the default bounded high-signal Context search; widen only for discovered dependency or semantic ownership.
23
- 2. State the problem, success boundary and non-goals. Separate facts, constraints, assumptions and unknowns, and Source/Context requirements from current-code behavior.
24
- 3. Identify the existing source of truth and extension point, affected owners, dependency direction, public/internal interfaces, state and lifecycle, failure/recovery boundaries, compatibility constraints and project-native verification entries.
25
- 4. Compare the smallest material alternatives. Prefer the existing owner/facade/adapter when it carries the stable concept; introduce an abstraction only for an evidenced change axis or durable boundary with positive net value. When foundational machinery, a mature protocol/security boundary, a dependency/shared abstraction or a nearby extension point makes sourcing material, add the risk-triggered Build / Reuse / Buy judgment below.
26
- 5. Before implementation edits, surface one externally observable, repository-bound `Architecture Deliberation`: selected design, rejected material alternatives, one plausible future-change challenge, touched technical debt and disposition, forbidden shortcuts, checks, and triggered quality attributes or preservation basis.
27
- 6. Decide exactly one `Context Delta: none|required`. Durable ownership, architecture, API/schema/data, state/recovery, dependency, compatibility, verification/deployment or rationale changes are `required` and update the smallest owning Context before code. A task-local design that preserves those facts is `none`.
28
- 7. Implement under the current Goal and Workflow Contract. After current-candidate checks, include Engineering/Architecture Conformance in default Contract Conformance, then run the separate Context drift check. Add no gate or proof ledger.
29
-
30
- ## Architecture Deliberation content
31
-
32
- Risk changes depth, not whether the checkpoint occurs. Name the controlling Context/code path, concrete owner and unique source of truth, extension point, dependency direction and prohibited bypass; API/schema/data inputs/outputs; interface, state and lifecycle boundaries; material failure/recovery/resource-release behavior; and triggered concurrency, security or compatibility boundaries. State the selected design, material alternatives, a realistic future-change landing without duplicate truth or reverse dependency, technical debt disposition or bounded project-owned exception, forbidden shortcuts, and project-owned type/lint/AST/dependency/contract/behavior/benchmark/probe checks.
33
-
34
- Always judge correctness/invariants and maintainability/changeability. Activate reliability/resource lifecycle, concurrency/consistency, performance/capacity/cost, security/privacy/safety, compatibility/migration/rollout and operability/observability/testability only when material. A performance claim requires workload, metric, baseline/budget, environment, comparator/tolerance and project-owned measurement; static shape is not runtime proof.
35
-
36
- Refresh the deliberation if scope, ownership, dependency direction, selected design, quality applicability or debt disposition materially changes.
37
-
38
- ### Risk-triggered Build / Reuse / Buy
39
-
40
- Record an `allowed solution set`, `prohibited failure modes` and `required rationale/evidence`, not one required library or abstraction. Choices may include the owning service/facade/adapter, standard library, installed dependency, mature compatible external library, small bounded self-implementation or intentional non-abstraction.
41
-
42
- Enumerate every materially supported member before selecting one; selection never removes another supported member from the allowed set. Judge the viable set, retain each unselected but legal member as an alternative, and prohibit only a choice which actually exhibits a prohibited failure mode. `block` needs no supported member or missing safety/compatibility evidence; `decision-required` needs a genuine user/product/external choice.
43
-
44
- Reject duplicate owner-held rules, extension-point bypass, an unjustified heavy dependency, plainly incomplete reinvention of mature security-sensitive behavior, incompatible license/platform support, forced abstraction over structurally similar but semantically different code and a second source of truth for one stable rule. Do not add a mandatory open-source preference, DRY rule, generic quality score, artifact, stage or Gate. Conformance asks only whether the selected choice is in the allowed set, avoids prohibited failures and has risk-proportional current evidence.
45
-
46
- ## Boundary routing
47
-
48
- Product goals and acceptance meaning belong to `context_product_plan`. Durable main/drilldown/surface information/action/feedback responsibility belongs to `context_surface_contract`. Durable Design Authority and UI Authority Closure belong to `context_uiux_design`. New design-resource generation/handoff belongs to `design-resource-authoring`. Exact non-UI semantic facts remain owned by Source/Context; exact selected UI values remain owned by selected-design closure.
49
-
50
- For monorepos, distinguish expandable read scope from intended/supporting workspaces. Existing Context workspace mappings are semantic routing rather than edit authorization or read ACLs. Do not add workspace registries, topology scans or empty Context mirrors.
51
-
52
- For capability scope, distinguish reusable system capability, representative sample validation, full-population operation and explicit non-requirement. A sample cannot prove an all-provider/all-interface/all-platform claim; unresolved scope remains decision-required.
53
-
54
- ## Output
55
-
56
- Return a concise engineering design or assessment: selected owner/extension point, boundaries and invariants, alternatives/trade-offs, future-change/debt judgment, implementation surfaces, verification strategy, decision-required gaps and `Context: updated ...` or `Context: no durable fact change`.
57
-
58
- Do not create a required `plan.md`, Task Contract, architecture matrix, verdict, evidence ledger, generic analyzer, phase, lifecycle or second Authority/Gate. Do not claim checks or product acceptance that were not run on the current candidate.
@@ -1,93 +0,0 @@
1
- # Engineering Design Reasoning
2
-
3
- Use this reference only after `context_development_engineer` has been selected for material engineering-design or architecture judgment. It deepens the existing Architecture Deliberation; it does not create a design phase, plan artifact, evidence ledger, second workflow or acceptance carrier. Apply the smallest useful subset below and state when a method is not material.
4
-
5
- ## 1. Frame what is actually known
6
-
7
- Separate four categories before choosing a design:
8
-
9
- - **Facts:** user/Source/Context requirements, repository owners and extension points, observed code/test behavior and externally verified dependency facts.
10
- - **Constraints:** compatibility, platform, policy, budget, rollout, security, data, lifecycle and scope boundaries that a legal solution must preserve.
11
- - **Assumptions:** plausible but unproved premises currently needed to proceed. Name who can validate them and what changes if they are false.
12
- - **Unknowns:** missing information that distinguishes alternatives, changes safety or makes an acceptance claim unsupported.
13
-
14
- Current code is implementation evidence, not silent product or architecture authority. A genuine product, legal, security, commercial, safety or external choice remains `decision-required`; implementation-equivalent freedom belongs to the current Goal.
15
-
16
- ## 2. Identify drivers and path dependence
17
-
18
- Name the few forces that materially shape the solution: owner/source-of-truth location, dependency direction, data/state boundaries, lifecycle and failure semantics, compatibility commitments, load/threat conditions and verification reachability. Distinguish an enduring invariant from historical path dependence such as an old API, migration window, installed dependency or deployment constraint. Preserve path dependence only while its reason still applies; do not mistake legacy shape for the desired architecture.
19
-
20
- For each material driver, point to repository evidence or authoritative external evidence. If current dependency/library behavior matters and may have changed, use current primary documentation rather than memory.
21
-
22
- ## 3. Build the smallest material alternative set
23
-
24
- Enumerate only alternatives that could plausibly change an owner, boundary, lifecycle, dependency, operational risk or future change cost. Include the current extension point or intentional non-abstraction when viable. When sourcing is material, express Build / Reuse / Buy as the existing allowed solution set, prohibited failure modes and required rationale/evidence.
25
-
26
- Steelman every material alternative before rejecting it:
27
-
28
- - where it fits the requirements well;
29
- - its cleanest owner and dependency direction;
30
- - the strongest reason a competent maintainer would select it; and
31
- - the evidence or condition under which it would become preferable.
32
-
33
- Do not manufacture alternatives for a local choice whose owner and semantics are already explicit. Do not relabel an unselected allowed option as a prohibited failure.
34
-
35
- ## 4. Use counterfactuals and failure paths
36
-
37
- Challenge the leading design with at least one realistic adjacent change and one relevant failure:
38
-
39
- - If the next client, provider, state, data volume, permission model or workflow variation arrives, which existing extension point absorbs it?
40
- - If the selected dependency is unavailable, stale, slow, partial or incompatible, which failure is visible and where does recovery live?
41
- - If the main assumption is false, which decision changes and which parts remain valid?
42
- - What would make the rejected alternative win?
43
-
44
- Trace only triggered retry, timeout, cancellation, idempotency, transaction, concurrency, consistency, degradation, recovery and resource-release semantics. A family that is not material gets a concise preservation basis rather than invented machinery.
45
-
46
- ## 5. Select risk-triggered methods
47
-
48
- Choose methods for the actual uncertainty; never run all of them by default:
49
-
50
- | Trigger | Useful method | Minimum output |
51
- | --- | --- | --- |
52
- | Unclear owner or dependency boundary | Repository owner/extension-point trace | One source of truth, legal dependency direction and prohibited bypass |
53
- | API/schema/data/state change | Contract and state-transition analysis | Inputs/outputs/errors, invariants, ownership, compatibility and recovery |
54
- | Shared mutable state or parallel execution | Interleaving/consistency analysis | Atomicity boundary, ordering, idempotency and failure recovery |
55
- | External integration or mature protocol | Current primary-source and repository-fit research | Supported allowed set, compatibility/security/maintenance evidence |
56
- | Material performance/capacity/cost risk | Complexity model plus project-owned measurement | Workload, metric, baseline/budget, environment and comparator/tolerance |
57
- | Trust, permission or sensitive data boundary | Threat/abuse-path analysis | Assets, actors, trust crossings, prohibited failures and attributable checks |
58
- | Public or versioned compatibility change | Migration/rollout analysis | Compatibility window, upgrade/rollback path and current-version evidence |
59
- | High uncertainty that code can cheaply resolve | Minimum architecture experiment | Hypothesis, smallest observable probe, budget and exit condition |
60
-
61
- Research or an experiment informs the decision but is not durable authority or product acceptance. Preserve only stable conclusions in their owning Context.
62
-
63
- ## 6. Design a minimum architecture experiment
64
-
65
- Use an experiment only when a material unknown distinguishes legal alternatives and repository inspection or authoritative documentation cannot answer it cheaply. Define:
66
-
67
- - the exact question and competing hypotheses;
68
- - the smallest representative fixture or probe that can falsify the leading assumption;
69
- - environment, inputs, metric/observation and comparator;
70
- - time/resource budget and stop condition; and
71
- - how each possible result changes the design.
72
-
73
- Do not turn a spike into production by default. Representative input proves only its declared scope; it cannot establish an all-provider, all-interface, all-platform or full-population claim.
74
-
75
- ## 7. Project the decision into implementation
76
-
77
- Before handoff to the current Goal, make the design concrete enough to implement without inventing a second architecture:
78
-
79
- - owning modules, paths and symbols plus the existing extension point;
80
- - public/internal interfaces, inputs, outputs and explicit error semantics;
81
- - data and state owner, persistence boundary and invariants;
82
- - runtime/resource lifecycle, initialization, cleanup, recovery and observability;
83
- - dependency direction and forbidden shortcuts;
84
- - compatibility/migration/rollout handling when applicable;
85
- - the smallest complete implementation surface and any intentional non-goals;
86
- - project-owned type/lint/AST/dependency/contract/behavior/benchmark/probe checks; and
87
- - `Context Delta: none|required`, with the smallest durable owner updated before code when required.
88
-
89
- ## Architecture audit route
90
-
91
- For an audit, compare the current implementation against controlling Source/Context and the concrete owner/boundary model above. Report wrong owner, duplicate truth, reversed dependency, extension-point bypass, silent failure, incomplete lifecycle/recovery, unsupported quality claim and new/worsened debt separately. Distinguish observed defects from assumptions and unverified risks. Do not implement repairs unless the request also authorizes change.
92
-
93
- The final current-candidate Engineering/Architecture Conformance remains in the existing default Contract Conformance or, when validly active, the sole Long-Task Final Gate. This reference creates neither.
@@ -1,70 +0,0 @@
1
- ---
2
- name: context_full_project_export
3
- description: Use when the user explicitly asks to 导出尽可能详细的项目全量上下文, 全量上下文导出, 项目上下文全量导出, 项目整体上下文, full project context export, export full project context, project context export, project overall context, Source Pack export, source-pack export, code index export, task context export, 当前项目代码实现, 代码级实现导出, or code-level implementation export in a Minimal Context Harness project.
4
- ---
5
-
6
- # Context Full Project Export
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_full_project_export` Skill directly.
11
-
12
- This Skill creates a temporary export artifact only. It does not author durable Context and does not change `project_context/context.toml`.
13
-
14
- ## Purpose
15
-
16
- When the user needs a full project context export, project overall context export or external LLM handoff, create temporary export artifacts that collect project Context, key agent guidance, architecture/module facts, code navigation and bounded source support for copying into an external tool or one-off discussion.
17
-
18
- When the user needs a code-level implementation export, create one temporary Markdown snapshot of current source and engineering configuration files for upload to Web GPT or another external model.
19
-
20
- ## Workflow
21
-
22
- 1. Prefer the bounded Source Pack for external LLM / Web GPT planning. It writes at most 5 files total under `tmp/ty-context/context-exports/latest/` and removes old timestamped export rounds:
23
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --source-pack`
24
- 2. Use `--code-index` when implementation navigation is enough and full source bodies are not needed:
25
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --code-index`
26
- 3. Use `--task-context <name>` for focused handoff, preferably with a profile or explicit include selectors:
27
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --task-context <name> --profile <profile-id>`
28
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --task-context <name> --include-context project_context/areas/main.md --include-code 'src/example/**'`
29
- 4. Use legacy `--all` when the user explicitly wants both old temporary artifacts in one command. Do not hand-write tracked export documents:
30
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --all`
31
- 5. Use legacy `--full` when only the project Context bundle is needed:
32
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --full`
33
- 6. Use legacy `--code` when only the full code-level implementation snapshot is needed. It generates one Markdown file by default and is the full fallback when Source Pack bundles are not enough:
34
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --code`
35
- 7. Custom output paths are allowed only for legacy single-artifact modes and must stay under the temporary export directory. `--all` and Source Pack modes do not accept `--output`:
36
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --full --output tmp/ty-context/context-exports/my-export.md`
37
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --code --output tmp/ty-context/context-exports/my-code-export.md`
38
- 8. Use dry-run mode to inspect planned sources before writing:
39
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --source-pack --check`
40
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --code-index --check`
41
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --task-context <name> --check`
42
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --all --check`
43
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --full --check`
44
- - `npx --yes --package project-tiny-context-harness@latest ty-context export-context --code --check`
45
- 9. After exporting, report artifact paths, source counts, recommended upload sets and warnings to the user. Do not summarize export contents back into Context.
46
-
47
- ## Output Boundaries
48
-
49
- - Export artifacts must remain temporary export artifacts, not Context.
50
- - `--source-pack` defaults to `tmp/ty-context/context-exports/latest/`, with `source-pack-manifest.json`, `full-project-context.md`, `code-index.md` and optional `code-bundle-core.md` / `code-bundle-extended.md`.
51
- - `--source-pack` and `--task-context` are capped at 5 output files. `--max-pack-files` cannot exceed 5.
52
- - `--code-index` creates a navigation index and manifest without complete source bodies.
53
- - `--task-context <name>` creates `task-contexts/task-context-<name>.md` plus optional support bundle; profile verification entries are listed, not executed.
54
- - `--full` defaults to `tmp/ty-context/context-exports/full-project-context-<timestamp>.md`.
55
- - `--code` defaults to `tmp/ty-context/context-exports/code-level-implementation-<timestamp>/code-level-implementation.md`.
56
- - `--all` generates both default artifacts with the same timestamp.
57
- - `--all` does not accept `--output`; custom filenames are supported only for `--full` or `--code`.
58
- - `--code` creates one Markdown file, not shards or `all.md`.
59
- - Do not output to `project_context/**`.
60
- - Do not modify `project_context/context.toml`.
61
- - Do not register export artifacts as `[[context]]`, `implementation-index` or any Context graph node.
62
- - Do not write tracked docs; if the user asks for an ordinary docs path, redirect to `tmp/ty-context/context-exports/**`.
63
- - Export contents may include redaction warnings; do not bypass secret/token/cookie/password/api_key/credential/bearer/authorization filtering. Use `--redaction-strict` when the user wants the command to fail if any redaction occurred.
64
- - Profiles under `<harnessRoot>/config.yaml` are export selectors only. They must not become durable Context facts or execute verification commands.
65
-
66
- ## Handoff
67
-
68
- - Report `Export: generated <path>` or `Export: check completed; no files written`.
69
- - If the CLI rejects an output path, explain that this prevents temporary exports from polluting durable fact sources and suggest `tmp/ty-context/context-exports/<name>.md`.
70
- - Context drift check should be `Context: no durable project facts changed` unless the task also changes Harness rules.
@@ -1,60 +0,0 @@
1
- ---
2
- name: context_harness_upgrade
3
- description: Use when the user asks to upgrade Tiny Context, update Tiny Context, use the Tiny Context upgrade skill to upgrade this project, upgrade project-tiny-context-harness, run ty-context upgrade, run make ty-context-upgrade, Project Tiny Context Harness upgrade, 用 Tiny Context upgrade skill 升级这个项目, 升级 tiny context, 升级tiny context, or 更新 project-tiny-context-harness in a Minimal Context Harness project.
4
- ---
5
-
6
- # Context Harness Upgrade
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_harness_upgrade` Skill directly.
11
-
12
- This Skill handles Harness package upgrade and migration orchestration only. It does not author product facts, refactor business code, replace project tests or prove application quality.
13
-
14
- ## Purpose
15
-
16
- When the user asks to upgrade Tiny Context / Project Tiny Context Harness in an existing project, run the canonical `upgrade` path, handle only migration-scoped follow-up, and leave durable project semantics to the project Context and user-owned code. A `sync-only` release means no new migration is expected; it does not change the default upgrade entry for explicit upgrade requests.
17
-
18
- ## Workflow
19
-
20
- 1. Read the project routing and Context entry points before changing files:
21
- - `AGENTS.md`
22
- - `project_context/global.md`
23
- - `project_context/architecture.md`
24
- - `project_context/context.toml`
25
- 2. Inspect the working tree with `git status --short`. Do not revert unrelated user changes.
26
- 3. Prefer project wrappers when present:
27
- - `make ty-context-sync`
28
- - `make ty-context-upgrade`
29
- - `make ty-context-doctor`
30
- - `make validate-context`
31
- 4. If no wrapper exists, use the package CLI explicitly:
32
- - `npx --yes --package project-tiny-context-harness@latest ty-context sync`
33
- - `npx --yes --package project-tiny-context-harness@latest ty-context upgrade --check`
34
- - `npx --yes --package project-tiny-context-harness@latest ty-context upgrade`
35
- - `npx --yes --package project-tiny-context-harness@latest ty-context doctor`
36
- 5. Run `upgrade --check` when useful, then run `upgrade`. This remains the default after package updates and for explicit upgrade requests because it plans migrations, applies safe migrations, refreshes managed assets and runs diagnostics.
37
- 6. Do not run standalone `sync` before `upgrade` for explicit upgrade requests. A direct `sync` is only a shortcut for releases explicitly marked `sync-only` when the user asks for managed-asset refresh instead of upgrade diagnostics.
38
- 7. Do not run standalone `sync` after a successful `upgrade` unless the project wrapper did not run sync or the user explicitly asks for another managed-asset refresh.
39
- 8. If `upgrade --check` or `upgrade` reports only `safe_pending` items and the command succeeds, do not invent additional manual cleanup.
40
- 9. If the report includes `manual_required` or `blocked`, handle only the listed migration scope. Use `project_context/context.toml`, role placement scan and the existing area graph to decide placement. Do not guess product or business semantics.
41
- 10. If the report includes `blocked`, treat it as a write preflight failure: resolve the blocked migration scope and rerun `upgrade` before expecting safe migrations or managed asset sync to have been applied.
42
- 11. Run diagnostics after migration-scoped follow-up:
43
- - `make ty-context-doctor` or the CLI `doctor`
44
- - `make validate-context`
45
- 12. Report commands run, migration status, diagnostics, files changed and any remaining manual items. Use `Context: no durable project facts changed` unless the upgrade exposed or required a real long-term project fact change.
46
-
47
- ## Manual Handling Rules
48
-
49
- - `manual_required` means the Harness detected a migration-scoped item but cannot safely choose the project meaning. Fix it only when the existing Context or file structure proves the intended placement.
50
- - `blocked` means the safe target already exists or another conflict prevents a mechanical write. Do not overwrite. Compare source and target, preserve user content and ask for direction if the conflict cannot be resolved from project facts.
51
- - Deprecated override Skills under `ty-context-managed/override_skills/**` should be migrated to standalone project-local Skills only when their content is still relevant. Do not merge them into package-managed default Skills.
52
- - Ambiguous Context roles should not be guessed from filenames like `api.md`, `notes.md` or `main.md` alone. Register a role only when the manifest, path convention or durable content makes it clear.
53
- - If `upgrade` creates default `project_context/areas/main.md` or `project_context/areas/main/verification.md` but `project_context/context.toml` already declares real project areas and does not register `main`, remove those generated defaults instead of preserving them as durable project facts. If `main` is registered or contains user-authored facts, do not delete it automatically.
54
-
55
- ## Boundaries
56
-
57
- - Do not restore legacy stage workflow, sprint documents or phase gates.
58
- - Do not modify application code, product behavior, deployment settings or tests unless the user explicitly asks or a migration report points to a Harness-owned file in that scope.
59
- - Do not write one-off command output, release logs, diagnostics or temporary migration notes into `project_context/**`.
60
- - Do not edit package-managed generated surfaces directly in a consumer project unless the change is part of a migration conflict that cannot be resolved another way. Prefer rerunning `upgrade` / `sync` from the package source.
@@ -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`.