ai-delivery-workflow 0.2.2 → 0.4.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 (361) hide show
  1. package/README.md +45 -14
  2. package/bin/ai-delivery.mjs +181 -6
  3. package/bin/benchmark-autonomy.mjs +217 -0
  4. package/bin/release-check.mjs +382 -0
  5. package/docs/CLI-PARAMETER-REFERENCE.zh-CN.md +346 -0
  6. package/docs/CODEGRAPH-INTEGRATION.zh-CN.md +89 -0
  7. package/docs/DUAL-REPOSITORY-WORKSPACE.zh-CN.md +2 -2
  8. package/docs/EVOLUTION-MAINTENANCE.zh-CN.md +7 -7
  9. package/docs/EVOLUTION-USER-GUIDE.zh-CN.md +2 -2
  10. package/docs/FILE-REFERENCE.zh-CN.md +120 -39
  11. package/docs/MAINTENANCE-VERIFICATION.zh-CN.md +51 -0
  12. package/docs/MOCK-SYSTEM.zh-CN.md +141 -0
  13. package/docs/NPM-RELEASE-MANAGEMENT.zh-CN.md +106 -0
  14. package/docs/PROJECT-MANUAL.zh-CN.md +154 -95
  15. package/docs/PROTOTYPE-MIGRATION.zh-CN.md +164 -0
  16. package/docs/STATE-CLI-MAINTENANCE.zh-CN.md +35 -17
  17. package/docs/STATE-CLI-USER-GUIDE.zh-CN.md +115 -39
  18. package/docs/VIEWER-MAINTENANCE.zh-CN.md +101 -324
  19. package/docs/VIEWER-USER-GUIDE.zh-CN.md +68 -190
  20. package/docs/adr/0001-prototype-first-ui-governance.md +3 -0
  21. package/docs/adr/0002-microcks-as-default-mock-system.md +3 -0
  22. package/docs/adr/0003-workflow-manager-governed-control-surface.md +46 -0
  23. package/docs/adr/0004-operational-carbon-visual-standard.md +9 -0
  24. package/docs/adr/0005-prototype-management-as-routed-pages.md +7 -0
  25. package/docs/agents/domain.md +12 -0
  26. package/docs/agents/issue-tracker.md +27 -0
  27. package/docs/agents/triage-labels.md +11 -0
  28. package/docs/agents/workflow-manager-acceptance-matrix.md +93 -0
  29. package/docs/agents/workflow-manager-agent-interface.md +145 -0
  30. package/docs/agents/workflow-manager-current-state.md +205 -0
  31. package/lib/artifact-files.mjs +47 -0
  32. package/lib/codegraph.mjs +405 -0
  33. package/lib/delivery-state.mjs +3079 -198
  34. package/lib/frontend-guard.mjs +288 -0
  35. package/lib/fs-utils.mjs +53 -0
  36. package/lib/history-anchor.mjs +98 -0
  37. package/lib/mock-scenario-pack.mjs +687 -0
  38. package/lib/mock-system.mjs +897 -0
  39. package/lib/npm-package-result.mjs +11 -0
  40. package/lib/png-evidence.mjs +149 -0
  41. package/lib/project-bootstrap.mjs +96 -55
  42. package/lib/project-installer.mjs +1484 -164
  43. package/lib/project-migration.mjs +1193 -0
  44. package/lib/prototype-migration.mjs +713 -0
  45. package/lib/prototype-page-review.mjs +384 -0
  46. package/lib/prototype-review-target.mjs +334 -0
  47. package/lib/prototype-revision.mjs +812 -0
  48. package/lib/stable-value.mjs +15 -0
  49. package/lib/toml-hooks.mjs +69 -0
  50. package/lib/ui-acceptance.mjs +565 -0
  51. package/lib/visual-standard.mjs +232 -0
  52. package/lib/workflow-manager-contracts.mjs +367 -0
  53. package/lib/workflow-manager-facts.mjs +778 -0
  54. package/lib/workflow-manager-governance.mjs +514 -0
  55. package/lib/workflow-manager-mock.mjs +183 -0
  56. package/lib/workflow-manager-prototypes.mjs +1847 -0
  57. package/lib/workflow-manager-public/assets/ibm-plex-mono-latin-400-normal-CvHOgSBP.woff +0 -0
  58. package/lib/workflow-manager-public/assets/ibm-plex-mono-latin-400-normal-DMJ8VG8y.woff2 +0 -0
  59. package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-400-normal-CDDApCn2.woff2 +0 -0
  60. package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-400-normal-CYLoc0-x.woff +0 -0
  61. package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-500-normal-6ng42L7E.woff2 +0 -0
  62. package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-500-normal-BgVn5rGT.woff +0 -0
  63. package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-600-normal-Cu4Hd6ag.woff +0 -0
  64. package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-600-normal-CuJfVYMP.woff2 +0 -0
  65. package/lib/workflow-manager-public/assets/index-Chlg6r8f.css +1 -0
  66. package/lib/workflow-manager-public/assets/index-E-hGB5ZD.js +13 -0
  67. package/lib/workflow-manager-public/fonts/OFL-1.1.txt +90 -0
  68. package/lib/workflow-manager-public/index.html +14 -0
  69. package/lib/workflow-manager-systems.mjs +519 -0
  70. package/lib/workflow-manager-transaction.mjs +397 -0
  71. package/lib/workflow-manager.mjs +745 -0
  72. package/package.json +8 -2
  73. package/skills/ai-delivery-assemble-release/agents/openai.yaml +3 -3
  74. package/skills/ai-delivery-assemble-release/assets/release-material-index.csv +1 -1
  75. package/skills/ai-delivery-assemble-release/assets/version-inclusion.csv +1 -1
  76. package/skills/ai-delivery-bootstrap/SKILL.md +4 -4
  77. package/skills/ai-delivery-bootstrap/agents/openai.yaml +3 -3
  78. package/skills/ai-delivery-bootstrap/references/bootstrap-contract.md +4 -2
  79. package/skills/ai-delivery-checkpoint-task/SKILL.md +17 -3
  80. package/skills/ai-delivery-checkpoint-task/agents/openai.yaml +3 -3
  81. package/skills/ai-delivery-checkpoint-task/assets/runtime-template/task.json +7 -1
  82. package/skills/ai-delivery-checkpoint-task/references/checkpoint-contract.md +22 -8
  83. package/skills/ai-delivery-checkpoint-task/scripts/hook-event.mjs +91 -0
  84. package/skills/ai-delivery-checkpoint-task/scripts/task-state.mjs +1086 -51
  85. package/skills/ai-delivery-close-version/SKILL.md +9 -8
  86. package/skills/ai-delivery-close-version/agents/openai.yaml +3 -3
  87. package/skills/ai-delivery-close-version/assets/version-lineage.yaml +1 -1
  88. package/skills/ai-delivery-close-version/references/version-closeout-contract.md +2 -2
  89. package/skills/ai-delivery-define-product/SKILL.md +8 -4
  90. package/skills/ai-delivery-define-product/agents/openai.yaml +4 -4
  91. package/skills/ai-delivery-define-product/references/product-contract.md +2 -2
  92. package/skills/ai-delivery-deploy-production/agents/openai.yaml +3 -3
  93. package/skills/ai-delivery-design-architecture/SKILL.md +9 -5
  94. package/skills/ai-delivery-design-architecture/assets/architecture-template/prototype-architecture-validation.yaml +16 -16
  95. package/skills/ai-delivery-design-architecture/references/architecture-contract.md +1 -1
  96. package/skills/ai-delivery-design-experience/SKILL.md +36 -30
  97. package/skills/ai-delivery-design-experience/agents/openai.yaml +4 -4
  98. package/skills/ai-delivery-design-experience/assets/experience-template/LEGACY-COMPATIBILITY.md +16 -0
  99. package/skills/ai-delivery-design-experience/assets/experience-template/design-reference-selection.yaml +32 -0
  100. package/skills/ai-delivery-design-experience/assets/experience-template/experience-baseline.yaml +2 -2
  101. package/skills/ai-delivery-design-experience/assets/experience-template/formal-ui-confirmation.yaml +16 -3
  102. package/skills/ai-delivery-design-experience/assets/experience-template/frontend-change-scope.yaml +30 -0
  103. package/skills/ai-delivery-design-experience/assets/experience-template/interaction-contract.csv +1 -1
  104. package/skills/ai-delivery-design-experience/assets/experience-template/mock-admin-export.yaml +8 -0
  105. package/skills/ai-delivery-design-experience/assets/experience-template/mock-scenario-mappings.csv +1 -0
  106. package/skills/ai-delivery-design-experience/assets/experience-template/mock-scenario-pack-request.yaml +24 -0
  107. package/skills/ai-delivery-design-experience/assets/experience-template/product-prototype-reconciliation.yaml +2 -1
  108. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-adjustment-log.csv +1 -1
  109. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-component-bindings.csv +1 -0
  110. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-component-candidates.csv +1 -0
  111. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-components.csv +1 -0
  112. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-confirmation.yaml +18 -18
  113. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-data-contracts.csv +1 -0
  114. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-impact-assessment.yaml +5 -5
  115. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-implementation-bindings.csv +1 -0
  116. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-manifest.yaml +2 -0
  117. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-pages.csv +1 -0
  118. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-product-coverage.csv +1 -1
  119. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-comments.csv +1 -1
  120. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-decision.yaml +13 -12
  121. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-scenes.csv +1 -0
  122. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-sessions.csv +1 -1
  123. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-unit-pages.csv +1 -0
  124. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-units.csv +1 -0
  125. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-revision.yaml +88 -0
  126. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-routes.csv +1 -0
  127. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-set.yaml +2 -0
  128. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-source-inspection-snapshots.csv +1 -0
  129. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-terminals.csv +1 -0
  130. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-tool-candidates.csv +1 -1
  131. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-tool-selection.yaml +2 -3
  132. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-traceability.csv +1 -1
  133. package/skills/ai-delivery-design-experience/assets/experience-template/prototype-trigger-conditions.csv +1 -0
  134. package/skills/ai-delivery-design-experience/assets/experience-template/prototype.yaml +6 -0
  135. package/skills/ai-delivery-design-experience/assets/experience-template/ui-framework-selection.yaml +17 -1
  136. package/skills/ai-delivery-design-experience/assets/experience-template/ui-handoff.yaml +6 -5
  137. package/skills/ai-delivery-design-experience/assets/experience-template/ui-mapping.csv +1 -0
  138. package/skills/ai-delivery-design-experience/assets/experience-template/visual-direction.yaml +4 -0
  139. package/skills/ai-delivery-design-experience/assets/experience-template/visual-reference-manifest.yaml +23 -0
  140. package/skills/ai-delivery-design-experience/assets/experience-template/visual-reference.html +163 -0
  141. package/skills/ai-delivery-design-experience/assets/experience-template/visual-system-confirmation.yaml +11 -0
  142. package/skills/ai-delivery-design-experience/references/experience-contract.md +26 -27
  143. package/skills/ai-delivery-design-experience/references/prototype-management-contract.md +42 -21
  144. package/skills/ai-delivery-design-tests/SKILL.md +13 -7
  145. package/skills/ai-delivery-design-tests/assets/test-design-template/prototype-test-scope.csv +1 -1
  146. package/skills/ai-delivery-design-tests/assets/test-design-template/prototype-test-validation.yaml +17 -16
  147. package/skills/ai-delivery-design-tests/references/test-design-contract.md +7 -5
  148. package/skills/ai-delivery-develop-iteration/SKILL.md +18 -11
  149. package/skills/ai-delivery-develop-iteration/agents/openai.yaml +3 -3
  150. package/skills/ai-delivery-develop-iteration/assets/development-template/candidate-manifest.yaml +36 -0
  151. package/skills/ai-delivery-develop-iteration/assets/development-template/task-prototype-traceability.csv +1 -1
  152. package/skills/ai-delivery-develop-iteration/references/development-contract.md +5 -3
  153. package/skills/ai-delivery-evolve-workflow/agents/openai.yaml +3 -3
  154. package/skills/ai-delivery-execute-test/SKILL.md +6 -2
  155. package/skills/ai-delivery-execute-test/agents/openai.yaml +4 -4
  156. package/skills/ai-delivery-execute-work-package/SKILL.md +10 -3
  157. package/skills/ai-delivery-execute-work-package/agents/openai.yaml +4 -4
  158. package/skills/ai-delivery-execute-work-package/references/work-package-contract.md +1 -1
  159. package/skills/ai-delivery-manage-git/agents/openai.yaml +3 -3
  160. package/skills/ai-delivery-manage-standards/agents/openai.yaml +4 -4
  161. package/skills/ai-delivery-orchestrate/SKILL.md +47 -29
  162. package/skills/ai-delivery-orchestrate/agents/openai.yaml +3 -3
  163. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/control/migrations/.gitkeep +0 -0
  164. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/control/repairs/.gitkeep +0 -0
  165. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/delivery/project.yaml +1 -0
  166. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/delivery/workflow-state.yaml +2 -0
  167. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/frontend-guard/frontend-guard.mjs +50 -0
  168. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/hooks/hook-event.mjs +91 -0
  169. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/manager/manager.mjs +64 -0
  170. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/manager/start.cmd +4 -0
  171. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/manager/start.ps1 +2 -0
  172. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/{viewer → manager}/start.sh +1 -1
  173. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/mock/mock.mjs +50 -0
  174. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/ui-acceptance/ui-acceptance.mjs +37 -0
  175. package/skills/ai-delivery-orchestrate/assets/project-template/AGENTS.md +32 -6
  176. package/skills/ai-delivery-orchestrate/assets/project-template/gitignore.template +1 -0
  177. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/CONTRIBUTING.md +25 -0
  178. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/LICENSE +21 -0
  179. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/README.md +250 -0
  180. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/UPSTREAM.yaml +19 -0
  181. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airbnb/DESIGN.md +545 -0
  182. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airbnb/README.md +5 -0
  183. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airtable/DESIGN.md +554 -0
  184. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airtable/README.md +5 -0
  185. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/apple/DESIGN.md +562 -0
  186. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/apple/README.md +5 -0
  187. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/binance/DESIGN.md +634 -0
  188. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/binance/README.md +5 -0
  189. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw/DESIGN.md +544 -0
  190. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw/README.md +5 -0
  191. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw-m/DESIGN.md +503 -0
  192. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw-m/README.md +5 -0
  193. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bugatti/DESIGN.md +454 -0
  194. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bugatti/README.md +5 -0
  195. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cal/DESIGN.md +542 -0
  196. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cal/README.md +5 -0
  197. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/claude/DESIGN.md +589 -0
  198. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/claude/README.md +5 -0
  199. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clay/DESIGN.md +541 -0
  200. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clay/README.md +5 -0
  201. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clickhouse/DESIGN.md +544 -0
  202. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clickhouse/README.md +5 -0
  203. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cohere/DESIGN.md +451 -0
  204. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cohere/README.md +5 -0
  205. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/coinbase/DESIGN.md +570 -0
  206. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/coinbase/README.md +5 -0
  207. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/composio/DESIGN.md +506 -0
  208. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/composio/README.md +5 -0
  209. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cursor/DESIGN.md +537 -0
  210. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cursor/README.md +5 -0
  211. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/dell-1996/DESIGN.md +632 -0
  212. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/dell-1996/README.md +5 -0
  213. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/elevenlabs/DESIGN.md +504 -0
  214. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/elevenlabs/README.md +5 -0
  215. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/expo/DESIGN.md +526 -0
  216. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/expo/README.md +5 -0
  217. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ferrari/DESIGN.md +531 -0
  218. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ferrari/README.md +5 -0
  219. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/figma/DESIGN.md +578 -0
  220. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/figma/README.md +5 -0
  221. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/framer/DESIGN.md +544 -0
  222. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/framer/README.md +5 -0
  223. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hashicorp/DESIGN.md +575 -0
  224. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hashicorp/README.md +5 -0
  225. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hp/DESIGN.md +670 -0
  226. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hp/README.md +5 -0
  227. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ibm/DESIGN.md +550 -0
  228. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ibm/README.md +5 -0
  229. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/intercom/DESIGN.md +546 -0
  230. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/intercom/README.md +5 -0
  231. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/kraken/DESIGN.md +125 -0
  232. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/kraken/README.md +5 -0
  233. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lamborghini/DESIGN.md +288 -0
  234. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lamborghini/README.md +5 -0
  235. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/linear.app/DESIGN.md +548 -0
  236. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/linear.app/README.md +5 -0
  237. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lovable/DESIGN.md +298 -0
  238. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lovable/README.md +5 -0
  239. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mastercard/DESIGN.md +365 -0
  240. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mastercard/README.md +5 -0
  241. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/meta/DESIGN.md +683 -0
  242. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/meta/README.md +5 -0
  243. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/minimax/DESIGN.md +746 -0
  244. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/minimax/README.md +5 -0
  245. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mintlify/DESIGN.md +852 -0
  246. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mintlify/README.md +5 -0
  247. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/miro/DESIGN.md +825 -0
  248. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/miro/README.md +5 -0
  249. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mistral.ai/DESIGN.md +773 -0
  250. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mistral.ai/README.md +5 -0
  251. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mongodb/DESIGN.md +767 -0
  252. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mongodb/README.md +5 -0
  253. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nike/DESIGN.md +575 -0
  254. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nike/README.md +5 -0
  255. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nintendo-2001/DESIGN.md +649 -0
  256. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nintendo-2001/README.md +5 -0
  257. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/notion/DESIGN.md +821 -0
  258. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/notion/README.md +5 -0
  259. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nvidia/DESIGN.md +640 -0
  260. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nvidia/README.md +5 -0
  261. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ollama/DESIGN.md +539 -0
  262. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ollama/README.md +5 -0
  263. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/opencode.ai/DESIGN.md +521 -0
  264. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/opencode.ai/README.md +5 -0
  265. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/pinterest/DESIGN.md +597 -0
  266. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/pinterest/README.md +5 -0
  267. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/playstation/DESIGN.md +661 -0
  268. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/playstation/README.md +5 -0
  269. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/posthog/DESIGN.md +690 -0
  270. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/posthog/README.md +5 -0
  271. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/raycast/DESIGN.md +669 -0
  272. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/raycast/README.md +5 -0
  273. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/renault/DESIGN.md +589 -0
  274. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/renault/README.md +5 -0
  275. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/replicate/DESIGN.md +616 -0
  276. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/replicate/README.md +5 -0
  277. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/resend/DESIGN.md +585 -0
  278. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/resend/README.md +5 -0
  279. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/revolut/DESIGN.md +636 -0
  280. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/revolut/README.md +5 -0
  281. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/runwayml/DESIGN.md +244 -0
  282. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/runwayml/README.md +5 -0
  283. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sanity/DESIGN.md +357 -0
  284. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sanity/README.md +5 -0
  285. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sentry/DESIGN.md +551 -0
  286. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sentry/README.md +5 -0
  287. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/shopify/DESIGN.md +516 -0
  288. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/shopify/README.md +5 -0
  289. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/slack/DESIGN.md +482 -0
  290. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spacex/DESIGN.md +363 -0
  291. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spacex/README.md +5 -0
  292. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spotify/DESIGN.md +246 -0
  293. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spotify/README.md +5 -0
  294. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/starbucks/DESIGN.md +580 -0
  295. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/starbucks/README.md +5 -0
  296. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/stripe/DESIGN.md +487 -0
  297. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/stripe/README.md +5 -0
  298. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/supabase/DESIGN.md +462 -0
  299. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/supabase/README.md +5 -0
  300. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/superhuman/DESIGN.md +448 -0
  301. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/superhuman/README.md +5 -0
  302. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/tesla/DESIGN.md +286 -0
  303. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/tesla/README.md +5 -0
  304. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/theverge/DESIGN.md +339 -0
  305. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/theverge/README.md +5 -0
  306. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/together.ai/DESIGN.md +633 -0
  307. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/together.ai/README.md +5 -0
  308. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/uber/DESIGN.md +636 -0
  309. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/uber/README.md +5 -0
  310. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vercel/DESIGN.md +736 -0
  311. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vercel/README.md +5 -0
  312. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vodafone/DESIGN.md +538 -0
  313. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vodafone/README.md +5 -0
  314. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/voltagent/DESIGN.md +521 -0
  315. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/voltagent/README.md +5 -0
  316. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/warp/DESIGN.md +526 -0
  317. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/warp/README.md +5 -0
  318. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/webflow/DESIGN.md +588 -0
  319. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/webflow/README.md +5 -0
  320. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wired/DESIGN.md +497 -0
  321. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wired/README.md +5 -0
  322. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wise/DESIGN.md +544 -0
  323. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wise/README.md +5 -0
  324. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/x.ai/DESIGN.md +465 -0
  325. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/x.ai/README.md +5 -0
  326. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/zapier/DESIGN.md +537 -0
  327. package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/zapier/README.md +5 -0
  328. package/skills/ai-delivery-orchestrate/references/formal-state-contract.md +65 -20
  329. package/skills/ai-delivery-orchestrate/references/workflow-model.md +7 -5
  330. package/skills/ai-delivery-orchestrate-release/SKILL.md +2 -2
  331. package/skills/ai-delivery-orchestrate-release/agents/openai.yaml +4 -4
  332. package/skills/ai-delivery-orchestrate-release/references/release-workflow-contract.md +1 -1
  333. package/skills/ai-delivery-plan-iteration/SKILL.md +11 -4
  334. package/skills/ai-delivery-plan-iteration/agents/openai.yaml +4 -4
  335. package/skills/ai-delivery-plan-iteration/assets/planning-template/scope-manifest.yaml +17 -0
  336. package/skills/ai-delivery-plan-iteration/assets/planning-template/slice-prototype-traceability.csv +1 -1
  337. package/skills/ai-delivery-plan-iteration/references/planning-contract.md +8 -2
  338. package/skills/ai-delivery-prepare-platform/SKILL.md +5 -1
  339. package/skills/ai-delivery-prepare-platform/agents/openai.yaml +4 -4
  340. package/skills/ai-delivery-prepare-release/agents/openai.yaml +4 -4
  341. package/skills/ai-delivery-review-change/SKILL.md +14 -4
  342. package/skills/ai-delivery-review-change/agents/openai.yaml +4 -4
  343. package/skills/ai-delivery-review-change/references/review-contract.md +6 -0
  344. package/skills/ai-delivery-triage-failure/SKILL.md +5 -1
  345. package/skills/ai-delivery-triage-failure/agents/openai.yaml +4 -4
  346. package/skills/ai-delivery-validate-artifacts/SKILL.md +6 -3
  347. package/skills/ai-delivery-validate-artifacts/agents/openai.yaml +4 -4
  348. package/skills/ai-delivery-validate-artifacts/references/artifact-contract.md +13 -13
  349. package/skills/ai-delivery-verify-candidate/SKILL.md +13 -6
  350. package/skills/ai-delivery-verify-candidate/agents/openai.yaml +3 -3
  351. package/skills/ai-delivery-verify-candidate/assets/verification-template/ui-acceptance-request.yaml +19 -0
  352. package/skills/ai-delivery-verify-candidate/assets/verification-template/ui-acceptance-results.yaml +53 -0
  353. package/skills/ai-delivery-verify-candidate/references/candidate-verification-contract.md +10 -2
  354. package/skills/ai-delivery-verify-production/agents/openai.yaml +3 -3
  355. package/skills/ai-delivery-design-experience/assets/experience-template/low-fidelity-confirmation.yaml +0 -32
  356. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/public/app.js +0 -546
  357. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/public/index.html +0 -199
  358. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/public/styles.css +0 -529
  359. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/server.mjs +0 -780
  360. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/start.cmd +0 -4
  361. package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/start.ps1 +0 -2
@@ -16,58 +16,57 @@ Use state types `default`, `loading`, `empty`, `success`, `partial`, `error`, `p
16
16
 
17
17
  ## Design Baseline
18
18
 
19
- Include task flows, information architecture, page inventory, an executable low-fidelity prototype, interaction contract, visual direction, framework selection, machine-readable design tokens, component states, a production-compatible formal UI baseline, responsive behavior, accessibility rules, content rules, change sets, final product reconciliation, and unresolved technical questions.
19
+ Include task flows, information architecture, page inventory, interaction contract, design-reference selection, runnable HTML Visual Reference, visual direction, framework/component/icon selection, machine-readable design tokens, component states, a production-compatible runnable prototype, responsive behavior, accessibility rules, content rules, change sets, final product reconciliation, and unresolved technical questions.
20
20
 
21
21
  Do not select new product terminals or change feature behavior. Route those changes to product definition.
22
22
 
23
- Apply [prototype-management-contract.md](prototype-management-contract.md) to every visual or interactive prototype member. A member cannot enter authoring without a valid human tool-selection receipt and cannot freeze without valid `UX-LF`, `UX-VS`, `UX-UI`, product-reconciliation, adjustment-closure, and impact-assessment evidence.
23
+ Apply [prototype-management-contract.md](prototype-management-contract.md) to the project's one logical Prototype. It cannot enter authoring without a valid human tool-selection receipt and no revision can freeze without valid `UX-VS`, `UX-UI`, product-reconciliation, adjustment-closure, and impact-assessment evidence.
24
24
 
25
25
  ## Staged Gates And Handoff
26
26
 
27
- `UX-LF` accepts only an executable low-fidelity interaction revision with no dead controls and complete interaction/state evidence. `UX-VS` accepts exact visual-direction, design-token, framework-selection, and component-state checksums. `UX-UI` accepts a runnable formal UI revision that preserves confirmed interactions and applies the selected system. Product reconciliation runs after all members are candidate-approved and before freeze.
27
+ `UX-VS` accepts exact design-reference selection, Visual Reference HTML/manifest, visual-direction, design-token, framework/component/icon-selection, component registry/configuration, selected components, checksummed local adaptations, component-state, license, upstream-attribution, and complete design-input checksums. Before Gate completion, `ai-delivery visual-standard validate <workspace> --experience <relative-directory>` must pass. Missing or drifted inputs, incomplete checksum coverage, and expired approvals fail closed. `UX-UI` accepts a production-compatible runnable Prototype revision with complete interaction/state evidence, no dead controls, and the selected visual system applied. Product reconciliation runs after all affected Pages and Review Scenes are candidate-approved and before freeze.
28
28
 
29
- `ui-handoff.yaml` is the single downstream readiness interface. It pins the experience baseline, prototype set, all Gate receipts, interaction contract, tokens, framework selection, component states, page-component map, experience/requirement changes, and product coverage. It remains `development_readiness: blocked` until every Gate passes, product decision is `aligned`, all requirement changes are terminal, and no referenced artifact is stale.
29
+ `ui-handoff.yaml` is the single downstream readiness interface. It pins the experience baseline, exact Prototype revision, all Gate receipts, interaction contract, tokens, framework selection, component states, UI Mapping, experience/requirement changes, and product coverage. It remains `development_readiness: blocked` until every Gate and `prototype-revision validate` pass, product decision is `aligned`, all requirement changes are terminal, and no referenced artifact is stale.
30
30
 
31
31
  Use `experience-change-set.csv` for `added`, `modified`, `retired`, `superseded`, and `unchanged` stable identities. Normalize multiple domains through `experience-change-domains.csv`; allowed domains are `requirement`, `layout`, `navigation`, `interaction`, `state`, `content`, `visual`, `component`, `responsive`, and `accessibility`. Do not infer deltas by visually comparing prototype files.
32
32
 
33
- ## Prototype Manifest
33
+ ## Prototype Revision
34
34
 
35
- Produce one `prototype-manifest.yaml` per independently versioned review bundle. A bundle may cover one or more terminals only when a single source revision, export, confirmation, and downstream validation lifecycle applies to all of them. Create separate manifests when terminals use different design sources, revision lifecycles, or review bundles.
35
+ Maintain exactly one `prototype.yaml` descriptor, one current source tree, and one current Review Shell for the project. Multiple terminals remain inside this logical Prototype and are grouped by `terminal_id`; `prototype-terminals.csv` may declare compatible independent source entrypoints and build commands without creating separate Prototype identities.
36
36
 
37
- Create `prototype-set.yaml` as the complete ordered handoff set. Record its artifact ID, version, iteration, status, producer, product baseline, initial architecture baseline, architecture-gate inputs with versions/checksums, and one member row per manifest with the member artifact ID, version, covered terminal IDs, manifest path, and manifest SHA-256. Freeze and register the set checksum after all member manifests are frozen.
37
+ Freeze every approved iteration as one immutable `prototype-revision.yaml`. It pins the stable Prototype ID, iteration ID, exact source revision/tree checksum, checksummed review bundle, Review Shell entrypoint, approved Visual Standard, review evidence, and all normalized catalogs. The review bundle contains the revision's terminal, Page, Review Scene, trigger-condition, route, and UI Mapping snapshots. Run `ai-delivery prototype-revision validate` before registration and retain the report.
38
38
 
39
- Architecture must produce one accepted receipt per set member before reconciliation passes. Test design validates members relevant to its selected slices: every set member must appear in `prototype-test-scope.csv` as `included` or `out-of-scope`; every included member requires an accepted test receipt, and every exclusion requires slice/terminal evidence and rationale.
39
+ When Review Scenes depend on protocol simulations, keep External Dependency Mock and Product Backend Mock catalogs isolated. Every entry records an explicit kind, owner, approved contract, replacement condition, operation/channel, and named deterministic scenario. Export every managed UI OpenAPI/AsyncAPI definition into `mock-admin-exports/`; `mock-admin-export.yaml` binds each actual file by kind, mock identity, protocol, relative path, and SHA-256. Freeze requires exactly one export per used Mock identity and protocol-validates every mapped scenario against its exported content. Prohibit production traffic, credentials, and unsanitized personal data, and require passed sanitization evidence for explicit imports. `mock-scenario-mappings.csv` maps every active Review Scene exactly once. `ai-delivery mock freeze --dry-run` produces the candidate checksum for human confirmation; the immutable Mock Scenario Pack becomes authoritative only after its exact file checksum is formally registered. Product Backend Mock evidence never proves the real backend or end-to-end behavior.
40
40
 
41
- Name member files with their stable prototype ID, for example `prototype-manifest-PROTOTYPE-WEB-0001.yaml` and `prototype-confirmation-PROTOTYPE-WEB-0001.yaml`. Do not reuse an unsuffixed filename for multiple members.
41
+ `prototype-pages.csv` owns stable Page identity. `prototype-review-scenes.csv` owns stable directly reviewable conditions. `prototype-trigger-conditions.csv` owns how each scene is activated. `prototype-routes.csv` owns route paths and their `prototype` or `production` kind. `ui-mapping.csv` binds each Page and Review Scene to its direct prototype route, real production Page route, frontend source, and acceptance ID. A production route never targets a Review Scene; conditional review access must not fabricate a production route.
42
42
 
43
- Each prototype manifest contains:
43
+ Each iteration and every approval, source confirmation, architecture receipt, test receipt, plan, development task, and candidate check pin one exact Prototype revision identity and checksum. Later source work creates a new revision of the same Prototype; it never creates a Prototype copy or member bundle.
44
44
 
45
- - artifact ID, version, status, producer, and iteration ID;
46
- - exact product and initial architecture input references;
47
- - exact tool-selection reference/checksum;
48
- - prototype type, fidelity, source path or URL, immutable source revision, and review entrypoint;
49
- - stable review bundle path and SHA-256;
50
- - covered terminal, flow, screen, and state IDs;
51
- - page, canvas, canvas-page, prototype-file, and file-terminal catalog references with SHA-256 checksums;
52
- - staged human Gate receipts, review sessions, review comments, adjustment log, and impact assessment references with SHA-256 checksums;
53
- - traceability, state-catalog, and feature-screen-coverage references with SHA-256 checksums;
54
- - applicable standard IDs and versions.
45
+ Legacy `prototype-set.yaml` and member manifests are accepted only as read-only historical inputs. Compatibility readers may normalize their identities for inspection, verification, rebuild, or explicit migration. Current producers never generate or mutate set/member artifacts.
55
46
 
56
- A remote design URL without an immutable revision and stable review export is not sufficient. Record the review entrypoint as a relative path inside the checksummed review bundle so it cannot drift independently. For a non-visual terminal, use `prototype_type: not-applicable` and record a product-terminal rationale.
47
+ ## Legacy Prototype Migration
48
+
49
+ `upgrade` installs migration capability and reports `prototype_migration.required_follow_up`; it never applies the Prototype migration. `migrate --dry-run` is the authoritative zero-write plan, and `migrate` applies it only when `can_apply: true`.
50
+
51
+ For the open iteration, validate set/member identity, manifest/source/catalog SHA-256, contained paths, and stable terminal, Page, route, and file identities. A valid zero-member input is `not-required`. A single member migrates automatically only when every identity, checksum, catalog, and target is unambiguous. Multiple members merge equal stable identities and block on differing definitions until one checksum-bound `human:<identity>` decision selects the canonical member. The one migration decision file always contains both `decisions` and `prototype_decisions` lists.
52
+
53
+ Apply creates only `.workflow/experience/<iteration-id>/prototype.yaml`, `prototype-migration.yaml`, copied `prototype/source/<member-id>/...` bytes, and a current Review Shell. Preserve legacy set/member/source bytes, closed and archived iterations, Gate files, approvals, and events. The new descriptor uses `prototype_id: PROTOTYPE`, `status: migration-pending-ux-ui`, and `current_revision_ref: null`.
54
+
55
+ Migration approval is never inherited. Complete the current normalized catalogs and Review Shell, freeze a new immutable revision, pass `prototype-revision validate`, then request a new `UX-UI`. The migration Review Shell is only a navigation aid; Workflow Manager may accept decisions only for the new complete frozen revision, and P17 keeps the migration lineage available for audit.
57
56
 
58
57
  `prototype-traceability.csv`:
59
58
 
60
- `prototype_element_id,prototype_artifact_id,prototype_version,source_revision,prototype_file_id,canvas_id,page_id,feature_id,acceptance_id,terminal_id,flow_id,screen_id,state_id,interaction,coverage_status`
59
+ `prototype_element_id,prototype_revision_id,source_revision,terminal_id,page_id,review_scene_id,feature_id,acceptance_id,flow_id,state_id,interaction,coverage_status`
61
60
 
62
61
  Every in-scope feature-terminal behavior and applicable state must resolve to at least one prototype element. Do not encode multiple IDs in one CSV cell; use multiple rows.
63
62
 
64
63
  ## Prototype Source Confirmation
65
64
 
66
- Write one immutable `prototype-confirmation.yaml` per set member. Pin the prototype-set reference/checksum, prototype manifest reference/checksum, artifact identity, source revision, review-bundle checksum, tool-selection checksum, management and review catalog checksums, impact-assessment checksum, and linked coverage checksums. Record separate results for:
65
+ Write one immutable `prototype-confirmation.yaml` for the exact Prototype revision. Pin its identity/checksum, source revision/tree checksum, review-bundle checksum, tool-selection checksum, normalized catalog checksums, review/impact checksums, and linked coverage checksums. Record separate results for:
67
66
 
68
67
  - tool-selection validity;
69
- - page/canvas/file management validity;
70
- - mandatory staged human-review closure for `UX-LF`, `UX-VS`, and `UX-UI`;
68
+ - terminal, Page, Review Scene, trigger-condition, route, and UI Mapping catalog validity;
69
+ - mandatory staged human-review closure for `UX-VS` and `UX-UI`;
71
70
  - review-impact propagation;
72
71
  - product behavior and acceptance alignment;
73
72
  - terminal coverage;
@@ -77,6 +76,6 @@ Write one immutable `prototype-confirmation.yaml` per set member. Pin the protot
77
76
  - responsive and accessibility review;
78
77
  - unresolved issues and required return node.
79
78
 
80
- For every confirmation check, use statuses `pending`, `pass`, `fail`, and `not-applicable`; record evidence, and require a non-empty product-terminal rationale for `not-applicable`. Use decisions `confirmed-for-handoff` and `changes-required`. A confirmation can pass only when its set and manifest statuses are `frozen`, registered checksums match, tool selection is valid, `UX-LF`, `UX-VS`, and `UX-UI` are human-approved for visual or interactive members, product reconciliation is `valid/aligned`, the impact assessment is `valid/ready-for-finalization`, every required check is `pass` or justified `not-applicable`, and blocking issues are empty. Require `human_approval.required: true`, the latest review session for each applicable Gate `approved`, all comments terminal, all adjustments linked, and the approved formal UI source revision equal to the final manifest revision. Set confirmation `status: valid` with `confirmed_at` when confirmed; use `status: invalid` for `changes-required`. A genuinely non-visual terminal may mark visual Gates `not-applicable`; it must not use that exception for any member with user-operable interaction.
79
+ For every confirmation check, use statuses `pending`, `pass`, `fail`, and `not-applicable`; record evidence, and require a non-empty product-terminal rationale for `not-applicable`. Use decisions `confirmed-for-handoff` and `changes-required`. A confirmation can pass only when the revision is `frozen`, registered checksums and revision validation match, tool selection is valid, `UX-VS` and `UX-UI` are human-approved for every visual or interactive terminal, product reconciliation is `valid/aligned`, the impact assessment is `valid/ready-for-finalization`, every required check is `pass` or justified `not-applicable`, and blocking issues are empty. Require `human_approval.required: true`, the latest review session for each applicable Gate `approved`, all comments terminal, all adjustments linked, and the approved formal UI source revision equal to the frozen revision's source revision. Set confirmation `status: valid` with `confirmed_at` when confirmed; use `status: invalid` for `changes-required`. A genuinely non-visual terminal may mark visual Gates `not-applicable`; it must not use that exception for any terminal with user-operable interaction.
81
80
 
82
- Downstream consumers must create separate receipts per prototype-set member and pin the source-confirmation version and checksum; they must not modify the frozen set, manifest, linked catalogs, or source confirmation. A rejected receipt creates a new affected prototype version and a new set version, then marks dependent experience, architecture, planning, and test artifacts stale as applicable.
81
+ Downstream consumers pin the source-confirmation version/checksum and exact Prototype revision; they must not modify the frozen revision, linked catalogs, or source confirmation. A rejected receipt returns to the same current Prototype source, produces a new revision, and marks dependent experience, architecture, planning, and test artifacts stale as applicable.
@@ -2,15 +2,15 @@
2
2
 
3
3
  ## Tool Selection Gate
4
4
 
5
- Reserve a stable `prototype_artifact_id` for each prototype-set member before authoring. Inspect the current product scope, terminals, fidelity, collaboration, offline, version-control, interaction, review, and delivery constraints. Record every considered option in one member-scoped `prototype-tool-candidates-<prototype_artifact_id>.csv`:
5
+ Reserve the project's stable `prototype_id` before authoring. Inspect the current product scope, terminals, fidelity, collaboration, offline, version-control, interaction, review, and delivery constraints. Record every considered option in one project-scoped `prototype-tool-candidates.csv`:
6
6
 
7
- `candidate_id,prototype_artifact_id,tool_name,tool_kind,availability,availability_evidence,fit_level,fit_rationale,recommendation_rank`
7
+ `candidate_id,prototype_id,tool_name,tool_kind,availability,availability_evidence,fit_level,fit_rationale,recommendation_rank`
8
8
 
9
9
  Use `authoring-tool` and `design-assistant` for `tool_kind`; use `available`, `unavailable`, and `unknown` for availability; use `high`, `medium`, and `low` for fit. Figma, Pencil, and local HTML are authoring tools when available. A skill such as `ui-ux-pro-max-skill` is a design assistant, not a source-file or review-bundle manager.
10
10
 
11
11
  Verify availability instead of assuming installation or access. For a project skill, inspect the project-scoped `.agents/skills/` installation. If the selected skill is unavailable, install it only under the current project's `.agents/skills/` after explicit user selection; never install it globally.
12
12
 
13
- Recommend options with evidence, then ask the user to select one authoring tool and any optional design assistants for that member. Record the choice in `prototype-tool-selection-<prototype_artifact_id>.yaml`. The selection gate passes only with `status: valid`, `decision: selected`, a human `selected_by` and `selected_at`, an `available` selected authoring candidate, and a matching candidate-catalog checksum. Do not create prototype source, pages, canvases, or files before this gate passes. A tool change creates a new selection version and marks affected prototype artifacts stale.
13
+ Recommend options with evidence, then ask the user to select one authoring tool and any optional design assistants for the Prototype. Record the choice in `prototype-tool-selection.yaml`. The selection gate passes only with `status: valid`, `decision: selected`, a human `selected_by` and `selected_at`, an `available` selected authoring candidate, and a matching candidate-catalog checksum. Do not create prototype source, pages, canvases, or files before this gate passes. A tool change creates a new selection version and marks the affected Prototype revision stale.
14
14
 
15
15
  ## Stable Page Identity
16
16
 
@@ -21,48 +21,69 @@ Use separate fields for identity and display:
21
21
 
22
22
  Main page IDs match `^P[0-9]{2,}$`; child page IDs match `^P[0-9]{2,}-[0-9]{2,}$`. Do not create third-level IDs. Allocate a page ID only for an independent route or independently reviewable business page. Model dialogs, loading, empty, error, permission, disabled, success, partial, and recovery variants as elements or states unless they are independently routed pages.
23
23
 
24
- Store all pages in member-scoped `page-catalog-<prototype_artifact_id>.csv`. Derive `display_label` from `page_id + "-" + page_name`; never parse identity from the label. Rename by changing `page_name` and `display_label` only. Never renumber or reuse an ID. Mark removed pages `retired`; allocate new IDs after the greatest allocated sibling number.
24
+ Store all Pages in `prototype-pages.csv`. Derive `display_label` from `page_id + "-" + page_name`; never parse identity from the label. Rename by changing `page_name` and `display_label` only. Never renumber or reuse an ID. Mark removed Pages `retired`; allocate new IDs after the greatest allocated sibling number.
25
25
 
26
- ## Canvas And File Boundaries
26
+ Store every directly reviewable condition in `prototype-review-scenes.csv` with an independent `RS0001` identity, owning Page, terminal, scene type, and trigger-condition reference. Store trigger definitions once in `prototype-trigger-conditions.csv`. A Review Scene receives a direct prototype route but not an independent production route.
27
27
 
28
- Use:
28
+ ## Terminal, Route, And Mapping Boundaries
29
29
 
30
- - `canvas-catalog-<prototype_artifact_id>.csv` for stable canvas identity and its owning main-page family;
31
- - `canvas-pages-<prototype_artifact_id>.csv` for normalized canvas-to-page membership;
32
- - `prototype-files-<prototype_artifact_id>.csv` for source files, authoring tool, revision, lifecycle, and review scope;
33
- - `prototype-file-terminals-<prototype_artifact_id>.csv` for normalized file-to-terminal membership.
30
+ Keep all terminals in the same logical Prototype. `prototype-terminals.csv` declares each `terminal_id`, source entrypoint, build command, review base path, production base path, compatibility group, and lifecycle. Compatible independent entrypoints are allowed; separate Prototype identities are not.
34
31
 
35
- One canvas contains exactly one main-page family: one main page and any `Pxx-*` children. Never put different main pages on the same canvas. A large family may use multiple canvases while retaining the same `main_page_id`.
32
+ `prototype-routes.csv` is the only route registry. A `prototype` route may target a Page or Review Scene. A `production` route targets a Page only. `ui-mapping.csv` is the only bidirectional association among Page/Review Scene, prototype route, production Page route, frontend source, and acceptance ID. Do not repeat paths or mappings in Page, Review Scene, or revision manifests.
36
33
 
37
- Split prototype files when terminals, selected authoring tools, permissions, freeze/review lifecycles, or independent delivery boundaries differ. A file may contain multiple canvases only when those boundaries are shared. Use stable IDs and explicit catalog rows; never infer page, canvas, file, or terminal relationships from names or design-tool hierarchy. Retire IDs instead of deleting or reusing them.
34
+ The frozen Review Shell entrypoint must consume Workflow Manager's `review_path` query parameter and render the matching active path from `prototype-routes.csv`. Treat an absent, unknown, retired, or cross-terminal path as an explicit not-found state. Relative CSS, JavaScript, font, and media references must remain runnable from the frozen entrypoint; Manager embeds only that checksummed content in a sandbox and never interprets product behavior.
35
+
36
+ Legacy canvas/file catalogs are read-only compatibility inputs. When inspecting them, One canvas contains exactly one main-page family and stable identities remain immutable. Current authoring records source structure in the Prototype repository and normalized terminal/route catalogs instead of creating member-scoped canvas or file registries.
37
+
38
+ ## Production Frontend Scope
39
+
40
+ Store one `frontend-change-scope.yaml` inside the frozen review bundle and bind its SHA-256 from `prototype-revision.yaml`. It declares the configured code root, non-empty frontend roots and UI file extensions, and production ownership entries for shared components and route registries. Shared-component entries use `source_ref`, `source_kind: file|directory`, and a non-empty normalized `page_ids` list. Every route-registry entry must name one file and add `approved_checksum`, the SHA-256 of the exact candidate file content approved with the Prototype revision. Every active UI Mapping and ownership source must fall inside a declared frontend root, and every file source must use an allowed UI extension; reject the entire scope rather than silently skipping a declared source. Keep direct Page and Review Scene files in `ui-mapping.csv`; use scope ownership only for production files that genuinely affect more than one mapped unit or own route registration. The local pre-write check validates Page ownership; the independent fixed-ref diff reads each changed route registry from the candidate Git object and rejects content that does not match its frozen checksum.
41
+
42
+ Before any production frontend write, run `ai-delivery frontend-guard check-file` for the exact path. The guard validates the unexpired Visual Standard, frozen revision and scope checksum, active UI Mapping, and current Page receipts. A new file, removed file, copy, style, responsive rule, accessibility correction, defect fix, shared component, or route change follows the same rule. Missing coverage, pending review, changes requested, stale evidence, or checksum drift fails closed. The Hook invokes the same project runtime, but its result is not formal verification.
43
+
44
+ At independent review and CI, run `ai-delivery frontend-guard verify-diff` from a fixed base Git ref to the candidate head. It reads the nested code repository diff directly and revalidates the exact revision, receipts, and ownership; Hook logs or prior local success are never accepted as proof. A scope entry affects only its declared Page IDs, so one approved Page cannot authorize a different pending Page.
45
+
46
+ ## Page Review State
47
+
48
+ Register every active Page and Review Scene in `prototype-review-units.csv`. A Review Unit has a stable identity, kind (`page`, `review-scene`, or `shared-component`), checksummed Prototype source reference, and lifecycle status. Store each Unit-to-Page association as one normalized row in `prototype-review-unit-pages.csv`; never encode multiple Page IDs in one field. Each active Page and Review Scene requires its own active Review Unit; a shared component has one association row for every affected Page. The Page checksum covers its Page row, Review Scenes, trigger conditions, prototype and production routes, UI Mapping rows, Page source units, shared-component units and their Page associations, and the approved Visual Standard.
49
+
50
+ The only Page Review Status values are `approved`, `pending-review`, `changes-requested`, and `stale`. Derive them from immutable Page review receipts, never from a mutable UI field or a global review decision. Each receipt binds a human actor, exact Prototype revision identity and checksum, Page checksum, Scene checksums, evidence-domain checksums, decision time, rationale, and optional comment. The browser writes decisions only through Workflow Manager's allowlisted Page-review action; it must not edit YAML, workflow state, or review receipts directly.
51
+
52
+ For a new Prototype revision, inspect Page decisions only along its checksum-validated `previous_revision` ancestor chain, nearest ancestor first. Never inherit from a descendant or unrelated revision. Carry the selected prior decision forward only when it is `approved` and the complete Page checksum is identical. Preserve an unchanged latest `changes-requested` decision on that ancestor; if any bound evidence changes, derive `stale` and report the changed evidence domains. Any content or catalog drift invalidates the active review session before a decision is written.
53
+
54
+ When the user approves the final pending Page, label the action `Approve Page and complete UX-UI`. Write that Page receipt and the `UX-UI` Gate decision in one atomic formal-state transaction, binding both to the same human actor, iteration, Prototype revision, and receipt checksum. A failure must leave both the receipt and Gate decision unwritten.
55
+
56
+ After `UX-UI` is approved and no new `UX-UI` request is pending, close the controlled Page-decision API for that iteration. Any later requested UI change starts from a new immutable Prototype revision and a new formal Gate request; never append a receipt that would diverge from an already approved Gate.
38
57
 
39
58
  ## Mandatory Staged Human Review
40
59
 
41
- Every visual or interactive member requires human review at `UX-LF`, `UX-VS`, and `UX-UI`. Record `human_review_required: true` in `prototype-review-decision-<prototype_artifact_id>.yaml`; `contract-only` is permitted only for a genuinely non-visual `not-applicable` member.
60
+ Every visual or interactive Prototype revision requires human review at `UX-VS` and `UX-UI`. Record `human_review_required: true` in `prototype-review-decision.yaml`; `contract-only` is permitted only when every covered terminal is genuinely non-visual and `not-applicable`.
42
61
 
43
62
  For each staged Gate:
44
63
 
45
- 1. Record every round in `prototype-review-sessions-<prototype_artifact_id>.csv`, pinning the Gate, reviewed source revision, and evidence.
46
- 2. Record every comment in `prototype-review-comments-<prototype_artifact_id>.csv` with page, canvas, file, element, classification, severity, responsible node, and evidence.
64
+ 1. Record every round in `prototype-review-sessions.csv`, pinning the Gate, reviewed source revision, affected Page and Review Scene identities, and evidence.
65
+ 2. Record every comment in `prototype-review-comments.csv` with Page, Review Scene, element, classification, severity, responsible node, and evidence.
47
66
  3. Use classifications `design-correction`, `requirement-change`, `architecture-impact`, and `clarification`; every concrete adjustment additionally uses one or more normalized domains from `experience-change-domains.csv`.
48
67
  4. Use terminal comment statuses `resolved`, `rejected-with-rationale`, and `superseded`; open work uses `open`.
49
- 5. Record every prototype revision caused by a comment in `prototype-adjustment-log-<prototype_artifact_id>.csv`, including classification, reason, linked requirement/experience changes, upstream/downstream impacts, and evidence. Never overwrite an earlier revision or omit an adjustment because it appears visual-only.
68
+ 5. Record every source revision caused by a comment in `prototype-adjustment-log.csv`, including classification, reason, linked requirement/experience changes, upstream/downstream impacts, and evidence. Never overwrite an earlier revision or omit an adjustment because it appears visual-only.
50
69
  6. Require another review round after adjustments. Exit the Gate only when the latest session decision is `approved`, every comment is terminal, and the Gate receipt pins the approved revision and checksums.
51
70
 
52
- Set source confirmation `human_approval.required: true` and pin the final approver, decision time, approved formal UI revision, and exact set/member/Gate checksums. The approved revision must equal the manifest's final source revision.
71
+ Set source confirmation `human_approval.required: true` and pin the final approver, decision time, approved formal UI source revision, and exact Prototype revision/Gate checksums. The approved source revision must equal the frozen Prototype revision's source revision.
53
72
 
54
73
  ## Impact Propagation
55
74
 
56
- Write `prototype-impact-assessment-<prototype_artifact_id>.yaml` after comments are classified and update it after every round. A `design-correction` updates experience artifacts only. A `clarification` updates only the artifacts named by its assessment without changing behavior. A `requirement-change` returns to product definition and creates a new product baseline before final prototype freeze. An `architecture-impact` returns to architecture and creates or validates the required architecture baseline before final prototype freeze.
75
+ Write `prototype-impact-assessment.yaml` after comments are classified and update it after every round. A `design-correction` updates experience artifacts only. A `clarification` updates only the artifacts named by its assessment without changing behavior. A `requirement-change` returns to product definition and creates a new product baseline before final prototype freeze. An `architecture-impact` returns to architecture and creates or validates the required architecture baseline before final prototype freeze.
57
76
 
58
77
  Keep revised prototypes in `review-draft` while upstream change obligations remain open. Mark dependent artifacts stale, rerun affected nodes, and then revise the prototype from the new immutable inputs. The impact assessment passes with `status: valid` and `decision: ready-for-finalization` only when all required rebaselines resolve, stale impacts are declared, and blocking issues are empty.
59
78
 
60
79
  ## Final Product Reconciliation
61
80
 
62
- After every visual or interactive member reaches `candidate-approved`, aggregate all adjustments. Link every semantic adjustment to `requirement-change-set.csv`; use statuses `identified`, `product-triage`, `awaiting-product-confirmation`, `approved`, `rejected`, `product-baseline-updated`, `impact-propagated`, `prototype-rebased`, and `closed`.
81
+ After every affected Page and Review Scene reaches `candidate-approved`, aggregate all adjustments. Link every semantic adjustment to `requirement-change-set.csv`; use statuses `identified`, `product-triage`, `awaiting-product-confirmation`, `approved`, `rejected`, `product-baseline-updated`, `impact-propagated`, `prototype-rebased`, and `closed`.
63
82
 
64
- Invoke product definition once for the complete candidate set. Product compares the approved baseline and prototype bidirectionally through `prototype-product-coverage.csv` and owns `product-prototype-reconciliation.yaml`. A rejected requirement change requires removal or correction of the prototype behavior. A changed product baseline makes affected members stale and requires their staged re-approval. Repeat until decision `aligned`; do not freeze by merely editing product documentation to match the prototype.
83
+ Invoke product definition once for the complete candidate revision. Product compares the approved baseline and Prototype bidirectionally through `prototype-product-coverage.csv` and owns `product-prototype-reconciliation.yaml`. A rejected requirement change requires removal or correction of the Prototype behavior. A changed product baseline makes affected Pages and Review Scenes stale and requires their staged re-approval. Repeat until decision `aligned`; do not freeze by merely editing product documentation to match the Prototype.
65
84
 
66
85
  ## Final Freeze
67
86
 
68
- The final manifest pins SHA-256 checksums for tool selection, page/canvas/file catalogs, every staged Gate, visual system, interaction/component contracts, review session/comment/adjustment catalogs, change sets, final product reconciliation, and impact assessment. Source confirmation and UI handoff may pass only when all staged reviews are approved and closed, reconciliation is aligned, change sets are terminal, page/canvas/file rules pass, and impact assessment is ready.
87
+ The final `prototype-revision.yaml` pins SHA-256 checksums for the source revision, Review Shell bundle, terminal/Page/Review Scene/trigger/route/UI Mapping catalogs, every staged Gate, visual system, review evidence, change sets, final product reconciliation, and impact assessment. Run `ai-delivery prototype-revision validate` before registration. Source confirmation and UI handoff may pass only when all staged reviews are approved and closed, reconciliation is aligned, change sets are terminal, normalized catalog rules pass, and impact assessment is ready.
88
+
89
+ If a Review Scene uses a Mock System, the same Prototype revision must bind one formally registered immutable Mock Scenario Pack. The Pack maps every active Review Scene to exactly one contract-validated scenario, distinguishes External Dependency Mock from Product Backend Mock, binds approved contracts and replacement conditions, and records data classification and sanitization evidence. Managed UI runtime changes are never authoritative before each actual OpenAPI/AsyncAPI export file is SHA-256-bound and protocol/scenario-validated, followed by human confirmation of the candidate checksum, freeze, and formal registration. Mock success is not real backend or end-to-end acceptance evidence.
@@ -9,7 +9,11 @@ Create a durable release strategy once and detailed test inputs just in time for
9
9
 
10
10
  ## Artifact Location
11
11
 
12
- Write every workflow document produced by this skill under project `.workflow/`, defaulting version-scoped test design outputs to `.workflow/iterations/<iteration-id>/<node-id>/`. Automated test source remains in the repository test structure defined by the architecture and work package.
12
+ Write every workflow document produced by this skill under project `.workflow/`, defaulting version-scoped test design outputs to `.workflow/iterations/<iteration-id>/03-delivery-readiness/`. Automated test source remains in the repository test structure defined by the architecture and work package.
13
+
14
+ ## Development Node
15
+
16
+ This Skill owns test-design task phases inside `03-delivery-readiness`; it does not create a separate formal test-design node. Its public seams, acceptance examples, quality Gates, data plan, and environment plan join planning and platform evidence before scope freeze. Reuse an unaffected approved release test strategy by exact identity and checksum, but create or confirm the current Slice's public test contract before Delivery Readiness completes.
13
17
 
14
18
  ## Task State
15
19
 
@@ -19,21 +23,21 @@ Write every workflow document produced by this skill under project `.workflow/`,
19
23
 
20
24
  ## Preflight
21
25
 
22
- Read the selected vertical slice, product acceptance criteria, exact `ui-handoff.yaml`, `product-prototype-reconciliation.yaml`, experience and requirement change sets, interaction contract, component-state matrix, page-component map, design tokens, frozen prototype set and checksum, every member manifest, tool-selection and page/canvas/file catalogs, review and impact records, source confirmation, architecture validation receipt, final architecture, confirmed public test seams, quality budgets, prior defects, applicable standards, and existing test strategy. Require `UX-LF`, `UX-VS`, and `UX-UI` to be human-approved, product reconciliation to be `aligned`, UI handoff development readiness to be `ready-for-development`, source confirmations to be `valid/confirmed-for-handoff`, and architecture receipts to be `valid/accepted`. Reject missing member receipts, nonterminal change rows, or mismatched IDs, versions, revisions, management/review checksums, or review-bundle checksums.
26
+ Read the selected vertical slice, product acceptance criteria, exact `ui-handoff.yaml`, `product-prototype-reconciliation.yaml`, experience and requirement change sets, interaction contract, component-state matrix, page-component map, design tokens, the exact immutable Prototype revision and checksum, its source and review-bundle checksums, the normalized terminal, Page, Review Scene, trigger-condition, route, and UI Mapping catalogs, review and impact records, source confirmation, architecture validation receipt, final architecture, confirmed public test seams, quality budgets, prior defects, applicable standards, and existing test strategy. Require `UX-VS` and `UX-UI` to be human-approved, product reconciliation to be `aligned`, UI handoff development readiness to be `ready-for-development`, source confirmation to be `valid/confirmed-for-handoff`, and the architecture receipt to be `valid/accepted`. Reject a missing receipt, nonterminal change row, missing or conflicting catalog reference, or mismatched identity, revision, or checksum. Never infer a relationship from a file name or catalog order.
23
27
 
24
28
  ## Workflow
25
29
 
26
30
  1. Establish or update the overall release test strategy and risk model.
27
31
  2. Confirm observable public interfaces and test seams. Never prescribe tests against private implementation details.
28
32
  3. Derive behavior examples from independent requirements and acceptance sources. Use the prototype to locate interactions and states, but never treat appearance alone as a product requirement.
29
- 4. Map every prototype-set member to `included` or `out-of-scope` in `prototype-test-scope.csv` using selected slice and terminal evidence.
30
- 5. Verify that every in-scope page, prototype interaction, component state, and `ready-for-development` experience change is observable and testable through a confirmed public seam. Write one `prototype-test-validation.yaml` per included member with the UI handoff and product-reconciliation checksums, `affected_experience_change_ids`, stable page/canvas/file/element IDs, and all management/review checksums. An accepted receipt uses `status: valid`; a `changes-required` receipt uses `status: invalid`. Accept the handoff only when every included member passes and every exclusion is justified; return untestable or ambiguous behavior to experience or architecture.
33
+ 4. Resolve every affected terminal, Page, Review Scene, UI component, frontend source, and acceptance ID from the pinned UI Mapping. Map each affected Page and Review Scene to `included` or `out-of-scope` in `prototype-test-scope.csv` using selected Slice and terminal evidence.
34
+ 5. Verify that every included Page, Review Scene, prototype interaction, component state, acceptance criterion, and `ready-for-development` experience change is observable and testable through a confirmed public seam. Write one `prototype-test-validation.yaml` for the Prototype revision with the UI handoff, product-reconciliation, Prototype revision, UI Mapping, and normalized catalog checksums; `affected_experience_change_ids`; and the affected stable identities. An accepted receipt uses `status: valid`; a `changes-required` receipt uses `status: invalid`. Accept the handoff only when the receipt passes and every exclusion is justified; return untestable or ambiguous behavior to experience or architecture.
31
35
  6. Define the current iteration's functional, contract, data, security, performance, compatibility, accessibility, responsive, and visual-regression obligations. Trace behavior, visual-regression, responsive, and accessibility cases to each affected `experience_change_id`.
32
36
  7. Define test data, environment, automation, entry, exit, severity, and quality-gate rules.
33
37
  8. Separate developer-visible obligations from independent verification:
34
38
  - publish acceptance examples, seams, contract expectations, and quality targets to development;
35
39
  - leave adversarial, exploratory, cross-component, regression, and additional edge cases for candidate verification.
36
- 9. Trace every obligation to stable requirement, feature, page, canvas, prototype file, prototype element, risk, and architecture IDs.
40
+ 9. Trace every obligation to stable requirement, feature, Page, Review Scene, prototype-element, UI Mapping, UI component, frontend-source, acceptance, risk, and architecture IDs.
37
41
 
38
42
  ## Outputs
39
43
 
@@ -42,15 +46,17 @@ Read the selected vertical slice, product acceptance criteria, exact `ui-handoff
42
46
  - public behavior examples and contract fixtures;
43
47
  - `test-data-plan.md` and `test-environment-plan.md`;
44
48
  - `quality-gates.yaml`;
45
- - one prototype test-validation YAML per relevant prototype-set member;
49
+ - one prototype test-validation YAML for the pinned Prototype revision;
46
50
  - `prototype-test-scope.csv`;
47
51
  - test traceability CSV files including `experience_change_id` coverage;
48
52
  - gaps returned to product, experience, architecture, or planning.
49
53
 
54
+ For UI-bearing scope, the public test contract requires Candidate Assurance to run `ai-delivery ui-acceptance plan` and `verify`, cover every affected Review Scene at the approved Visual Standard breakpoints, retain prototype/candidate/diff evidence, and block on visual ratio, WCAG 2.2 AA, keyboard, focus, touch-target, text-overflow, responsive, recovery, protocol, or Mock authority failures. State whether External Dependency Mock is allowed and require separate real backend evidence whenever Product Backend Mock drives rendering.
55
+
50
56
  Do not implement product code or claim independent release acceptance.
51
57
 
52
58
  Read [test-design-contract.md](references/test-design-contract.md) and use `assets/test-design-template/` for new files.
53
59
 
54
60
  ## Handoff
55
61
 
56
- Development receives the exact ready UI handoff, aligned product reconciliation, actionable experience changes, prototype-set identity/checksum, and relevant member identities/checksums with the public contract, validates that all are actionable, and returns missing seams or ambiguous expectations here. Independent verification later derives additional cases from the approved sources and candidate behavior.
62
+ Development receives the exact ready UI handoff, aligned product reconciliation, actionable experience changes, Prototype revision/checksum, UI Mapping checksum, normalized catalog checksums, and affected stable identities with the public contract, validates that all are actionable, and returns missing seams or ambiguous expectations here. Independent verification later derives additional cases from the approved sources and candidate behavior.
@@ -1 +1 @@
1
- prototype_artifact_id,prototype_version,terminal_id,slice_id,scope_status,rationale,evidence_ref
1
+ prototype_revision_id,terminal_id,slice_id,page_id,review_scene_id,scope_status,rationale,evidence_ref
@@ -9,8 +9,7 @@ input_artifacts:
9
9
  product_prototype_reconciliation: PRODUCT-PROTOTYPE-RECONCILIATION-0001@1
10
10
  experience_change_set: EXPERIENCE-CHANGE-SET-0001@1
11
11
  interaction_contract: INTERACTION-CONTRACT-0001@1
12
- prototype_set: PROTOTYPE-SET-0001@1
13
- prototype_manifest: PROTOTYPE-0001@1
12
+ prototype_revision: PROTOTYPE-REVISION-0001@1
14
13
  prototype_confirmation: PROTOTYPE-CONFIRMATION-0001@1
15
14
  architecture_validation: PROTOTYPE-ARCH-VALIDATION-0001@1
16
15
  prototype_tool_selection: PROTOTYPE-TOOL-SELECTION-0001@1
@@ -25,23 +24,23 @@ experience_change_set_ref: EXPERIENCE-CHANGE-SET-0001@1
25
24
  experience_change_set_checksum: REPLACE_WITH_SHA256
26
25
  interaction_contract_ref: INTERACTION-CONTRACT-0001@1
27
26
  interaction_contract_checksum: REPLACE_WITH_SHA256
28
- prototype_set_ref: PROTOTYPE-SET-0001@1
29
- prototype_set_checksum: REPLACE_WITH_SHA256
30
- prototype_artifact_id: PROTOTYPE-0001
31
- prototype_version: 1
32
- prototype_manifest_ref: prototype-manifest-PROTOTYPE-0001.yaml
33
- prototype_manifest_checksum: REPLACE_WITH_SHA256
27
+ prototype_revision_ref: PROTOTYPE-REVISION-0001@1
28
+ prototype_revision_checksum: REPLACE_WITH_SHA256
29
+ prototype_id: PROTOTYPE
30
+ prototype_revision_version: 1
34
31
  prototype_confirmation_ref: PROTOTYPE-CONFIRMATION-0001@1
35
32
  prototype_confirmation_checksum: REPLACE_WITH_SHA256
36
- source_revision: REVISION-0001
37
- review_bundle_algorithm: sha256
33
+ source_revision: REPLACE_WITH_IMMUTABLE_SOURCE_REVISION
34
+ source_checksum: REPLACE_WITH_SHA256
35
+ review_bundle_algorithm: sha256-tree-v1
38
36
  review_bundle_checksum: REPLACE_WITH_SHA256
39
37
  tool_selection_checksum: REPLACE_WITH_SHA256
38
+ terminal_catalog_checksum: REPLACE_WITH_SHA256
40
39
  page_catalog_checksum: REPLACE_WITH_SHA256
41
- canvas_catalog_checksum: REPLACE_WITH_SHA256
42
- canvas_pages_checksum: REPLACE_WITH_SHA256
43
- prototype_files_checksum: REPLACE_WITH_SHA256
44
- prototype_file_terminals_checksum: REPLACE_WITH_SHA256
40
+ review_scene_catalog_checksum: REPLACE_WITH_SHA256
41
+ trigger_condition_catalog_checksum: REPLACE_WITH_SHA256
42
+ route_catalog_checksum: REPLACE_WITH_SHA256
43
+ ui_mapping_checksum: REPLACE_WITH_SHA256
45
44
  prototype_review_decision_checksum: REPLACE_WITH_SHA256
46
45
  prototype_review_sessions_checksum: REPLACE_WITH_SHA256
47
46
  prototype_review_comments_checksum: REPLACE_WITH_SHA256
@@ -61,9 +60,11 @@ test_contract_checksum: REPLACE_WITH_SHA256
61
60
  decision: changes-required
62
61
  affected_experience_change_ids: []
63
62
  affected_page_ids: []
64
- affected_canvas_ids: []
65
- affected_prototype_file_ids: []
63
+ affected_review_scene_ids: []
64
+ affected_ui_mapping_ids: []
66
65
  affected_prototype_element_ids: []
66
+ affected_ui_component_ids: []
67
+ affected_acceptance_ids: []
67
68
  observable_seams: []
68
69
  untestable_elements: []
69
70
  ambiguity_findings: []
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Public Iteration Contract
4
4
 
5
- Include selected slice IDs, exact `ui-handoff.yaml` identity/checksum, aligned `product-prototype-reconciliation.yaml` identity/checksum, applicable experience-change IDs and statuses, exact prototype-set identity/checksum, relevant member identities/review-bundle checksums, tool-selection and page/canvas/file catalog checksums, review/adjustment/impact checksums, interaction and component-state contract checksums, confirmed public seams, acceptance examples, API/data contracts, required developer automation, test data needs, quality targets, entry criteria, exit criteria, and traceability.
5
+ Include selected Slice IDs, exact `ui-handoff.yaml` identity/checksum, aligned `product-prototype-reconciliation.yaml` identity/checksum, applicable experience-change IDs and statuses, exact Prototype revision/checksum, source and review-bundle checksums, UI Mapping and normalized catalog checksums, review/adjustment/impact checksums, interaction and component-state contract checksums, confirmed public seams, acceptance examples, API/data contracts, required developer automation, test data needs, quality targets, entry criteria, exit criteria, and traceability.
6
6
 
7
7
  Do not publish the full independent verification case set before implementation. Candidate verification must derive additional adversarial, exploratory, edge, cross-component, and regression cases independently.
8
8
 
@@ -10,13 +10,15 @@ Do not publish the full independent verification case set before implementation.
10
10
 
11
11
  For every gate record ID, scope, command or measurement, threshold, blocking behavior, evidence path, and owner stage. Do not use coverage percentage alone as proof of behavior.
12
12
 
13
+ For every UI-bearing iteration, the approved test strategy explicitly controls External Dependency Mock use during Candidate Assurance and requires separate real product backend evidence when Product Backend Mock drives deterministic UI rendering. The iteration contract requires `ui-acceptance plan` and `verify` against the immutable candidate, complete affected Page/Review Scene coverage at approved Visual Standard breakpoints, a pinned Playwright environment, reviewable screenshot diffs, and blocking WCAG 2.2 AA, keyboard, focus, touch-target, text-overflow, responsive, recovery, and protocol results.
14
+
13
15
  ## Test Design Rules
14
16
 
15
17
  - Verify observable behavior through public interfaces.
16
18
  - Use expected results from approved specifications, worked examples, or independent sources.
17
19
  - Mock only external system boundaries when needed.
18
20
  - Trace every obligation to requirement, feature, acceptance, architecture, or risk IDs.
19
- - Trace prototype-derived interactions and states to `page_id`, `canvas_id`, `prototype_file_id`, and `prototype_element_id` without treating unapproved visual invention as a requirement.
21
+ - Resolve and trace prototype-derived interactions and states to `terminal_id`, `page_id`, `review_scene_id`, `prototype_element_id`, `ui_mapping_id`, `ui_component_id`, `frontend_source_ref`, and `acceptance_id` through the pinned UI Mapping without treating unapproved visual invention as a requirement.
20
22
  - Trace behavior, visual-regression, responsive, and accessibility obligations to each affected `experience_change_id`; test only changes in `ready-for-development` state.
21
23
  - Define controlled data setup and cleanup.
22
24
 
@@ -24,8 +26,8 @@ For every gate record ID, scope, command or measurement, threshold, blocking beh
24
26
 
25
27
  `prototype-test-scope.csv`:
26
28
 
27
- `prototype_artifact_id,prototype_version,terminal_id,slice_id,scope_status,rationale,evidence_ref`
29
+ `prototype_revision_id,terminal_id,slice_id,page_id,review_scene_id,scope_status,rationale,evidence_ref`
28
30
 
29
- Use `included` and `out-of-scope`. Create normalized rows when a member covers multiple terminal/slice pairs. Every prototype-set member must have at least one scope row; every exclusion requires a rationale and evidence.
31
+ Use `included` and `out-of-scope`. Create normalized rows for affected terminal, Slice, Page, and Review Scene combinations. Every affected Page and Review Scene resolved from the UI Mapping must have a scope row; every exclusion requires a rationale and evidence.
30
32
 
31
- Produce one `prototype-test-validation.yaml` per included prototype-set member. Pin the UI handoff, aligned product reconciliation, experience change set, interaction contract, prototype-set version/checksum, member manifest version/checksum, source-confirmation version/checksum, architecture-validation version/checksum, final architecture baseline version/checksum, source revision, review-bundle checksum, tool-selection checksum, page/canvas/file catalog checksums, review decision/session/comment/adjustment checksums, impact-assessment checksum, linked coverage checksums, and test-contract ID/version/checksum. Require `UX-LF`, `UX-VS`, and `UX-UI` approval, `ready-for-development`, upstream confirmation `valid/confirmed-for-handoff`, and architecture receipt `valid/accepted`. Record decision (`accepted` or `changes-required`), `affected_experience_change_ids`, affected page/canvas/file/element IDs, observable seams, untestable elements, ambiguity findings, accessibility coverage, evidence, and return node. Use receipt `status: valid` only with `accepted`, otherwise `status: invalid`. Reject missing member scope rows/receipts or mismatched identities and route corrections to the owning node.
33
+ Produce one `prototype-test-validation.yaml` for the exact Prototype revision. Pin the UI handoff, aligned product reconciliation, experience change set, interaction contract, Prototype revision/checksum, source-confirmation version/checksum, architecture-validation version/checksum, final architecture baseline version/checksum, source revision, source and review-bundle checksums, UI Mapping checksum, normalized catalog checksums, review decision/session/comment/adjustment checksums, impact-assessment checksum, linked coverage checksums, and test-contract ID/version/checksum. Require `UX-VS` and `UX-UI` approval, `ready-for-development`, upstream confirmation `valid/confirmed-for-handoff`, and architecture receipt `valid/accepted`. Record decision (`accepted` or `changes-required`), `affected_experience_change_ids`, affected Page/Review Scene/prototype-element/UI Mapping/UI component/frontend-source/acceptance IDs, observable seams, untestable elements, ambiguity findings, accessibility coverage, evidence, and return node. Use receipt `status: valid` only with `accepted`, otherwise `status: invalid`. Reject missing scope rows or receipts, or missing/conflicting identities, and route corrections to the owning node. Never infer a relationship from a file name or catalog order.
@@ -9,7 +9,11 @@ Derive technical tasks just in time. Do not predefine frontend, backend, databas
9
9
 
10
10
  ## Artifact Location
11
11
 
12
- Write every planning, traceability, review, evidence, and candidate document produced by this skill under project `.workflow/`, defaulting version-scoped outputs to `.workflow/iterations/<iteration-id>/<node-id>/`. Application source, automated test source, and non-document build artifacts remain in their architecture-defined repository or artifact locations.
12
+ Write every planning, traceability, review, evidence, and candidate document produced by this skill under project `.workflow/`, defaulting version-scoped outputs to `.workflow/iterations/<iteration-id>/04-implementation/`. Application source, automated test source, and non-document build artifacts remain in their architecture-defined repository or artifact locations.
13
+
14
+ ## Development Node
15
+
16
+ This Skill owns `04-implementation`. Package planning, implementation, review, triage, repair, developer tests, and merge are phases of stable logical tasks inside this node, not separate formal nodes. The node completes only after all required tasks succeed and `candidate-selected` records one immutable candidate whose exact identity is retained as completion evidence.
13
17
 
14
18
  ## Task State
15
19
 
@@ -19,7 +23,9 @@ Write every planning, traceability, review, evidence, and candidate document pro
19
23
 
20
24
  ## Preflight
21
25
 
22
- Read the selected vertical slice, exact ready `ui-handoff.yaml`, aligned `product-prototype-reconciliation.yaml`, experience/requirement change sets, interaction contract, component-state matrix, page-component map, exact prototype set and relevant member manifests/review bundles, tool-selection and page/canvas/file catalogs, review/impact records, prototype confirmations and downstream receipts, public test contract, final architecture, experience baseline, applicable standards, repository state, active defects, and platform constraints. Require `development_readiness: ready-for-development`, source confirmations `valid/confirmed-for-handoff`, architecture receipts `valid/accepted`, and test receipts `valid/accepted`. Validate stable references, complete relevant member receipts, matching set/member IDs/revisions, management/review/impact checksums, review-bundle checksums, and confirmed public test seams. Reject `proposed`, `blocked`, `stale`, or otherwise non-actionable experience changes.
26
+ Read the selected vertical Slice, exact ready `ui-handoff.yaml`, aligned `product-prototype-reconciliation.yaml`, experience/requirement change sets, interaction contract, component-state matrix, page-component map, exact Prototype revision and checksum, source and review-bundle checksums, revision-bound `frontend-change-scope.yaml`, normalized terminal, Page, Review Scene, trigger-condition, route, and UI Mapping catalogs, review/impact records, prototype confirmation and downstream receipts, public test contract, final architecture, experience baseline, applicable standards, repository state, active defects, and platform constraints. Require `development_readiness: ready-for-development`, source confirmation `valid/confirmed-for-handoff`, architecture receipt `valid/accepted`, and test receipt `valid/accepted`. Validate stable references, matching Prototype revision, frontend scope, and UI Mapping checksums, review/impact checksums, and confirmed public test seams. Reject missing or conflicting references and `proposed`, `blocked`, `stale`, or otherwise non-actionable experience changes. Never infer a relationship from a file name or catalog order.
27
+
28
+ For UI-bearing scope, pin the exact frozen Mock Scenario Pack identity and checksum in `candidate-manifest.yaml` together with the Prototype revision and UI Mapping. Never mutate or retarget any of those bindings after the candidate becomes immutable.
23
29
 
24
30
  ## Derive Work Packages
25
31
 
@@ -28,7 +34,7 @@ Resolve the only code repository from `.workflow/config/workspace.yaml`. Put sou
28
34
  1. Analyze impacted components, contracts, data, configuration, infrastructure, security, and documentation.
29
35
  2. Produce the smallest dependency graph of technical work packages that can deliver the vertical slice.
30
36
  3. Define a capability-based role per package. Combine related capabilities when safe; create specialized roles only when the work requires them.
31
- 4. Declare objective, inputs, relevant `experience_change_id` values, page/canvas/file/element IDs, exact prototype-set and member identities, allowed and forbidden modification scope, dependencies, stack and commands, TDD seam, outputs, completion evidence, risks, and rollback considerations.
37
+ 4. Resolve the affected Page, Review Scene, UI component, frontend source, and acceptance IDs through the pinned UI Mapping and frontend scope. Declare objective, inputs, relevant `experience_change_id` values, exact Prototype revision, frontend scope, and UI Mapping identities, terminal/Page/Review Scene/prototype-element/component/frontend-source/acceptance IDs, allowed and forbidden modification scope, dependencies, stack and commands, TDD seam, outputs, completion evidence, risks, and rollback considerations.
32
38
  5. Map every UI-bearing package to `task-experience-change-traceability.csv`. Derive `implementation_action` from the structured change contract using only `create|update|remove|migrate|no-code`; never infer whether work is new or modified from a visual diff or filename.
33
39
  6. Prevent parallel packages from owning overlapping write scopes. Serialize or revise boundaries when they overlap.
34
40
  7. Assign a stable execution sequence, write the complete technical work package and dependency CSV files, then register every package as a `queued` `$ai-delivery-checkpoint-task` snapshot. Do not execute the first package until the complete derived group is recoverable.
@@ -36,12 +42,13 @@ Resolve the only code repository from `.workflow/config/workspace.yaml`. Put sou
36
42
 
37
43
  ## Execute And Converge
38
44
 
39
- 1. Invoke `$ai-delivery-execute-work-package` for each ready package.
40
- 2. Invoke `$ai-delivery-review-change` from an independent validation context before merge.
41
- 3. Return failed reviews to the package executor; never let the reviewer patch the code.
42
- 4. Merge passing work packages into the iteration branch through `$ai-delivery-manage-git` and required CI gates.
43
- 5. Run slice-level build, public contract tests, and developer regression checks.
44
- 6. Produce a new immutable candidate identity whenever code, migration, configuration, IaC, or dependencies change.
45
+ 1. Invoke `$ai-delivery-execute-work-package` for each ready package. For every production UI path, require `ai-delivery frontend-guard check-file <workspace> --path <path>` immediately before its first write; missing current Prototype approval or UI Mapping coverage stops the package.
46
+ 2. Invoke `$ai-delivery-review-change` from an independent validation context before merge. Complete its feedback collection across all axes with no implementation mutation.
47
+ 3. Group the collected findings into an approved change set with a stable `change_set_id`. Return that whole set to the package executor; never let the reviewer patch the code or trigger finding-by-finding repair.
48
+ 4. Apply only the approved set in a repair phase, attach evidence to every finding, then run one concentrated rereview. A new finding begins another feedback collection and approved change set.
49
+ 5. Before merge, run `ai-delivery frontend-guard verify-diff <workspace> --base <fixed-base> --head <candidate-head>` for every UI-bearing diff. This independent Git diff check is required even when the local Hook ran successfully; then merge passing work packages through `$ai-delivery-manage-git` and the remaining CI gates.
50
+ 6. Run slice-level build, public contract tests, and developer regression checks.
51
+ 7. Produce a new immutable candidate identity whenever code, migration, configuration, IaC, or dependencies change.
45
52
 
46
53
  ## TDD Policy
47
54
 
@@ -57,9 +64,9 @@ Require TDD for business behavior, defect fixes, and contracts. Allow documented
57
64
  - retained tests and Red/Green evidence;
58
65
  - independent review results and resolutions;
59
66
  - slice traceability and known limitations;
60
- - buildable candidate commit and candidate manifest.
67
+ - buildable candidate commit and `candidate-manifest.yaml`, with exact Prototype revision, UI Mapping, handoff, reconciliation, and task-traceability checksums for every UI-bearing candidate.
61
68
 
62
- Read [development-contract.md](references/development-contract.md).
69
+ Read [development-contract.md](references/development-contract.md) and use `assets/development-template/` for traceability and candidate files.
63
70
 
64
71
  ## Handoff
65
72
 
@@ -1,4 +1,4 @@
1
- interface:
2
- display_name: "Develop Iteration"
3
- short_description: "Orchestrate dynamic technical work packages with TDD"
1
+ interface:
2
+ display_name: "Develop Iteration"
3
+ short_description: "Orchestrate dynamic technical work packages with TDD"
4
4
  default_prompt: "Use $ai-delivery-develop-iteration to implement the current vertical slice in the configured code repository."
@@ -0,0 +1,36 @@
1
+ artifact_id: CANDIDATE-MANIFEST-0001
2
+ artifact_type: iteration-candidate-manifest
3
+ version: 1
4
+ iteration_id: ITER-0001
5
+ candidate_id: CANDIDATE-0001
6
+ status: draft
7
+ producer_skill: ai-delivery-develop-iteration
8
+ repo_id: code
9
+ code_commit: REPLACE_WITH_COMMIT_SHA
10
+ code_tag: null
11
+ source_path: .
12
+ source_checksum: REPLACE_WITH_SHA256
13
+ build_id: REPLACE_WITH_BUILD_ID
14
+ artifact_digests: []
15
+ configuration_baseline_ref: null
16
+ migration_set_ref: null
17
+ iac_ref: null
18
+ source_task_ids: []
19
+ standards_baseline_ref: STANDARDS-BASELINE-0001@1
20
+ ui_handoff_ref: UI-HANDOFF-0001@1
21
+ ui_handoff_checksum: REPLACE_WITH_SHA256
22
+ product_prototype_reconciliation_ref: PRODUCT-PROTOTYPE-RECONCILIATION-0001@1
23
+ product_prototype_reconciliation_checksum: REPLACE_WITH_SHA256
24
+ prototype_revision_ref: PROTOTYPE-REVISION-0001@1
25
+ prototype_revision_checksum: REPLACE_WITH_SHA256
26
+ prototype_source_revision: REPLACE_WITH_IMMUTABLE_SOURCE_REVISION
27
+ prototype_source_checksum: REPLACE_WITH_SHA256
28
+ prototype_review_bundle_checksum: REPLACE_WITH_SHA256
29
+ ui_mapping_checksum: REPLACE_WITH_SHA256
30
+ mock_scenario_pack_ref: MOCK-SCENARIO-PACK-0001@1
31
+ mock_scenario_pack_checksum: REPLACE_WITH_SHA256
32
+ task_prototype_traceability_ref: task-prototype-traceability.csv
33
+ task_prototype_traceability_checksum: REPLACE_WITH_SHA256
34
+ task_experience_change_traceability_ref: task-experience-change-traceability.csv
35
+ task_experience_change_traceability_checksum: REPLACE_WITH_SHA256
36
+ created_at: null
@@ -1 +1 @@
1
- task_id,prototype_artifact_id,prototype_version,source_revision,prototype_file_id,canvas_id,page_id,prototype_element_id
1
+ task_id,prototype_revision_id,source_revision,terminal_id,page_id,review_scene_id,prototype_element_id,ui_mapping_id,ui_component_id,frontend_source_ref,acceptance_id
@@ -16,7 +16,7 @@
16
16
 
17
17
  `task-prototype-traceability.csv`:
18
18
 
19
- `task_id,prototype_artifact_id,prototype_version,source_revision,prototype_file_id,canvas_id,page_id,prototype_element_id`
19
+ `task_id,prototype_revision_id,source_revision,terminal_id,page_id,review_scene_id,prototype_element_id,ui_mapping_id,ui_component_id,frontend_source_ref,acceptance_id`
20
20
 
21
21
  `task-experience-change-traceability.csv`:
22
22
 
@@ -28,11 +28,13 @@ Store detailed commands, expected outputs, risks, evidence, and rollback impact
28
28
 
29
29
  Before executing any package in the derived group, initialize one `queued` runtime snapshot per CSV row. Copy `sequence` directly and translate every `blocks` or `enables` predecessor edge into `depends_on`. Recovery must be able to identify all not-started packages without relying on chat history.
30
30
 
31
- For UI-bearing packages, record the exact UI handoff and aligned product-reconciliation checksums, experience change set checksum, prototype-set ID/version/checksum, every relevant member `prototype_artifact_id`, version, `source_revision`, `review_bundle_checksum`, tool-selection checksum, page/canvas/file catalog checksums, review/adjustment checksums, impact-assessment checksum, and normalized task-to-change plus task-to-page/canvas/file/element rows. Refuse implementation when development readiness is not `ready-for-development`, the set is incomplete, a mapped change is non-actionable, or any identity differs across experience confirmation, architecture validation, test validation, or iteration planning.
31
+ For UI-bearing packages, record the exact UI handoff and aligned product-reconciliation checksums, experience change set checksum, Prototype revision/checksum, `source_revision`, source and review-bundle checksums, UI Mapping checksum, normalized catalog checksums, review/adjustment checksums, impact-assessment checksum, and normalized task-to-change plus task-to-terminal/Page/Review Scene/prototype-element/UI Mapping/UI component/frontend-source/acceptance rows. Refuse implementation when development readiness is not `ready-for-development`, a mapped change is non-actionable, a reference is missing or conflicting, or any identity differs across experience confirmation, architecture validation, test validation, iteration planning, or the current UI Mapping. Never infer relationships from file names or row order.
32
32
 
33
33
  ## Candidate Identity
34
34
 
35
- Record candidate ID, iteration ID, commit SHA, build ID, artifact digests, configuration baseline, migration set, IaC reference, source task IDs, standards baseline, and timestamp.
35
+ Record candidate ID, iteration ID, repository ID, commit SHA, optional tag, source path/checksum, build ID, artifact digests, configuration baseline, migration set, IaC reference, source task IDs, standards baseline, and timestamp in `candidate-manifest.yaml`.
36
+
37
+ For every UI-bearing candidate, also pin the exact UI handoff and aligned product-reconciliation identities/checksums; Prototype revision identity/checksum; prototype source revision/checksum; review-bundle and UI Mapping checksums; and task-to-prototype plus task-to-experience-change traceability identities/checksums. Candidate Assurance must reject a missing field or any conflict between the candidate manifest and its referenced immutable artifacts. It must not reconstruct the binding from file names, catalog order, Git history, or chat context.
36
38
 
37
39
  ## Dynamic Role Rules
38
40