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.
- package/README.md +45 -14
- package/bin/ai-delivery.mjs +181 -6
- package/bin/benchmark-autonomy.mjs +217 -0
- package/bin/release-check.mjs +382 -0
- package/docs/CLI-PARAMETER-REFERENCE.zh-CN.md +346 -0
- package/docs/CODEGRAPH-INTEGRATION.zh-CN.md +89 -0
- package/docs/DUAL-REPOSITORY-WORKSPACE.zh-CN.md +2 -2
- package/docs/EVOLUTION-MAINTENANCE.zh-CN.md +7 -7
- package/docs/EVOLUTION-USER-GUIDE.zh-CN.md +2 -2
- package/docs/FILE-REFERENCE.zh-CN.md +120 -39
- package/docs/MAINTENANCE-VERIFICATION.zh-CN.md +51 -0
- package/docs/MOCK-SYSTEM.zh-CN.md +141 -0
- package/docs/NPM-RELEASE-MANAGEMENT.zh-CN.md +106 -0
- package/docs/PROJECT-MANUAL.zh-CN.md +154 -95
- package/docs/PROTOTYPE-MIGRATION.zh-CN.md +164 -0
- package/docs/STATE-CLI-MAINTENANCE.zh-CN.md +35 -17
- package/docs/STATE-CLI-USER-GUIDE.zh-CN.md +115 -39
- package/docs/VIEWER-MAINTENANCE.zh-CN.md +101 -324
- package/docs/VIEWER-USER-GUIDE.zh-CN.md +68 -190
- package/docs/adr/0001-prototype-first-ui-governance.md +3 -0
- package/docs/adr/0002-microcks-as-default-mock-system.md +3 -0
- package/docs/adr/0003-workflow-manager-governed-control-surface.md +46 -0
- package/docs/adr/0004-operational-carbon-visual-standard.md +9 -0
- package/docs/adr/0005-prototype-management-as-routed-pages.md +7 -0
- package/docs/agents/domain.md +12 -0
- package/docs/agents/issue-tracker.md +27 -0
- package/docs/agents/triage-labels.md +11 -0
- package/docs/agents/workflow-manager-acceptance-matrix.md +93 -0
- package/docs/agents/workflow-manager-agent-interface.md +145 -0
- package/docs/agents/workflow-manager-current-state.md +205 -0
- package/lib/artifact-files.mjs +47 -0
- package/lib/codegraph.mjs +405 -0
- package/lib/delivery-state.mjs +3079 -198
- package/lib/frontend-guard.mjs +288 -0
- package/lib/fs-utils.mjs +53 -0
- package/lib/history-anchor.mjs +98 -0
- package/lib/mock-scenario-pack.mjs +687 -0
- package/lib/mock-system.mjs +897 -0
- package/lib/npm-package-result.mjs +11 -0
- package/lib/png-evidence.mjs +149 -0
- package/lib/project-bootstrap.mjs +96 -55
- package/lib/project-installer.mjs +1484 -164
- package/lib/project-migration.mjs +1193 -0
- package/lib/prototype-migration.mjs +713 -0
- package/lib/prototype-page-review.mjs +384 -0
- package/lib/prototype-review-target.mjs +334 -0
- package/lib/prototype-revision.mjs +812 -0
- package/lib/stable-value.mjs +15 -0
- package/lib/toml-hooks.mjs +69 -0
- package/lib/ui-acceptance.mjs +565 -0
- package/lib/visual-standard.mjs +232 -0
- package/lib/workflow-manager-contracts.mjs +367 -0
- package/lib/workflow-manager-facts.mjs +778 -0
- package/lib/workflow-manager-governance.mjs +514 -0
- package/lib/workflow-manager-mock.mjs +183 -0
- package/lib/workflow-manager-prototypes.mjs +1847 -0
- package/lib/workflow-manager-public/assets/ibm-plex-mono-latin-400-normal-CvHOgSBP.woff +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-mono-latin-400-normal-DMJ8VG8y.woff2 +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-400-normal-CDDApCn2.woff2 +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-400-normal-CYLoc0-x.woff +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-500-normal-6ng42L7E.woff2 +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-500-normal-BgVn5rGT.woff +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-600-normal-Cu4Hd6ag.woff +0 -0
- package/lib/workflow-manager-public/assets/ibm-plex-sans-latin-600-normal-CuJfVYMP.woff2 +0 -0
- package/lib/workflow-manager-public/assets/index-Chlg6r8f.css +1 -0
- package/lib/workflow-manager-public/assets/index-E-hGB5ZD.js +13 -0
- package/lib/workflow-manager-public/fonts/OFL-1.1.txt +90 -0
- package/lib/workflow-manager-public/index.html +14 -0
- package/lib/workflow-manager-systems.mjs +519 -0
- package/lib/workflow-manager-transaction.mjs +397 -0
- package/lib/workflow-manager.mjs +745 -0
- package/package.json +8 -2
- package/skills/ai-delivery-assemble-release/agents/openai.yaml +3 -3
- package/skills/ai-delivery-assemble-release/assets/release-material-index.csv +1 -1
- package/skills/ai-delivery-assemble-release/assets/version-inclusion.csv +1 -1
- package/skills/ai-delivery-bootstrap/SKILL.md +4 -4
- package/skills/ai-delivery-bootstrap/agents/openai.yaml +3 -3
- package/skills/ai-delivery-bootstrap/references/bootstrap-contract.md +4 -2
- package/skills/ai-delivery-checkpoint-task/SKILL.md +17 -3
- package/skills/ai-delivery-checkpoint-task/agents/openai.yaml +3 -3
- package/skills/ai-delivery-checkpoint-task/assets/runtime-template/task.json +7 -1
- package/skills/ai-delivery-checkpoint-task/references/checkpoint-contract.md +22 -8
- package/skills/ai-delivery-checkpoint-task/scripts/hook-event.mjs +91 -0
- package/skills/ai-delivery-checkpoint-task/scripts/task-state.mjs +1086 -51
- package/skills/ai-delivery-close-version/SKILL.md +9 -8
- package/skills/ai-delivery-close-version/agents/openai.yaml +3 -3
- package/skills/ai-delivery-close-version/assets/version-lineage.yaml +1 -1
- package/skills/ai-delivery-close-version/references/version-closeout-contract.md +2 -2
- package/skills/ai-delivery-define-product/SKILL.md +8 -4
- package/skills/ai-delivery-define-product/agents/openai.yaml +4 -4
- package/skills/ai-delivery-define-product/references/product-contract.md +2 -2
- package/skills/ai-delivery-deploy-production/agents/openai.yaml +3 -3
- package/skills/ai-delivery-design-architecture/SKILL.md +9 -5
- package/skills/ai-delivery-design-architecture/assets/architecture-template/prototype-architecture-validation.yaml +16 -16
- package/skills/ai-delivery-design-architecture/references/architecture-contract.md +1 -1
- package/skills/ai-delivery-design-experience/SKILL.md +36 -30
- package/skills/ai-delivery-design-experience/agents/openai.yaml +4 -4
- package/skills/ai-delivery-design-experience/assets/experience-template/LEGACY-COMPATIBILITY.md +16 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/design-reference-selection.yaml +32 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/experience-baseline.yaml +2 -2
- package/skills/ai-delivery-design-experience/assets/experience-template/formal-ui-confirmation.yaml +16 -3
- package/skills/ai-delivery-design-experience/assets/experience-template/frontend-change-scope.yaml +30 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/interaction-contract.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/mock-admin-export.yaml +8 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/mock-scenario-mappings.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/mock-scenario-pack-request.yaml +24 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/product-prototype-reconciliation.yaml +2 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-adjustment-log.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-component-bindings.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-component-candidates.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-components.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-confirmation.yaml +18 -18
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-data-contracts.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-impact-assessment.yaml +5 -5
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-implementation-bindings.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-manifest.yaml +2 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-pages.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-product-coverage.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-comments.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-decision.yaml +13 -12
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-scenes.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-sessions.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-unit-pages.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-review-units.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-revision.yaml +88 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-routes.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-set.yaml +2 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-source-inspection-snapshots.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-terminals.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-tool-candidates.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-tool-selection.yaml +2 -3
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-traceability.csv +1 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype-trigger-conditions.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/prototype.yaml +6 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/ui-framework-selection.yaml +17 -1
- package/skills/ai-delivery-design-experience/assets/experience-template/ui-handoff.yaml +6 -5
- package/skills/ai-delivery-design-experience/assets/experience-template/ui-mapping.csv +1 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/visual-direction.yaml +4 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/visual-reference-manifest.yaml +23 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/visual-reference.html +163 -0
- package/skills/ai-delivery-design-experience/assets/experience-template/visual-system-confirmation.yaml +11 -0
- package/skills/ai-delivery-design-experience/references/experience-contract.md +26 -27
- package/skills/ai-delivery-design-experience/references/prototype-management-contract.md +42 -21
- package/skills/ai-delivery-design-tests/SKILL.md +13 -7
- package/skills/ai-delivery-design-tests/assets/test-design-template/prototype-test-scope.csv +1 -1
- package/skills/ai-delivery-design-tests/assets/test-design-template/prototype-test-validation.yaml +17 -16
- package/skills/ai-delivery-design-tests/references/test-design-contract.md +7 -5
- package/skills/ai-delivery-develop-iteration/SKILL.md +18 -11
- package/skills/ai-delivery-develop-iteration/agents/openai.yaml +3 -3
- package/skills/ai-delivery-develop-iteration/assets/development-template/candidate-manifest.yaml +36 -0
- package/skills/ai-delivery-develop-iteration/assets/development-template/task-prototype-traceability.csv +1 -1
- package/skills/ai-delivery-develop-iteration/references/development-contract.md +5 -3
- package/skills/ai-delivery-evolve-workflow/agents/openai.yaml +3 -3
- package/skills/ai-delivery-execute-test/SKILL.md +6 -2
- package/skills/ai-delivery-execute-test/agents/openai.yaml +4 -4
- package/skills/ai-delivery-execute-work-package/SKILL.md +10 -3
- package/skills/ai-delivery-execute-work-package/agents/openai.yaml +4 -4
- package/skills/ai-delivery-execute-work-package/references/work-package-contract.md +1 -1
- package/skills/ai-delivery-manage-git/agents/openai.yaml +3 -3
- package/skills/ai-delivery-manage-standards/agents/openai.yaml +4 -4
- package/skills/ai-delivery-orchestrate/SKILL.md +47 -29
- package/skills/ai-delivery-orchestrate/agents/openai.yaml +3 -3
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/control/migrations/.gitkeep +0 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/control/repairs/.gitkeep +0 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/delivery/project.yaml +1 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/delivery/workflow-state.yaml +2 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/frontend-guard/frontend-guard.mjs +50 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/hooks/hook-event.mjs +91 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/manager/manager.mjs +64 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/manager/start.cmd +4 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/manager/start.ps1 +2 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/{viewer → manager}/start.sh +1 -1
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/mock/mock.mjs +50 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/ui-acceptance/ui-acceptance.mjs +37 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/AGENTS.md +32 -6
- package/skills/ai-delivery-orchestrate/assets/project-template/gitignore.template +1 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/CONTRIBUTING.md +25 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/LICENSE +21 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/README.md +250 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/UPSTREAM.yaml +19 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airbnb/DESIGN.md +545 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airbnb/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airtable/DESIGN.md +554 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/airtable/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/apple/DESIGN.md +562 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/apple/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/binance/DESIGN.md +634 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/binance/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw/DESIGN.md +544 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw-m/DESIGN.md +503 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bmw-m/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bugatti/DESIGN.md +454 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/bugatti/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cal/DESIGN.md +542 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cal/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/claude/DESIGN.md +589 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/claude/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clay/DESIGN.md +541 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clay/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clickhouse/DESIGN.md +544 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/clickhouse/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cohere/DESIGN.md +451 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cohere/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/coinbase/DESIGN.md +570 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/coinbase/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/composio/DESIGN.md +506 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/composio/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cursor/DESIGN.md +537 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/cursor/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/dell-1996/DESIGN.md +632 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/dell-1996/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/elevenlabs/DESIGN.md +504 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/elevenlabs/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/expo/DESIGN.md +526 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/expo/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ferrari/DESIGN.md +531 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ferrari/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/figma/DESIGN.md +578 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/figma/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/framer/DESIGN.md +544 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/framer/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hashicorp/DESIGN.md +575 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hashicorp/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hp/DESIGN.md +670 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/hp/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ibm/DESIGN.md +550 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ibm/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/intercom/DESIGN.md +546 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/intercom/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/kraken/DESIGN.md +125 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/kraken/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lamborghini/DESIGN.md +288 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lamborghini/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/linear.app/DESIGN.md +548 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/linear.app/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lovable/DESIGN.md +298 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/lovable/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mastercard/DESIGN.md +365 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mastercard/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/meta/DESIGN.md +683 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/meta/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/minimax/DESIGN.md +746 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/minimax/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mintlify/DESIGN.md +852 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mintlify/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/miro/DESIGN.md +825 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/miro/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mistral.ai/DESIGN.md +773 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mistral.ai/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mongodb/DESIGN.md +767 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/mongodb/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nike/DESIGN.md +575 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nike/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nintendo-2001/DESIGN.md +649 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nintendo-2001/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/notion/DESIGN.md +821 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/notion/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nvidia/DESIGN.md +640 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/nvidia/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ollama/DESIGN.md +539 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/ollama/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/opencode.ai/DESIGN.md +521 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/opencode.ai/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/pinterest/DESIGN.md +597 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/pinterest/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/playstation/DESIGN.md +661 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/playstation/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/posthog/DESIGN.md +690 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/posthog/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/raycast/DESIGN.md +669 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/raycast/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/renault/DESIGN.md +589 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/renault/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/replicate/DESIGN.md +616 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/replicate/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/resend/DESIGN.md +585 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/resend/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/revolut/DESIGN.md +636 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/revolut/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/runwayml/DESIGN.md +244 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/runwayml/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sanity/DESIGN.md +357 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sanity/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sentry/DESIGN.md +551 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/sentry/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/shopify/DESIGN.md +516 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/shopify/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/slack/DESIGN.md +482 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spacex/DESIGN.md +363 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spacex/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spotify/DESIGN.md +246 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/spotify/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/starbucks/DESIGN.md +580 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/starbucks/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/stripe/DESIGN.md +487 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/stripe/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/supabase/DESIGN.md +462 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/supabase/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/superhuman/DESIGN.md +448 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/superhuman/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/tesla/DESIGN.md +286 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/tesla/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/theverge/DESIGN.md +339 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/theverge/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/together.ai/DESIGN.md +633 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/together.ai/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/uber/DESIGN.md +636 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/uber/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vercel/DESIGN.md +736 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vercel/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vodafone/DESIGN.md +538 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/vodafone/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/voltagent/DESIGN.md +521 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/voltagent/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/warp/DESIGN.md +526 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/warp/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/webflow/DESIGN.md +588 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/webflow/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wired/DESIGN.md +497 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wired/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wise/DESIGN.md +544 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/wise/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/x.ai/DESIGN.md +465 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/x.ai/README.md +5 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/zapier/DESIGN.md +537 -0
- package/skills/ai-delivery-orchestrate/assets/project-template/ref/ui/design-md/zapier/README.md +5 -0
- package/skills/ai-delivery-orchestrate/references/formal-state-contract.md +65 -20
- package/skills/ai-delivery-orchestrate/references/workflow-model.md +7 -5
- package/skills/ai-delivery-orchestrate-release/SKILL.md +2 -2
- package/skills/ai-delivery-orchestrate-release/agents/openai.yaml +4 -4
- package/skills/ai-delivery-orchestrate-release/references/release-workflow-contract.md +1 -1
- package/skills/ai-delivery-plan-iteration/SKILL.md +11 -4
- package/skills/ai-delivery-plan-iteration/agents/openai.yaml +4 -4
- package/skills/ai-delivery-plan-iteration/assets/planning-template/scope-manifest.yaml +17 -0
- package/skills/ai-delivery-plan-iteration/assets/planning-template/slice-prototype-traceability.csv +1 -1
- package/skills/ai-delivery-plan-iteration/references/planning-contract.md +8 -2
- package/skills/ai-delivery-prepare-platform/SKILL.md +5 -1
- package/skills/ai-delivery-prepare-platform/agents/openai.yaml +4 -4
- package/skills/ai-delivery-prepare-release/agents/openai.yaml +4 -4
- package/skills/ai-delivery-review-change/SKILL.md +14 -4
- package/skills/ai-delivery-review-change/agents/openai.yaml +4 -4
- package/skills/ai-delivery-review-change/references/review-contract.md +6 -0
- package/skills/ai-delivery-triage-failure/SKILL.md +5 -1
- package/skills/ai-delivery-triage-failure/agents/openai.yaml +4 -4
- package/skills/ai-delivery-validate-artifacts/SKILL.md +6 -3
- package/skills/ai-delivery-validate-artifacts/agents/openai.yaml +4 -4
- package/skills/ai-delivery-validate-artifacts/references/artifact-contract.md +13 -13
- package/skills/ai-delivery-verify-candidate/SKILL.md +13 -6
- package/skills/ai-delivery-verify-candidate/agents/openai.yaml +3 -3
- package/skills/ai-delivery-verify-candidate/assets/verification-template/ui-acceptance-request.yaml +19 -0
- package/skills/ai-delivery-verify-candidate/assets/verification-template/ui-acceptance-results.yaml +53 -0
- package/skills/ai-delivery-verify-candidate/references/candidate-verification-contract.md +10 -2
- package/skills/ai-delivery-verify-production/agents/openai.yaml +3 -3
- package/skills/ai-delivery-design-experience/assets/experience-template/low-fidelity-confirmation.yaml +0 -32
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/public/app.js +0 -546
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/public/index.html +0 -199
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/public/styles.css +0 -529
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/server.mjs +0 -780
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/start.cmd +0 -4
- package/skills/ai-delivery-orchestrate/assets/project-template/.workflow/tools/viewer/start.ps1 +0 -2
|
@@ -9,9 +9,9 @@ Finish one planned version and stop before release. Never start a release from t
|
|
|
9
9
|
|
|
10
10
|
## Preflight
|
|
11
11
|
|
|
12
|
-
1. Recover or initialize the `
|
|
13
|
-
2. Run `node .workflow/tools/state/state.mjs verify`.
|
|
14
|
-
3. Require a passing immutable candidate, closed version tasks, complete requirement/test/material traceability, and no unresolved blocking defect.
|
|
12
|
+
1. Recover or initialize the `06-version-closeout` task through `$ai-delivery-checkpoint-task`.
|
|
13
|
+
2. Run `node .workflow/tools/state/state.mjs verify --history`.
|
|
14
|
+
3. Require a passing immutable candidate, a completed Candidate Assurance receipt for that same candidate, closed version tasks, complete requirement/test/material traceability, and no unresolved blocking defect.
|
|
15
15
|
4. Read the preceding version lineage and Git policy. Require the candidate to descend from the current `line/<product-id>` head, except for the first version.
|
|
16
16
|
|
|
17
17
|
## Close The Version
|
|
@@ -19,12 +19,13 @@ Finish one planned version and stop before release. Never start a release from t
|
|
|
19
19
|
1. Read `.workflow/config/workspace.yaml`; verify the candidate in the configured code repository and populate `repo_id`, `code_commit`, `source_path`, and SHA-256.
|
|
20
20
|
2. Freeze the candidate commit and create code `version-ready/<version-id>/rN`. Never move or replace an existing Tag; increment `rN` only for a newly verified replacement candidate.
|
|
21
21
|
3. Fast-forward code `line/<product-id>` to the tagged commit. Never advance code `main` here.
|
|
22
|
-
4. Copy the closeout assets into `.workflow/iterations/<version-id>/
|
|
23
|
-
5. Register the
|
|
22
|
+
4. Copy the closeout assets into `.workflow/iterations/<version-id>/06-version-closeout/`, populate the code Tag identity, and compute the final manifest SHA-256.
|
|
23
|
+
5. Register the immutable closeout semantic revision directly as `release-ready` with the formal state CLI, and complete `06-version-closeout` with that registered artifact as evidence. Do not register a draft and mutate its status in place.
|
|
24
24
|
6. Commit all version workflow materials and create immutable workflow `workflow-ready/<version-id>/rN` at that exact workflow commit. Record the workflow commit, workflow Tag, and manifest checksum in the lineage index without rewriting the tagged manifest.
|
|
25
|
-
7. Verify both Tags and the manifest checksum. Inspect the current
|
|
26
|
-
8. Run
|
|
27
|
-
9.
|
|
25
|
+
7. Verify both Tags and the manifest checksum. Inspect the current development scope revision, then run `state.mjs transition --expected-scope-revision <revision> --event version-closed --iteration-id <version-id> --artifact-id <closeout-artifact-id>` to update the audited cumulative development identity. Never edit `latest_line_version_id` directly.
|
|
26
|
+
8. Run `state.mjs snapshot create --id <version-id> --reason version-boundary`, then `state.mjs verify --history --since-anchor`. The first trusted anchor performs a full-history audit before creation; later anchors validate the suffix from the previous anchor.
|
|
27
|
+
9. Archive tasks with `task-state.mjs archive-version --version-status release-ready --candidate-id <candidate-id> --evidence <closeout-artifact-id>`. The command must first obtain `snapshot references` from the formal-state CLI and fail before writing if the anchor, scope, or candidate is missing. Verify that the version manifest references checksummed task summaries, complete attempt values, scope, candidate, Gate decisions, and the version-boundary anchor; then checkpoint the Git, anchor, and archive evidence and finish the task.
|
|
28
|
+
10. Invoke `$ai-delivery-evolve-workflow evaluate --safe-point version --iteration-id <version-id>`. Record trial results and decisions, but never use an Evolution result as release intent.
|
|
28
29
|
|
|
29
30
|
## Stop Boundary
|
|
30
31
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface:
|
|
2
|
-
display_name: "Close Planned Version"
|
|
3
|
-
short_description: "Freeze a verified version as release-ready"
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Close Planned Version"
|
|
3
|
+
short_description: "Freeze a verified version as release-ready"
|
|
4
4
|
default_prompt: "Use $ai-delivery-close-version to bind code Tag, workflow Tag, and manifest checksum without publishing."
|
|
@@ -8,5 +8,5 @@ candidate_commit: "<git-sha>"
|
|
|
8
8
|
version_ready_tag: "version-ready/VER-0001/r1"
|
|
9
9
|
workflow_commit: "<workflow-git-sha>"
|
|
10
10
|
workflow_ready_tag: "workflow-ready/VER-0001/r1"
|
|
11
|
-
artifact_manifest: ".workflow/iterations/VER-0001/
|
|
11
|
+
artifact_manifest: ".workflow/iterations/VER-0001/06-version-closeout/version-manifest.yaml"
|
|
12
12
|
artifact_sha256: "<sha256>"
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
`version-manifest.yaml` binds the version to its candidate, verification, task archive, product/architecture/prototype/test baselines, and material index. `version-lineage.yaml` records exactly one predecessor and the cumulative ordered ancestry. `line-advance-record.yaml` records the old/new line heads, immutable tag, actor, and checks.
|
|
13
13
|
|
|
14
|
-
All outputs live under `.workflow/iterations/<version-id>/
|
|
14
|
+
All outputs live under `.workflow/iterations/<version-id>/06-version-closeout/`, use stable IDs, and are registered through the formal state CLI. A version is `release-ready` only when every checksum resolves and the line fast-forward is proven.
|
|
15
15
|
|
|
16
|
-
After the `release-ready` closeout
|
|
16
|
+
After Candidate Assurance has completed for the same immutable candidate, the `release-ready` closeout revision is registered, `06-version-closeout` is completed, and both immutable Tags are verified, run the formal `version-closed` transition with that artifact ID. This audited event is the only writer of `workflow-state.yaml.latest_line_version_id`. Then create the version-boundary history anchor and archive version tasks to `.workflow/control/archives/versions/<version-id>/`. Verify that the manifest references checksummed task summaries, attempt receipts, scope, candidate, Gate decisions, and that anchor, and that active task/checkpoint shards were removed. The task archive is a separate checkpoint operation and does not replace this formal transition.
|
|
17
17
|
|
|
18
18
|
## Failure rules
|
|
19
19
|
|
|
@@ -9,7 +9,11 @@ Turn an initial idea into two human-approved baselines without inventing unresol
|
|
|
9
9
|
|
|
10
10
|
## Artifact Location
|
|
11
11
|
|
|
12
|
-
Write every workflow document produced by this skill under project `.workflow/`. Place version-scoped node outputs in `.workflow/iterations/<iteration-id
|
|
12
|
+
Write every workflow document produced by this skill under project `.workflow/`. Place version-scoped node outputs in `.workflow/iterations/<iteration-id>/01-product-shaping/` and approved reusable product baselines in `.workflow/product/`. Do not relocate source code, automated test source, repository configuration, or non-document build artifacts.
|
|
13
|
+
|
|
14
|
+
## Development Node
|
|
15
|
+
|
|
16
|
+
This Skill owns `01-product-shaping`. Discovery, product definition, and prototype reconciliation are task phases inside that node; they do not create separate formal nodes. The node retains human `GATE-A` for discovery and `GATE-B` for the product baseline. On a later version, reuse an unaffected approved product baseline only when change-impact analysis proves its scope is unaffected and its registered artifact identity and checksum still match. Record that baseline as completion evidence instead of replaying interviews or Gate decisions; any affected input requires a new revision and the applicable Gate.
|
|
13
17
|
|
|
14
18
|
## Task State
|
|
15
19
|
|
|
@@ -20,7 +24,7 @@ Write every workflow document produced by this skill under project `.workflow/`.
|
|
|
20
24
|
|
|
21
25
|
## Preflight
|
|
22
26
|
|
|
23
|
-
Read the project state, artifact registry, applicable standards, and existing product baseline. For a change, identify the affected terms, terminals, features, stories, and acceptance criteria before editing. In prototype-reconciliation mode also read the complete adjustment log, requirement change set, formal UI
|
|
27
|
+
Read the project state, artifact registry, applicable standards, and existing product baseline. For a change, identify the affected terms, terminals, features, stories, and acceptance criteria before editing. In prototype-reconciliation mode also read the complete adjustment log, requirement change set, formal UI confirmation, exact Prototype revision and checksum, normalized Page and Review Scene catalogs, UI Mapping, and bidirectional product coverage.
|
|
24
28
|
|
|
25
29
|
## Run Discovery
|
|
26
30
|
|
|
@@ -62,14 +66,14 @@ Use the schemas and controlled values in [product-contract.md](references/produc
|
|
|
62
66
|
|
|
63
67
|
## Reconcile Confirmed Prototypes
|
|
64
68
|
|
|
65
|
-
Run this mode only after every visual or interactive
|
|
69
|
+
Run this mode only after the candidate Prototype revision is approved for every visual or interactive Page and Review Scene and all of its adjustments are terminal.
|
|
66
70
|
|
|
67
71
|
1. Review every row in `requirement-change-set.csv`; classify it as approved, rejected, or requiring clarification. Do not approve a requirement merely because the prototype implements it.
|
|
68
72
|
2. Verify both directions of `prototype-product-coverage.csv`: every prototype behavior must resolve to an approved feature/story/acceptance criterion, and every visual product behavior must resolve to a prototype element or justified `not-applicable` row.
|
|
69
73
|
3. Apply approved added, modified, retired, or superseded requirements to a new product baseline version. Preserve stable IDs for modifications and retire IDs instead of reusing them.
|
|
70
74
|
4. Re-run Gate B for every changed product artifact and record exact approval evidence. When nothing changes, retain the existing baseline and record an `aligned` no-change decision.
|
|
71
75
|
5. Write `product-prototype-reconciliation.yaml` with the input/output product baseline checksums, prototype/formal-UI checksums, terminal and terminology checks, requirement-change closure, stale artifacts, and required prototype revalidation.
|
|
72
|
-
6. Return rejected prototype behavior to experience for removal. Return an updated baseline to experience, mark affected
|
|
76
|
+
6. Return rejected prototype behavior to experience for removal. Return an updated baseline to experience, mark the affected Page and Review Scene revisions stale, and require their staged re-approval in a new Prototype revision. Repeat until the receipt is `status: valid`, `decision: aligned`, and every requirement change is terminal.
|
|
73
77
|
|
|
74
78
|
## Handoff
|
|
75
79
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface:
|
|
2
|
-
display_name: "Define Product"
|
|
3
|
-
short_description: "Discover requirements and produce an approved product baseline"
|
|
4
|
-
default_prompt: "Use $ai-delivery-define-product to discover and define the product baseline."
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Define Product"
|
|
3
|
+
short_description: "Discover requirements and produce an approved product baseline"
|
|
4
|
+
default_prompt: "Use $ai-delivery-define-product to discover and define the product baseline."
|
|
@@ -40,11 +40,11 @@ Use change types `added`, `modified`, `retired`, and `superseded`. Use statuses
|
|
|
40
40
|
|
|
41
41
|
`prototype-product-coverage.csv`:
|
|
42
42
|
|
|
43
|
-
`feature_id,story_id,acceptance_id,terminal_id,
|
|
43
|
+
`feature_id,story_id,acceptance_id,terminal_id,prototype_revision_id,page_id,review_scene_id,prototype_element_id,coverage_status,rationale`
|
|
44
44
|
|
|
45
45
|
Use `covered`, `not-applicable`, and `missing`. Every `not-applicable` row requires a rationale. Product reconciliation fails on `missing`, an unapproved prototype behavior, an uncovered visual requirement, or a non-terminal requirement change.
|
|
46
46
|
|
|
47
|
-
`product-prototype-reconciliation.yaml` records exact input/output product baseline identities and checksums, the
|
|
47
|
+
`product-prototype-reconciliation.yaml` records exact input/output product baseline identities and checksums, the candidate Prototype revision/checksum and formal-UI confirmation, UI Mapping and coverage/change-set checksums, terminal/terminology/state checks, stale Page and Review Scene identities, required revalidation, and decision `aligned`, `product-update-required`, or `prototype-correction-required`. Only `aligned` may use `status: valid`.
|
|
48
48
|
|
|
49
49
|
## Product Manual
|
|
50
50
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface:
|
|
2
|
-
display_name: "Deploy Production"
|
|
3
|
-
short_description: "Deploy one approved immutable iteration version to production"
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Deploy Production"
|
|
3
|
+
short_description: "Deploy one approved immutable iteration version to production"
|
|
4
4
|
default_prompt: "Use $ai-delivery-deploy-production to deploy the approved immutable package and record facts in the workflow repository."
|
|
@@ -9,7 +9,11 @@ Use one skill with `initial` and `reconcile` modes so coupled architecture views
|
|
|
9
9
|
|
|
10
10
|
## Artifact Location
|
|
11
11
|
|
|
12
|
-
Write every workflow document produced by this skill under project `.workflow/`. Place version-scoped node outputs in `.workflow/iterations/<iteration-id
|
|
12
|
+
Write every workflow document produced by this skill under project `.workflow/`. Place version-scoped node outputs in `.workflow/iterations/<iteration-id>/02-solution-design/` and approved reusable architecture baselines in `.workflow/architecture/`. Do not relocate source code, automated test source, repository configuration, or non-document build artifacts.
|
|
13
|
+
|
|
14
|
+
## Development Node
|
|
15
|
+
|
|
16
|
+
This Skill shares `02-solution-design` with `$ai-delivery-design-experience`. Initial architecture, prototype impact handling, and final reconciliation are task phases inside that node rather than separate formal nodes. Reuse an unaffected approved architecture baseline only by exact registered artifact identity and checksum after change-impact analysis; affected decisions require a new baseline revision and the applicable approval.
|
|
13
17
|
|
|
14
18
|
## Task State
|
|
15
19
|
|
|
@@ -34,9 +38,9 @@ Major decisions include platforms, paid services, security or privacy boundaries
|
|
|
34
38
|
|
|
35
39
|
## Reconcile Mode
|
|
36
40
|
|
|
37
|
-
1. Read the experience baseline, `ui-handoff.yaml`,
|
|
38
|
-
2. Verify that the selected UI framework/version is compatible with the architecture stack and dependency policy, and that every
|
|
39
|
-
3. Write one `prototype-architecture-validation.yaml`
|
|
41
|
+
1. Read the experience baseline, `ui-handoff.yaml`, both staged Gate receipts (`UX-VS` and `UX-UI`), aligned `product-prototype-reconciliation.yaml` receipt, experience/requirement change sets, interaction contract, design tokens, framework selection, component-state matrix, page-component map, 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/impact records, traceability, and source confirmation. Verify every exact identity/checksum and require the handoff to be complete and free of stale references. Reject a missing or conflicting reference; never infer a relationship from a file name or catalog order.
|
|
42
|
+
2. Resolve every affected Page, Review Scene, UI component, frontend source, and acceptance ID through the pinned UI Mapping. Verify that the selected UI framework/version is compatible with the architecture stack and dependency policy, and that every mapped interaction, state, permission, query, upload, real-time behavior, failure mode, responsive rule, and accessibility requirement is technically supported. Use stable change, terminal, Page, Review Scene, prototype-element, UI Mapping, component, frontend-source, and acceptance IDs in findings.
|
|
43
|
+
3. Write one `prototype-architecture-validation.yaml` for the Prototype revision with the UI handoff identity/checksum, Prototype revision and UI Mapping checksums, all consumed artifact versions/checksums, exact architecture baseline version/checksum, implementability decision, affected changes/Pages/Review Scenes/mappings/components/acceptance criteria, issues, and return node. An accepted receipt uses `status: valid`; a `changes-required` receipt uses `status: invalid`. Accept the handoff only when the receipt passes, then advance accepted experience changes from `formal-ui-confirmed` to `architecture-accepted` and `ready-for-development` through the state CLI.
|
|
40
44
|
4. Return product or experience defects to their producer. Do not silently weaken approved behavior or edit the frozen prototype.
|
|
41
45
|
5. Finalize APIs, data access, events, component boundaries, test seams, deployment requirements, and implementation constraints.
|
|
42
46
|
6. Reopen human approval only when reconciliation creates or changes a major decision.
|
|
@@ -64,4 +68,4 @@ Read [architecture-contract.md](references/architecture-contract.md) and use `as
|
|
|
64
68
|
|
|
65
69
|
## Handoff
|
|
66
70
|
|
|
67
|
-
Initial mode feeds experience design and delivery-platform preparation. Reconcile mode accepts only an exact confirmed
|
|
71
|
+
Initial mode feeds experience design and delivery-platform preparation. Reconcile mode accepts only an exact confirmed Prototype revision and UI Mapping and produces the final baseline plus its prototype validation receipt for planning, test design, platform work, and implementation.
|
|
@@ -6,8 +6,7 @@ status: draft
|
|
|
6
6
|
producer_skill: ai-delivery-design-architecture
|
|
7
7
|
input_artifacts:
|
|
8
8
|
ui_handoff: UI-HANDOFF-0001@1
|
|
9
|
-
|
|
10
|
-
prototype_manifest: PROTOTYPE-0001@1
|
|
9
|
+
prototype_revision: PROTOTYPE-REVISION-0001@1
|
|
11
10
|
prototype_confirmation: PROTOTYPE-CONFIRMATION-0001@1
|
|
12
11
|
prototype_tool_selection: PROTOTYPE-TOOL-SELECTION-0001@1
|
|
13
12
|
prototype_review_decision: PROTOTYPE-REVIEW-DECISION-0001@1
|
|
@@ -15,23 +14,23 @@ input_artifacts:
|
|
|
15
14
|
standards: []
|
|
16
15
|
ui_handoff_ref: UI-HANDOFF-0001@1
|
|
17
16
|
ui_handoff_checksum: REPLACE_WITH_SHA256
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
prototype_manifest_ref: prototype-manifest-PROTOTYPE-0001.yaml
|
|
23
|
-
prototype_manifest_checksum: REPLACE_WITH_SHA256
|
|
17
|
+
prototype_revision_ref: PROTOTYPE-REVISION-0001@1
|
|
18
|
+
prototype_revision_checksum: REPLACE_WITH_SHA256
|
|
19
|
+
prototype_id: PROTOTYPE
|
|
20
|
+
prototype_revision_version: 1
|
|
24
21
|
prototype_confirmation_ref: PROTOTYPE-CONFIRMATION-0001@1
|
|
25
22
|
prototype_confirmation_checksum: REPLACE_WITH_SHA256
|
|
26
|
-
source_revision:
|
|
27
|
-
|
|
23
|
+
source_revision: REPLACE_WITH_IMMUTABLE_SOURCE_REVISION
|
|
24
|
+
source_checksum: REPLACE_WITH_SHA256
|
|
25
|
+
review_bundle_algorithm: sha256-tree-v1
|
|
28
26
|
review_bundle_checksum: REPLACE_WITH_SHA256
|
|
29
27
|
tool_selection_checksum: REPLACE_WITH_SHA256
|
|
28
|
+
terminal_catalog_checksum: REPLACE_WITH_SHA256
|
|
30
29
|
page_catalog_checksum: REPLACE_WITH_SHA256
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
review_scene_catalog_checksum: REPLACE_WITH_SHA256
|
|
31
|
+
trigger_condition_catalog_checksum: REPLACE_WITH_SHA256
|
|
32
|
+
route_catalog_checksum: REPLACE_WITH_SHA256
|
|
33
|
+
ui_mapping_checksum: REPLACE_WITH_SHA256
|
|
35
34
|
prototype_review_decision_checksum: REPLACE_WITH_SHA256
|
|
36
35
|
prototype_review_sessions_checksum: REPLACE_WITH_SHA256
|
|
37
36
|
prototype_review_comments_checksum: REPLACE_WITH_SHA256
|
|
@@ -45,11 +44,12 @@ architecture_baseline_version: 1
|
|
|
45
44
|
architecture_baseline_checksum: REPLACE_WITH_SHA256
|
|
46
45
|
decision: changes-required
|
|
47
46
|
affected_page_ids: []
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
affected_review_scene_ids: []
|
|
48
|
+
affected_ui_mapping_ids: []
|
|
50
49
|
affected_prototype_element_ids: []
|
|
51
50
|
affected_experience_change_ids: []
|
|
52
51
|
affected_ui_component_ids: []
|
|
52
|
+
affected_acceptance_ids: []
|
|
53
53
|
component_impacts: []
|
|
54
54
|
contract_impacts: []
|
|
55
55
|
quality_budget_conflicts: []
|
|
@@ -21,7 +21,7 @@ Produce a versioned architecture-gate artifact that lists major decision IDs and
|
|
|
21
21
|
|
|
22
22
|
Add experience coverage validation, exact UI handoff acceptance, selected framework/dependency compatibility, interaction-driven queries, design-token/component constraints, final APIs/events/schemas, final component impact map, final public test seams, and implementation commands.
|
|
23
23
|
|
|
24
|
-
Produce one `prototype-architecture-validation.yaml`
|
|
24
|
+
Produce one `prototype-architecture-validation.yaml` for the exact Prototype revision. Pin the `ui-handoff.yaml` version/checksum, Prototype revision/checksum, source and review-bundle checksums, UI Mapping checksum, normalized catalog checksums, source confirmation, staged Gate receipts, aligned product reconciliation, framework selection, design tokens, interaction/component contracts, change sets, review/impact checksums, linked coverage, and final architecture baseline. Resolve affected Page, Review Scene, prototype-element, UI Mapping, UI component, frontend-source, and acceptance IDs only from the normalized catalogs. Record decision (`accepted` or `changes-required`), affected identities, dependency/component/contract impacts, quality-budget conflicts, unresolved issues, evidence, and return node. Use `status: valid` only with `accepted`; reject any missing or conflicting identity or a handoff not ready for development. Never infer a relationship from a file name or catalog order. Do not modify experience artifacts.
|
|
25
25
|
|
|
26
26
|
## Architecture Decision Test
|
|
27
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ai-delivery-design-experience
|
|
3
|
-
description: Select prototype and UI tools,
|
|
3
|
+
description: Select prototype and UI tools, define a confirmed visual system, produce a production-compatible runnable prototype, record every adjustment and requirement impact, reconcile the final prototype with product requirements, and create a development-ready handoff. Use after initial architecture or whenever product, interaction, visual, framework, page, or component behavior changes.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Design Experience
|
|
@@ -9,7 +9,11 @@ Design complete user experiences for the terminals selected by product and imple
|
|
|
9
9
|
|
|
10
10
|
## Artifact Location
|
|
11
11
|
|
|
12
|
-
Write every workflow document, prototype management artifact, and review record produced by this skill under project `.workflow/`. Place version-scoped node outputs in `.workflow/iterations/<iteration-id
|
|
12
|
+
Write every workflow document, prototype management artifact, and review record produced by this skill under project `.workflow/`. Place version-scoped node outputs in `.workflow/iterations/<iteration-id>/02-solution-design/` and approved reusable experience baselines in `.workflow/experience/`.
|
|
13
|
+
|
|
14
|
+
## Development Node
|
|
15
|
+
|
|
16
|
+
This Skill shares `02-solution-design` with `$ai-delivery-design-architecture`. Visual-system design, production-compatible prototype design, product reconciliation, and architecture reconciliation remain task phases inside the same formal node. Human `UX-VS` and `UX-UI` decisions remain mandatory for every visual or interactive Prototype revision. Reuse an unaffected approved experience baseline only by exact registered artifact identity and checksum; any affected Page or Review Scene requires a new revision and the applicable staged Gates.
|
|
13
17
|
|
|
14
18
|
## Task State
|
|
15
19
|
|
|
@@ -21,51 +25,53 @@ Write every workflow document, prototype management artifact, and review record
|
|
|
21
25
|
|
|
22
26
|
Read the approved product baseline, terminal and feature catalogs, initial architecture baseline, major-decision approval receipt or explicit not-required assessment, applicable design standards, and existing experience baseline. Verify all input versions and checksums. Return missing terminal scope or feature behavior to product definition; refuse to prototype from unapproved major architecture decisions.
|
|
23
27
|
|
|
28
|
+
When `prototype.yaml` has `status: migration-pending-ux-ui` or a `prototype-migration.yaml` exists, apply the Legacy Prototype Migration section of [experience-contract.md](references/experience-contract.md). Treat copied member sources as migration inputs, complete the normalized catalogs and current Review Shell, then freeze and validate a new revision before requesting `UX-UI`; no legacy approval is reusable.
|
|
29
|
+
|
|
24
30
|
## Workflow
|
|
25
31
|
|
|
26
32
|
1. Map each feature-terminal pair to user tasks and journeys.
|
|
27
|
-
2. Reserve one
|
|
28
|
-
3. Define information architecture, navigation, task flows, and
|
|
29
|
-
4.
|
|
30
|
-
5.
|
|
31
|
-
6.
|
|
32
|
-
7.
|
|
33
|
-
8.
|
|
34
|
-
9.
|
|
35
|
-
10.
|
|
36
|
-
11.
|
|
37
|
-
12.
|
|
38
|
-
13.
|
|
39
|
-
14.
|
|
40
|
-
15.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
Tool selection, low-fidelity interaction approval, visual-system/framework approval, formal-UI approval, and final product reconciliation are required decisions for every visual or interactive prototype. Only genuinely non-visual terminals may use justified `not-applicable` results.
|
|
33
|
+
2. Reserve the project's one logical Prototype and its stable identity in `prototype.yaml`. Inspect actual tool and skill availability, recommend evidence-backed authoring tools and optional design assistants, and obtain the user's selection in a valid `prototype-tool-selection.yaml`. Do not start prototype authoring before this human tool-selection Gate passes.
|
|
34
|
+
3. Define information architecture, navigation, task flows, stable Pages, and stable Review Scenes. Use `P01` for a main Page and `P01-01` for its child; use independent `RS0001` identities for directly reviewable conditions. Keep identity separate from display labels, never renumber or reuse retired IDs, and never create a production Page merely to expose a condition.
|
|
35
|
+
4. Group every terminal in the same Prototype through `prototype-terminals.csv`. Declare an independent source entrypoint and build command only where terminal runtimes require it. Normalize Pages, Review Scenes, trigger conditions, prototype routes, production routes, and UI Mapping in their authoritative catalogs; do not duplicate registrations in source or manifests. Register every active Page and Review Scene plus each shared source dependency in `prototype-review-units.csv`, with checksummed source references; record each affected Page as one normalized `prototype-review-unit-pages.csv` association row. Register reusable Component Registration, Data Contract, Component Candidate, component binding, implementation mapping, and Source Inspection Snapshot facts in their own required v2 catalogs. Every required field, identity, terminal/Page/Scene relationship, source reference, and checksum must be complete before freezing; a Page-level Source Inspection Snapshot may omit only `review_scene_id`. Create `frontend-change-scope.yaml` for the production code repository, listing its code root, non-empty frontend roots and UI extensions, and explicit Page ownership for every shared component and route registry. Shared components may own a file or directory. Each route registry must own one file and bind the SHA-256 of its exact approved candidate content so an additional route in an already mapped registry cannot inherit another Page approval. A production UI source is actionable only when it is covered by an active UI Mapping row or one of those explicit ownership entries.
|
|
36
|
+
5. When the user has not supplied a visual direction, read installed `ref/ui/README.md` before any `DESIGN.md`. Evaluate exactly two or three relevant references against the approved product, audience, terminal, brand, and architecture inputs; record one primary reference, at most one supporting reference with its narrow application scope, rationale, upstream version, paths, and SHA-256 values in `design-reference-selection.yaml`. Do not copy a reference product's trademark, proprietary asset, or brand identity. A missing index, `LICENSE`, `UPSTREAM.yaml`, selected reference, or checksum match fails closed.
|
|
37
|
+
6. Define `visual-direction.yaml`. Inspect compatible UI frameworks, skills, and MCP capabilities; record evidence in `ui-framework-candidates.csv`, recommend two or three viable options when available, and obtain the user's exact framework, component-system, icon-library, and version choices in `ui-framework-selection.yaml`. Pin the component registry and version, component configuration file and checksum, selected components, and every checksummed local adaptation. For architecture-compatible React Web with no user override, select shadcn and Lucide. For incompatible runtimes, obey architecture constraints and require an explicit human selection instead of silently substituting a default.
|
|
38
|
+
7. Define machine-readable `design-tokens.json`, typography, semantic colors, spacing, size, border, radius, shadow, opacity, z-index, breakpoints, motion, icons, responsive rules, accessibility, and `component-state-matrix.csv`. Generate a runnable `visual-reference.html` plus `visual-reference-manifest.yaml` that applies the selected references and lets the user operate token modes, component states, responsive behavior, and accessibility states. Before requesting `UX-VS`, start or reuse `ai-delivery manager serve <workspace>`, route the user to P11, and ensure it exposes only the exact checksummed Visual Reference. After the human decision, pin the approved Visual Reference, reference documents, component system, icon library, and every design-input checksum in `visual-system-confirmation.yaml`; each checksum entry declares `scope: project` for `ref/ui` or `scope: experience` for generated inputs. Before completing `UX-VS`, run `ai-delivery visual-standard validate <workspace> --experience <relative-directory>` and retain its successful report as Gate evidence. Missing inputs or licenses, checksum drift, or an approval that is expired blocks the flow and requires a new Visual Reference revision and approval.
|
|
39
|
+
8. Build the one production-compatible runnable Prototype in the isolated `prototype/source` tree using the selected framework and architecture runtime. Keep mock data and do not bind production services. When a Review Scene needs an outside protocol, run `ai-delivery mock setup <workspace>` and `ai-delivery mock start <workspace>`, register every mock with explicit External Dependency Mock (`external-dependency`) or Product Backend Mock (`product-backend`) kind, owner, approved contract reference, replacement condition, protocol, operation/channel, and stable scenario identity, then review `ai-delivery mock sync <workspace> --dry-run`. Only after that dry-run validates every named scenario and dispatcher input may `ai-delivery mock sync <workspace>` run. Keep Product Backend Mock entries for unfinished product-owned public contracts in their separate catalog and never misclassify them as external. Export each actual OpenAPI/AsyncAPI definition changed through the managed Microcks UI into `mock-admin-exports/`, then bind its kind, Mock ID, protocol, relative path, and SHA-256 in `mock-admin-export.yaml`; freeze must protocol-validate every mapped scenario against those exported bytes. Production traffic recording, production credentials, and unsanitized personal data are prohibited, and every explicit import requires passed sanitization evidence. Map every active Review Scene exactly once in `mock-scenario-mappings.csv`. Run `ai-delivery mock freeze <workspace> --experience <relative-directory> --scenario-pack mock-scenario-pack-request.yaml --dry-run`, ask the user to approve that exact candidate checksum, then run the same command without `--dry-run` and formally register the immutable Mock Scenario Pack checksum as `artifact_type: mock-scenario-pack`. Only that registered Pack is authoritative for the Prototype revision and later UI Acceptance. A Product Backend Mock may drive a UI scene, but the real backend is not proven and end-to-end acceptance is not satisfied by that mock. Prototype routes reference only the registered Pack's `mock_id` and `scenario_id`, then trigger the contract-defined dispatcher deterministically; do not duplicate response logic inside the Prototype. Maintain one current Review Shell that consumes the server-supplied `review_path` query parameter and renders the matching registered prototype route. Expose every Page and Review Scene through that direct route, and keep production routes limited to real business Pages. Every visible control must work; cover navigation, validation, loading, empty, success, error, permission, disabled, recovery, responsive behavior, and accessibility in `interaction-contract.csv`. Bind prototype routes, production routes, frontend sources, and acceptance IDs once in `ui-mapping.csv`.
|
|
40
|
+
9. Record every adjustment immediately in `prototype-adjustment-log.csv`, including its classification, before/after revision, reason, requirement/change references, and product, architecture, and test impacts. Never overwrite a prior revision. Create or update `experience-change-set.csv`, `experience-change-domains.csv`, and `requirement-change-set.csv` using stable IDs.
|
|
41
|
+
10. Run mandatory Gate `UX-UI`. Validate the exact Prototype revision, start or reuse `ai-delivery manager serve <workspace>`, and give the returned loopback URL plus P12/P13 affected Page and Review Scene IDs to the user. The Review Shell derives each Page as `approved`, `pending-review`, `changes-requested`, or `stale` from checksummed Page review receipts; it shows the changed evidence domains, all owning Review Scenes, and the Page/Scene/revision checksums. The user must operate that exact revision and write `approved` or reason-required `changes-requested` decisions only through the Workflow Manager controlled API. Never let browser code edit YAML, formal state, or receipts directly. Across revisions, consider decisions only from the checksum-validated `previous_revision` ancestor chain, nearest ancestor first; never inherit from a descendant or unrelated revision. Carry forward a Page approval only when that prior decision is approved and the complete Page checksum is identical; a later changes-requested decision on the selected ancestor takes precedence. Label the final pending Page action `Approve Page and complete UX-UI`, and atomically write its Page receipt with the formal `UX-UI` Gate decision. After approval, reject further Page decisions until a new immutable Prototype revision has a new pending `UX-UI` Gate. Record and re-review every adjustment until `formal-ui-confirmation.yaml` reaches candidate approval with no open comments. A content or catalog change requires a new exact revision; the Workflow Manager must reject target revision drift before accepting a decision.
|
|
42
|
+
11. After every affected Page and Review Scene is candidate-approved, aggregate the full adjustment and requirement-change sets and invoke `$ai-delivery-define-product` in prototype-reconciliation mode. Produce complete bidirectional `prototype-product-coverage.csv`. Product owns `product-prototype-reconciliation.yaml`; never silently rewrite product requirements to match the Prototype.
|
|
43
|
+
12. When reconciliation finds a product change, create and approve a new product baseline, mark affected artifacts stale, revise the same Prototype source, rerun the required Gate, and repeat reconciliation. Reject or remove unapproved prototype behavior. Proceed only with `decision: aligned` and every requirement change terminal.
|
|
44
|
+
13. Derive added, modified, retired, superseded, and unchanged experience rows by comparing stable IDs and checksums with the prior frozen experience baseline. Use phase states `proposed`, `interaction-confirmed`, `visual-confirmed`, `formal-ui-confirmed`, `architecture-accepted`, `ready-for-development`, `included-in-work-package`, `implemented`, and `verified`; use `changes-requested`, `stale`, `blocked`, `retired`, and `superseded` when applicable.
|
|
45
|
+
14. Freeze one immutable `prototype-revision.yaml` for the iteration. Its checksummed review bundle contains the Review Shell, terminal/Page/Review Scene/trigger/route/UI Mapping/Review Unit/Review Unit Page, Component Registration, Data Contract, Component Candidate, component binding, implementation mapping, and Source Inspection Snapshot catalogs, Visual Standard evidence, review evidence, and `frontend-change-scope.yaml`; bind the scope with its own SHA-256 in the revision. Pin the exact source revision and run `ai-delivery prototype-revision validate <workspace> --experience <relative-directory> --revision <relative-yaml>` before registration; never copy or fork the logical Prototype for a new iteration.
|
|
46
|
+
15. Run contract completeness checks and write one source confirmation plus `ui-handoff.yaml` for the exact Prototype revision. Set `development_readiness: ready-for-development` only when `UX-VS`, `UX-UI`, product reconciliation, and revision validation all pass and no blocking or stale requirement/experience change remains.
|
|
47
|
+
|
|
48
|
+
Tool selection, visual-system/framework approval, formal-UI approval, and final product reconciliation are required decisions for every visual or interactive prototype. Only genuinely non-visual terminals may use justified `not-applicable` results.
|
|
44
49
|
|
|
45
50
|
## Outputs
|
|
46
51
|
|
|
47
52
|
- user journeys and task flows;
|
|
48
53
|
- information architecture and page inventory;
|
|
49
|
-
- tool candidate catalog and human tool-selection receipt
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
- production-compatible formal UI baseline, page-component map, and `UX-UI` confirmation;
|
|
54
|
+
- one project Prototype descriptor, tool candidate catalog, and human tool-selection receipt;
|
|
55
|
+
- normalized terminal, Page, Review Scene, trigger-condition, route, UI Mapping, Component Registration, Data Contract, Component Candidate, binding, implementation mapping, and Source Inspection Snapshot catalogs;
|
|
56
|
+
- revision-bound frontend roots plus shared component and route registry Page ownership;
|
|
57
|
+
- design reference selection, runnable HTML Visual Reference, visual direction, UI framework/component/icon selection, design tokens, component-state matrix, and `UX-VS` confirmation;
|
|
58
|
+
- production-compatible runnable prototype, interaction contract, page-component map, and `UX-UI` confirmation;
|
|
55
59
|
- responsive, accessibility, content, and interaction rules;
|
|
56
60
|
- state catalog;
|
|
57
|
-
- mandatory staged-review decision, `UX-
|
|
61
|
+
- mandatory staged-review decision, `UX-VS`/`UX-UI` receipts, review sessions, comments, adjustment log, and impact assessment;
|
|
58
62
|
- experience change/domain sets and requirement change set;
|
|
59
63
|
- product-prototype coverage and final reconciliation receipt;
|
|
60
64
|
- versioned experience baseline and `ui-handoff.yaml` with explicit development readiness;
|
|
61
|
-
-
|
|
65
|
+
- one current isolated Prototype source, one current Review Shell, and one immutable checksummed `prototype-revision.yaml` per approved iteration;
|
|
62
66
|
- `prototype-traceability.csv`;
|
|
63
|
-
- one
|
|
67
|
+
- one source-confirmation YAML bound to the exact Prototype revision;
|
|
64
68
|
- `feature-screen-coverage.csv` mapping feature ID, terminal ID, flow ID, screen ID, and state ID;
|
|
65
69
|
- versioned experience baseline and unresolved technical questions.
|
|
66
70
|
|
|
67
|
-
Read [experience-contract.md](references/experience-contract.md) for handoff identity and [prototype-management-contract.md](references/prototype-management-contract.md) for tool,
|
|
71
|
+
Read [experience-contract.md](references/experience-contract.md) for handoff identity and [prototype-management-contract.md](references/prototype-management-contract.md) for tool, terminal, Page, Review Scene, route, UI Mapping, and review rules. Use `assets/experience-template/` for all controlled templates; files explicitly labeled legacy are compatibility inputs, not current-flow outputs.
|
|
68
72
|
|
|
69
73
|
## Handoff
|
|
70
74
|
|
|
71
|
-
Send the experience baseline, `ui-handoff.yaml`,
|
|
75
|
+
Send the experience baseline, `ui-handoff.yaml`, tool-selection receipt, both experience Gate receipts, product-reconciliation receipt, change sets, interaction/visual/component contracts, exact Prototype revision identity/checksum, source revision, review-bundle checksum, catalog checksums, traceability checksum, and source-confirmation checksum to `$ai-delivery-design-architecture` in reconcile mode. Preserve the same frozen revision for planning and test design; downstream nodes must never edit experience artifacts.
|
|
76
|
+
|
|
77
|
+
Legacy `prototype-set.yaml` and member manifests are read-only compatibility inputs. A compatibility reader may normalize them in memory when inspecting historical iterations, and the explicit CLI migration may copy their validated bytes into the current isolated source tree. This Skill never creates, updates, or deletes a prototype set, member bundle, member-scoped manifest, closed iteration, archive, legacy Gate, or legacy event.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface:
|
|
2
|
-
display_name: "Design Managed Prototypes"
|
|
3
|
-
short_description: "Select tools and manage reviewable prototypes"
|
|
4
|
-
default_prompt: "Use $ai-delivery-design-experience to select a prototype tool, manage pages and canvases, and close review before handoff."
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Design Managed Prototypes"
|
|
3
|
+
short_description: "Select tools and manage reviewable prototypes"
|
|
4
|
+
default_prompt: "Use $ai-delivery-design-experience to select a prototype tool, manage pages and canvases, and close review before handoff."
|
package/skills/ai-delivery-design-experience/assets/experience-template/LEGACY-COMPATIBILITY.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Legacy Prototype Compatibility Inputs
|
|
2
|
+
|
|
3
|
+
The current flow does not create or update the following files. They remain in
|
|
4
|
+
the package only so historical iterations can be inspected, verified, rebuilt,
|
|
5
|
+
or explicitly migrated until downstream consumers complete their migration:
|
|
6
|
+
|
|
7
|
+
- `prototype-set.yaml`
|
|
8
|
+
- `prototype-manifest.yaml`
|
|
9
|
+
- `page-catalog.csv`
|
|
10
|
+
- `canvas-catalog.csv`
|
|
11
|
+
- `canvas-pages.csv`
|
|
12
|
+
- `prototype-files.csv`
|
|
13
|
+
- `prototype-file-terminals.csv`
|
|
14
|
+
|
|
15
|
+
Treat these files as read-only. Normalize their identities in memory and never
|
|
16
|
+
use them as the output model for a new iteration.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
artifact_id: DESIGN-REFERENCE-SELECTION-0001
|
|
2
|
+
artifact_type: design-reference-selection
|
|
3
|
+
version: 1
|
|
4
|
+
iteration_id: ITER-0001
|
|
5
|
+
status: draft
|
|
6
|
+
producer_skill: ai-delivery-design-experience
|
|
7
|
+
catalog_ref: ref/ui/README.md
|
|
8
|
+
catalog_checksum: REPLACE_WITH_SHA256
|
|
9
|
+
license_ref: ref/ui/LICENSE
|
|
10
|
+
license_checksum: REPLACE_WITH_SHA256
|
|
11
|
+
upstream_ref: ref/ui/UPSTREAM.yaml
|
|
12
|
+
upstream_checksum: REPLACE_WITH_SHA256
|
|
13
|
+
upstream_version: REPLACE_WITH_40_CHARACTER_SOURCE_COMMIT
|
|
14
|
+
selection_context:
|
|
15
|
+
product_baseline_ref: PRODUCT-BASELINE-0001@1
|
|
16
|
+
architecture_baseline_ref: ARCH-INITIAL-0001@1
|
|
17
|
+
terminal_ids: []
|
|
18
|
+
audience: []
|
|
19
|
+
usage_context: []
|
|
20
|
+
brand_constraints: []
|
|
21
|
+
evaluation_count:
|
|
22
|
+
minimum: 2
|
|
23
|
+
maximum: 3
|
|
24
|
+
evaluated_references: []
|
|
25
|
+
primary_reference: null
|
|
26
|
+
max_supporting_references: 1
|
|
27
|
+
supporting_reference: null
|
|
28
|
+
rationale: null
|
|
29
|
+
selected_by: null
|
|
30
|
+
selected_at: null
|
|
31
|
+
decision: pending
|
|
32
|
+
blocking_issues: []
|
package/skills/ai-delivery-design-experience/assets/experience-template/experience-baseline.yaml
CHANGED
|
@@ -7,8 +7,8 @@ status: draft
|
|
|
7
7
|
producer_skill: ai-delivery-design-experience
|
|
8
8
|
product_baseline_ref: PRODUCT-BASELINE-0001@1
|
|
9
9
|
architecture_initial_ref: ARCH-INITIAL-0001@1
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
prototype_revision_ref: PROTOTYPE-REVISION-0001@1
|
|
11
|
+
prototype_revision_checksum: REPLACE_WITH_SHA256
|
|
12
12
|
visual_system_gate_status: pending
|
|
13
13
|
formal_ui_gate_status: pending
|
|
14
14
|
product_reconciliation_status: pending
|
package/skills/ai-delivery-design-experience/assets/experience-template/formal-ui-confirmation.yaml
CHANGED
|
@@ -4,16 +4,29 @@ version: 1
|
|
|
4
4
|
iteration_id: ITER-0001
|
|
5
5
|
status: pending
|
|
6
6
|
producer_skill: ai-delivery-design-experience
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
gate_id: UX-UI
|
|
8
|
+
prototype_id: PROTOTYPE
|
|
9
|
+
prototype_revision_ref: PROTOTYPE-REVISION-0001@1
|
|
10
|
+
prototype_revision_checksum: REPLACE_WITH_SHA256
|
|
11
|
+
page_catalog_checksum: REPLACE_WITH_SHA256
|
|
12
|
+
review_scene_catalog_checksum: REPLACE_WITH_SHA256
|
|
13
|
+
review_unit_catalog_checksum: REPLACE_WITH_SHA256
|
|
14
|
+
review_unit_page_catalog_checksum: REPLACE_WITH_SHA256
|
|
15
|
+
visual_standard_checksum: REPLACE_WITH_SHA256
|
|
9
16
|
visual_system_confirmation_ref: VISUAL-SYSTEM-CONFIRMATION-0001@1
|
|
10
|
-
|
|
17
|
+
candidate_source_revision: REPLACE_WITH_IMMUTABLE_SOURCE_REVISION
|
|
11
18
|
formal_ui_review_entrypoint: prototype/formal-ui/index.html
|
|
12
19
|
page_component_map_ref: page-component-map.csv
|
|
13
20
|
page_component_map_checksum: REPLACE_WITH_SHA256
|
|
14
21
|
interaction_contract_checksum: REPLACE_WITH_SHA256
|
|
15
22
|
experience_change_set_checksum: REPLACE_WITH_SHA256
|
|
16
23
|
candidate_status: candidate-approved-pending
|
|
24
|
+
allowed_page_review_statuses:
|
|
25
|
+
- approved
|
|
26
|
+
- pending-review
|
|
27
|
+
- changes-requested
|
|
28
|
+
- stale
|
|
29
|
+
page_review_receipts: []
|
|
17
30
|
checks:
|
|
18
31
|
confirmed_interactions_preserved: pending
|
|
19
32
|
framework_components_applied: pending
|
package/skills/ai-delivery-design-experience/assets/experience-template/frontend-change-scope.yaml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
schema_version: 1
|
|
2
|
+
artifact_type: frontend-change-scope
|
|
3
|
+
code_root: code
|
|
4
|
+
frontend_roots:
|
|
5
|
+
- src
|
|
6
|
+
ui_file_extensions:
|
|
7
|
+
- .css
|
|
8
|
+
- .html
|
|
9
|
+
- .js
|
|
10
|
+
- .jsx
|
|
11
|
+
- .json
|
|
12
|
+
- .less
|
|
13
|
+
- .mdx
|
|
14
|
+
- .sass
|
|
15
|
+
- .scss
|
|
16
|
+
- .ts
|
|
17
|
+
- .tsx
|
|
18
|
+
- .vue
|
|
19
|
+
- .svelte
|
|
20
|
+
shared_components:
|
|
21
|
+
- source_ref: src/components
|
|
22
|
+
source_kind: directory
|
|
23
|
+
page_ids:
|
|
24
|
+
- P01
|
|
25
|
+
route_registries:
|
|
26
|
+
- source_ref: src/router.tsx
|
|
27
|
+
source_kind: file
|
|
28
|
+
page_ids:
|
|
29
|
+
- P01
|
|
30
|
+
approved_checksum: REPLACE_WITH_SHA256
|
package/skills/ai-delivery-design-experience/assets/experience-template/interaction-contract.csv
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
interaction_id,
|
|
1
|
+
interaction_id,prototype_id,page_id,review_scene_id,prototype_element_id,trigger,precondition,state_before,state_after,observable_feedback,error_behavior,keyboard_behavior,acceptance_id,status
|
package/skills/ai-delivery-design-experience/assets/experience-template/mock-scenario-mappings.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
review_scene_id,mock_id,mock_kind,scenario_id,data_source,data_classification,sanitization_status,sanitization_evidence_ref
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
schema_version: 1
|
|
2
|
+
artifact_id: MOCK-SCENARIO-PACK-0001
|
|
3
|
+
artifact_type: mock-scenario-pack-request
|
|
4
|
+
version: 1
|
|
5
|
+
iteration_id: ITER-0001
|
|
6
|
+
prototype_revision:
|
|
7
|
+
ref: prototype/revisions/PROTOTYPE-REVISION-0001/prototype-revision.yaml
|
|
8
|
+
algorithm: sha256
|
|
9
|
+
checksum: REPLACE_WITH_SHA256
|
|
10
|
+
scenario_mapping:
|
|
11
|
+
ref: mock-scenario-mappings.csv
|
|
12
|
+
algorithm: sha256
|
|
13
|
+
checksum: REPLACE_WITH_SHA256
|
|
14
|
+
admin_export:
|
|
15
|
+
ref: mock-admin-export.yaml
|
|
16
|
+
algorithm: sha256
|
|
17
|
+
checksum: REPLACE_WITH_SHA256
|
|
18
|
+
human_confirmation:
|
|
19
|
+
required: true
|
|
20
|
+
decision: pending
|
|
21
|
+
actor: null
|
|
22
|
+
decided_at: null
|
|
23
|
+
candidate_checksum: null
|
|
24
|
+
output_ref: mock-scenario-packs/MOCK-SCENARIO-PACK-0001.yaml
|