@ztothez/design-engineering 2.0.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/LICENSE +15 -0
- package/README.md +448 -0
- package/ROADMAP.md +127 -0
- package/SKILL.md +698 -0
- package/V2-ROADMAP.md +431 -0
- package/V3-ROADMAP.md +605 -0
- package/V4-ROADMAP.md +283 -0
- package/clean-room-ux-design-spec.md +1431 -0
- package/dist/cli/aggregate-gates.d.ts +2 -0
- package/dist/cli/aggregate-gates.js +86 -0
- package/dist/cli/aggregate-gates.js.map +1 -0
- package/dist/cli/assess-maintainer-review.d.ts +2 -0
- package/dist/cli/assess-maintainer-review.js +72 -0
- package/dist/cli/assess-maintainer-review.js.map +1 -0
- package/dist/cli/audit.d.ts +2 -0
- package/dist/cli/audit.js +71 -0
- package/dist/cli/audit.js.map +1 -0
- package/dist/cli/compile-comparison-review.d.ts +2 -0
- package/dist/cli/compile-comparison-review.js +154 -0
- package/dist/cli/compile-comparison-review.js.map +1 -0
- package/dist/cli/compile-plan.d.ts +2 -0
- package/dist/cli/compile-plan.js +66 -0
- package/dist/cli/compile-plan.js.map +1 -0
- package/dist/cli/evaluate-corpus.d.ts +2 -0
- package/dist/cli/evaluate-corpus.js +65 -0
- package/dist/cli/evaluate-corpus.js.map +1 -0
- package/dist/cli/generate-react.d.ts +2 -0
- package/dist/cli/generate-react.js +83 -0
- package/dist/cli/generate-react.js.map +1 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +58 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/portfolio.d.ts +2 -0
- package/dist/cli/portfolio.js +316 -0
- package/dist/cli/portfolio.js.map +1 -0
- package/dist/cli/quality-gate.d.ts +2 -0
- package/dist/cli/quality-gate.js +131 -0
- package/dist/cli/quality-gate.js.map +1 -0
- package/dist/cli/repair-react.d.ts +2 -0
- package/dist/cli/repair-react.js +163 -0
- package/dist/cli/repair-react.js.map +1 -0
- package/dist/cli/review-heuristics.d.ts +2 -0
- package/dist/cli/review-heuristics.js +68 -0
- package/dist/cli/review-heuristics.js.map +1 -0
- package/dist/cli/validate-brief.d.ts +2 -0
- package/dist/cli/validate-brief.js +58 -0
- package/dist/cli/validate-brief.js.map +1 -0
- package/dist/cli/validate-comparison.d.ts +2 -0
- package/dist/cli/validate-comparison.js +68 -0
- package/dist/cli/validate-comparison.js.map +1 -0
- package/dist/cli/validate-contract.d.ts +2 -0
- package/dist/cli/validate-contract.js +54 -0
- package/dist/cli/validate-contract.js.map +1 -0
- package/dist/cli/validate-design.d.ts +2 -0
- package/dist/cli/validate-design.js +53 -0
- package/dist/cli/validate-design.js.map +1 -0
- package/dist/cli/validate-information.d.ts +2 -0
- package/dist/cli/validate-information.js +53 -0
- package/dist/cli/validate-information.js.map +1 -0
- package/dist/cli/validate-trust.d.ts +2 -0
- package/dist/cli/validate-trust.js +53 -0
- package/dist/cli/validate-trust.js.map +1 -0
- package/dist/cli/verify-ui.d.ts +2 -0
- package/dist/cli/verify-ui.js +181 -0
- package/dist/cli/verify-ui.js.map +1 -0
- package/dist/src/acceptance/evaluator.d.ts +13 -0
- package/dist/src/acceptance/evaluator.js +201 -0
- package/dist/src/acceptance/evaluator.js.map +1 -0
- package/dist/src/acceptance/loader.d.ts +2 -0
- package/dist/src/acceptance/loader.js +18 -0
- package/dist/src/acceptance/loader.js.map +1 -0
- package/dist/src/acceptance/report.d.ts +2 -0
- package/dist/src/acceptance/report.js +18 -0
- package/dist/src/acceptance/report.js.map +1 -0
- package/dist/src/acceptance/schema.d.ts +64 -0
- package/dist/src/acceptance/schema.js +57 -0
- package/dist/src/acceptance/schema.js.map +1 -0
- package/dist/src/acceptance/types.d.ts +47 -0
- package/dist/src/acceptance/types.js +2 -0
- package/dist/src/acceptance/types.js.map +1 -0
- package/dist/src/aggregate/report.d.ts +2 -0
- package/dist/src/aggregate/report.js +33 -0
- package/dist/src/aggregate/report.js.map +1 -0
- package/dist/src/aggregate/runner.d.ts +2 -0
- package/dist/src/aggregate/runner.js +165 -0
- package/dist/src/aggregate/runner.js.map +1 -0
- package/dist/src/aggregate/schema.d.ts +182 -0
- package/dist/src/aggregate/schema.js +54 -0
- package/dist/src/aggregate/schema.js.map +1 -0
- package/dist/src/aggregate/types.d.ts +57 -0
- package/dist/src/aggregate/types.js +2 -0
- package/dist/src/aggregate/types.js.map +1 -0
- package/dist/src/audit/policy.d.ts +3 -0
- package/dist/src/audit/policy.js +45 -0
- package/dist/src/audit/policy.js.map +1 -0
- package/dist/src/audit/report.d.ts +2 -0
- package/dist/src/audit/report.js +32 -0
- package/dist/src/audit/report.js.map +1 -0
- package/dist/src/audit/rules/accessibility-name.d.ts +2 -0
- package/dist/src/audit/rules/accessibility-name.js +64 -0
- package/dist/src/audit/rules/accessibility-name.js.map +1 -0
- package/dist/src/audit/rules/component-size.d.ts +2 -0
- package/dist/src/audit/rules/component-size.js +27 -0
- package/dist/src/audit/rules/component-size.js.map +1 -0
- package/dist/src/audit/rules/credential-placeholder.d.ts +2 -0
- package/dist/src/audit/rules/credential-placeholder.js +83 -0
- package/dist/src/audit/rules/credential-placeholder.js.map +1 -0
- package/dist/src/audit/rules/helpers.d.ts +16 -0
- package/dist/src/audit/rules/helpers.js +64 -0
- package/dist/src/audit/rules/helpers.js.map +1 -0
- package/dist/src/audit/rules/index.d.ts +2 -0
- package/dist/src/audit/rules/index.js +23 -0
- package/dist/src/audit/rules/index.js.map +1 -0
- package/dist/src/audit/rules/interactive-integrity.d.ts +2 -0
- package/dist/src/audit/rules/interactive-integrity.js +111 -0
- package/dist/src/audit/rules/interactive-integrity.js.map +1 -0
- package/dist/src/audit/rules/mixed-responsibilities.d.ts +2 -0
- package/dist/src/audit/rules/mixed-responsibilities.js +39 -0
- package/dist/src/audit/rules/mixed-responsibilities.js.map +1 -0
- package/dist/src/audit/rules/mock-production-path.d.ts +2 -0
- package/dist/src/audit/rules/mock-production-path.js +39 -0
- package/dist/src/audit/rules/mock-production-path.js.map +1 -0
- package/dist/src/audit/rules/network-state.d.ts +2 -0
- package/dist/src/audit/rules/network-state.js +39 -0
- package/dist/src/audit/rules/network-state.js.map +1 -0
- package/dist/src/audit/rules/operational-claim.d.ts +2 -0
- package/dist/src/audit/rules/operational-claim.js +94 -0
- package/dist/src/audit/rules/operational-claim.js.map +1 -0
- package/dist/src/audit/rules/placeholder-interaction.d.ts +2 -0
- package/dist/src/audit/rules/placeholder-interaction.js +46 -0
- package/dist/src/audit/rules/placeholder-interaction.js.map +1 -0
- package/dist/src/audit/rules/raw-design-values.d.ts +2 -0
- package/dist/src/audit/rules/raw-design-values.js +97 -0
- package/dist/src/audit/rules/raw-design-values.js.map +1 -0
- package/dist/src/audit/scanner.d.ts +2 -0
- package/dist/src/audit/scanner.js +215 -0
- package/dist/src/audit/scanner.js.map +1 -0
- package/dist/src/audit/types.d.ts +62 -0
- package/dist/src/audit/types.js +2 -0
- package/dist/src/audit/types.js.map +1 -0
- package/dist/src/comparison/evaluator.d.ts +2 -0
- package/dist/src/comparison/evaluator.js +478 -0
- package/dist/src/comparison/evaluator.js.map +1 -0
- package/dist/src/comparison/loader.d.ts +3 -0
- package/dist/src/comparison/loader.js +26 -0
- package/dist/src/comparison/loader.js.map +1 -0
- package/dist/src/comparison/maintainer.d.ts +47 -0
- package/dist/src/comparison/maintainer.js +218 -0
- package/dist/src/comparison/maintainer.js.map +1 -0
- package/dist/src/comparison/report.d.ts +2 -0
- package/dist/src/comparison/report.js +48 -0
- package/dist/src/comparison/report.js.map +1 -0
- package/dist/src/comparison/schema.d.ts +464 -0
- package/dist/src/comparison/schema.js +502 -0
- package/dist/src/comparison/schema.js.map +1 -0
- package/dist/src/contracts/archetypes.d.ts +21 -0
- package/dist/src/contracts/archetypes.js +102 -0
- package/dist/src/contracts/archetypes.js.map +1 -0
- package/dist/src/contracts/journeys.d.ts +7 -0
- package/dist/src/contracts/journeys.js +32 -0
- package/dist/src/contracts/journeys.js.map +1 -0
- package/dist/src/contracts/report.d.ts +2 -0
- package/dist/src/contracts/report.js +33 -0
- package/dist/src/contracts/report.js.map +1 -0
- package/dist/src/contracts/schema.d.ts +1038 -0
- package/dist/src/contracts/schema.js +385 -0
- package/dist/src/contracts/schema.js.map +1 -0
- package/dist/src/contracts/validator.d.ts +12 -0
- package/dist/src/contracts/validator.js +303 -0
- package/dist/src/contracts/validator.js.map +1 -0
- package/dist/src/corpus/evaluator.d.ts +2 -0
- package/dist/src/corpus/evaluator.js +203 -0
- package/dist/src/corpus/evaluator.js.map +1 -0
- package/dist/src/corpus/loader.d.ts +2 -0
- package/dist/src/corpus/loader.js +20 -0
- package/dist/src/corpus/loader.js.map +1 -0
- package/dist/src/corpus/report.d.ts +2 -0
- package/dist/src/corpus/report.js +33 -0
- package/dist/src/corpus/report.js.map +1 -0
- package/dist/src/corpus/schema.d.ts +316 -0
- package/dist/src/corpus/schema.js +269 -0
- package/dist/src/corpus/schema.js.map +1 -0
- package/dist/src/design-intelligence/loader.d.ts +2 -0
- package/dist/src/design-intelligence/loader.js +21 -0
- package/dist/src/design-intelligence/loader.js.map +1 -0
- package/dist/src/design-intelligence/report.d.ts +2 -0
- package/dist/src/design-intelligence/report.js +36 -0
- package/dist/src/design-intelligence/report.js.map +1 -0
- package/dist/src/design-intelligence/schema.d.ts +838 -0
- package/dist/src/design-intelligence/schema.js +854 -0
- package/dist/src/design-intelligence/schema.js.map +1 -0
- package/dist/src/design-intelligence/validator.d.ts +2 -0
- package/dist/src/design-intelligence/validator.js +1371 -0
- package/dist/src/design-intelligence/validator.js.map +1 -0
- package/dist/src/design-plan/compiler.d.ts +8 -0
- package/dist/src/design-plan/compiler.js +288 -0
- package/dist/src/design-plan/compiler.js.map +1 -0
- package/dist/src/design-plan/report.d.ts +2 -0
- package/dist/src/design-plan/report.js +28 -0
- package/dist/src/design-plan/report.js.map +1 -0
- package/dist/src/design-plan/schema.d.ts +202 -0
- package/dist/src/design-plan/schema.js +76 -0
- package/dist/src/design-plan/schema.js.map +1 -0
- package/dist/src/generation/loader.d.ts +2 -0
- package/dist/src/generation/loader.js +21 -0
- package/dist/src/generation/loader.js.map +1 -0
- package/dist/src/generation/policy.d.ts +12 -0
- package/dist/src/generation/policy.js +62 -0
- package/dist/src/generation/policy.js.map +1 -0
- package/dist/src/generation/react-typescript.d.ts +6 -0
- package/dist/src/generation/react-typescript.js +538 -0
- package/dist/src/generation/react-typescript.js.map +1 -0
- package/dist/src/generation/report.d.ts +2 -0
- package/dist/src/generation/report.js +21 -0
- package/dist/src/generation/report.js.map +1 -0
- package/dist/src/generation/schema.d.ts +44 -0
- package/dist/src/generation/schema.js +50 -0
- package/dist/src/generation/schema.js.map +1 -0
- package/dist/src/generation/templates/tokens.d.ts +1 -0
- package/dist/src/generation/templates/tokens.js +59 -0
- package/dist/src/generation/templates/tokens.js.map +1 -0
- package/dist/src/heuristics/evaluator.d.ts +2 -0
- package/dist/src/heuristics/evaluator.js +65 -0
- package/dist/src/heuristics/evaluator.js.map +1 -0
- package/dist/src/heuristics/loader.d.ts +2 -0
- package/dist/src/heuristics/loader.js +21 -0
- package/dist/src/heuristics/loader.js.map +1 -0
- package/dist/src/heuristics/report.d.ts +3 -0
- package/dist/src/heuristics/report.js +31 -0
- package/dist/src/heuristics/report.js.map +1 -0
- package/dist/src/heuristics/schema.d.ts +198 -0
- package/dist/src/heuristics/schema.js +197 -0
- package/dist/src/heuristics/schema.js.map +1 -0
- package/dist/src/information-design/loader.d.ts +2 -0
- package/dist/src/information-design/loader.js +21 -0
- package/dist/src/information-design/loader.js.map +1 -0
- package/dist/src/information-design/report.d.ts +2 -0
- package/dist/src/information-design/report.js +27 -0
- package/dist/src/information-design/report.js.map +1 -0
- package/dist/src/information-design/schema.d.ts +370 -0
- package/dist/src/information-design/schema.js +329 -0
- package/dist/src/information-design/schema.js.map +1 -0
- package/dist/src/information-design/validator.d.ts +2 -0
- package/dist/src/information-design/validator.js +242 -0
- package/dist/src/information-design/validator.js.map +1 -0
- package/dist/src/interface-trust/loader.d.ts +2 -0
- package/dist/src/interface-trust/loader.js +21 -0
- package/dist/src/interface-trust/loader.js.map +1 -0
- package/dist/src/interface-trust/report.d.ts +2 -0
- package/dist/src/interface-trust/report.js +26 -0
- package/dist/src/interface-trust/report.js.map +1 -0
- package/dist/src/interface-trust/schema.d.ts +299 -0
- package/dist/src/interface-trust/schema.js +238 -0
- package/dist/src/interface-trust/schema.js.map +1 -0
- package/dist/src/interface-trust/validator.d.ts +2 -0
- package/dist/src/interface-trust/validator.js +283 -0
- package/dist/src/interface-trust/validator.js.map +1 -0
- package/dist/src/portfolio/adapter-report.d.ts +3 -0
- package/dist/src/portfolio/adapter-report.js +38 -0
- package/dist/src/portfolio/adapter-report.js.map +1 -0
- package/dist/src/portfolio/adapters.d.ts +37 -0
- package/dist/src/portfolio/adapters.js +325 -0
- package/dist/src/portfolio/adapters.js.map +1 -0
- package/dist/src/portfolio/evidence.d.ts +9 -0
- package/dist/src/portfolio/evidence.js +233 -0
- package/dist/src/portfolio/evidence.js.map +1 -0
- package/dist/src/portfolio/files.d.ts +8 -0
- package/dist/src/portfolio/files.js +77 -0
- package/dist/src/portfolio/files.js.map +1 -0
- package/dist/src/portfolio/fixture-server.d.ts +11 -0
- package/dist/src/portfolio/fixture-server.js +131 -0
- package/dist/src/portfolio/fixture-server.js.map +1 -0
- package/dist/src/portfolio/loader.d.ts +2 -0
- package/dist/src/portfolio/loader.js +21 -0
- package/dist/src/portfolio/loader.js.map +1 -0
- package/dist/src/portfolio/mcp.d.ts +186 -0
- package/dist/src/portfolio/mcp.js +117 -0
- package/dist/src/portfolio/mcp.js.map +1 -0
- package/dist/src/portfolio/promotion-schema.d.ts +220 -0
- package/dist/src/portfolio/promotion-schema.js +148 -0
- package/dist/src/portfolio/promotion-schema.js.map +1 -0
- package/dist/src/portfolio/promotion.d.ts +4 -0
- package/dist/src/portfolio/promotion.js +160 -0
- package/dist/src/portfolio/promotion.js.map +1 -0
- package/dist/src/portfolio/qualification-schema.d.ts +268 -0
- package/dist/src/portfolio/qualification-schema.js +112 -0
- package/dist/src/portfolio/qualification-schema.js.map +1 -0
- package/dist/src/portfolio/qualification.d.ts +4 -0
- package/dist/src/portfolio/qualification.js +157 -0
- package/dist/src/portfolio/qualification.js.map +1 -0
- package/dist/src/portfolio/registry.d.ts +34 -0
- package/dist/src/portfolio/registry.js +240 -0
- package/dist/src/portfolio/registry.js.map +1 -0
- package/dist/src/portfolio/report.d.ts +4 -0
- package/dist/src/portfolio/report.js +47 -0
- package/dist/src/portfolio/report.js.map +1 -0
- package/dist/src/portfolio/run-schema.d.ts +135 -0
- package/dist/src/portfolio/run-schema.js +81 -0
- package/dist/src/portfolio/run-schema.js.map +1 -0
- package/dist/src/portfolio/runner.d.ts +118 -0
- package/dist/src/portfolio/runner.js +423 -0
- package/dist/src/portfolio/runner.js.map +1 -0
- package/dist/src/portfolio/schema.d.ts +251 -0
- package/dist/src/portfolio/schema.js +317 -0
- package/dist/src/portfolio/schema.js.map +1 -0
- package/dist/src/portfolio/snapshot.d.ts +89 -0
- package/dist/src/portfolio/snapshot.js +548 -0
- package/dist/src/portfolio/snapshot.js.map +1 -0
- package/dist/src/portfolio/taxonomy-schema.d.ts +215 -0
- package/dist/src/portfolio/taxonomy-schema.js +74 -0
- package/dist/src/portfolio/taxonomy-schema.js.map +1 -0
- package/dist/src/portfolio/taxonomy.d.ts +5 -0
- package/dist/src/portfolio/taxonomy.js +236 -0
- package/dist/src/portfolio/taxonomy.js.map +1 -0
- package/dist/src/portfolio/vault.d.ts +53 -0
- package/dist/src/portfolio/vault.js +176 -0
- package/dist/src/portfolio/vault.js.map +1 -0
- package/dist/src/product-brief/loader.d.ts +2 -0
- package/dist/src/product-brief/loader.js +21 -0
- package/dist/src/product-brief/loader.js.map +1 -0
- package/dist/src/product-brief/report.d.ts +2 -0
- package/dist/src/product-brief/report.js +22 -0
- package/dist/src/product-brief/report.js.map +1 -0
- package/dist/src/product-brief/schema.d.ts +367 -0
- package/dist/src/product-brief/schema.js +272 -0
- package/dist/src/product-brief/schema.js.map +1 -0
- package/dist/src/product-brief/validator.d.ts +2 -0
- package/dist/src/product-brief/validator.js +251 -0
- package/dist/src/product-brief/validator.js.map +1 -0
- package/dist/src/product.d.ts +7 -0
- package/dist/src/product.js +28 -0
- package/dist/src/product.js.map +1 -0
- package/dist/src/quality-gate/report.d.ts +2 -0
- package/dist/src/quality-gate/report.js +46 -0
- package/dist/src/quality-gate/report.js.map +1 -0
- package/dist/src/quality-gate/runner.d.ts +2 -0
- package/dist/src/quality-gate/runner.js +175 -0
- package/dist/src/quality-gate/runner.js.map +1 -0
- package/dist/src/quality-gate/schema.d.ts +75 -0
- package/dist/src/quality-gate/schema.js +37 -0
- package/dist/src/quality-gate/schema.js.map +1 -0
- package/dist/src/quality-gate/types.d.ts +49 -0
- package/dist/src/quality-gate/types.js +2 -0
- package/dist/src/quality-gate/types.js.map +1 -0
- package/dist/src/repair/loader.d.ts +2 -0
- package/dist/src/repair/loader.js +11 -0
- package/dist/src/repair/loader.js.map +1 -0
- package/dist/src/repair/policy.d.ts +16 -0
- package/dist/src/repair/policy.js +65 -0
- package/dist/src/repair/policy.js.map +1 -0
- package/dist/src/repair/report.d.ts +2 -0
- package/dist/src/repair/report.js +32 -0
- package/dist/src/repair/report.js.map +1 -0
- package/dist/src/repair/runner.d.ts +17 -0
- package/dist/src/repair/runner.js +511 -0
- package/dist/src/repair/runner.js.map +1 -0
- package/dist/src/repair/schema.d.ts +264 -0
- package/dist/src/repair/schema.js +202 -0
- package/dist/src/repair/schema.js.map +1 -0
- package/dist/src/retrieval/report.d.ts +2 -0
- package/dist/src/retrieval/report.js +21 -0
- package/dist/src/retrieval/report.js.map +1 -0
- package/dist/src/retrieval/schema.d.ts +123 -0
- package/dist/src/retrieval/schema.js +77 -0
- package/dist/src/retrieval/schema.js.map +1 -0
- package/dist/src/retrieval/search.d.ts +26 -0
- package/dist/src/retrieval/search.js +415 -0
- package/dist/src/retrieval/search.js.map +1 -0
- package/dist/src/runtime/advanced-checks.d.ts +6 -0
- package/dist/src/runtime/advanced-checks.js +487 -0
- package/dist/src/runtime/advanced-checks.js.map +1 -0
- package/dist/src/runtime/composition-checks.d.ts +5 -0
- package/dist/src/runtime/composition-checks.js +307 -0
- package/dist/src/runtime/composition-checks.js.map +1 -0
- package/dist/src/runtime/interface-checks.d.ts +12 -0
- package/dist/src/runtime/interface-checks.js +224 -0
- package/dist/src/runtime/interface-checks.js.map +1 -0
- package/dist/src/runtime/policy.d.ts +13 -0
- package/dist/src/runtime/policy.js +97 -0
- package/dist/src/runtime/policy.js.map +1 -0
- package/dist/src/runtime/report.d.ts +2 -0
- package/dist/src/runtime/report.js +48 -0
- package/dist/src/runtime/report.js.map +1 -0
- package/dist/src/runtime/schema.d.ts +406 -0
- package/dist/src/runtime/schema.js +308 -0
- package/dist/src/runtime/schema.js.map +1 -0
- package/dist/src/runtime/types.d.ts +177 -0
- package/dist/src/runtime/types.js +2 -0
- package/dist/src/runtime/types.js.map +1 -0
- package/dist/src/runtime/verifier.d.ts +2 -0
- package/dist/src/runtime/verifier.js +1201 -0
- package/dist/src/runtime/verifier.js.map +1 -0
- package/dist/src/server.d.ts +2 -0
- package/dist/src/server.js +1352 -0
- package/dist/src/server.js.map +1 -0
- package/docs/installation.md +337 -0
- package/knowledge-base/INDEX.md +285 -0
- package/knowledge-base/benchmarks/aegisops/CALIBRATION.md +52 -0
- package/knowledge-base/benchmarks/aegisops/MANIFEST.md +56 -0
- package/knowledge-base/benchmarks/aegisops/SOURCE-EVIDENCE.md +45 -0
- package/knowledge-base/benchmarks/aegisops/acceptance-criteria.md +42 -0
- package/knowledge-base/benchmarks/aegisops/anti-patterns.md +19 -0
- package/knowledge-base/benchmarks/aegisops/attestations.template.yaml +3 -0
- package/knowledge-base/benchmarks/aegisops/attestations.yaml +115 -0
- package/knowledge-base/benchmarks/aegisops/journeys.json +91 -0
- package/knowledge-base/benchmarks/aegisops/product-contract.yaml +328 -0
- package/knowledge-base/benchmarks/azure-optimizer/SOURCE-EVIDENCE.md +26 -0
- package/knowledge-base/benchmarks/azure-optimizer/V2-IMPLEMENTATION.md +39 -0
- package/knowledge-base/benchmarks/azure-optimizer/acceptance-criteria.md +23 -0
- package/knowledge-base/benchmarks/azure-optimizer/anti-patterns.md +13 -0
- package/knowledge-base/benchmarks/azure-optimizer/journeys.json +88 -0
- package/knowledge-base/benchmarks/azure-optimizer/product-contract.yaml +216 -0
- package/knowledge-base/benchmarks/azure-optimizer/v2-human-review-methodology.yaml +171 -0
- package/knowledge-base/benchmarks/azure-optimizer/v2-journeys.json +139 -0
- package/knowledge-base/benchmarks/corpus/PROVENANCE.md +21 -0
- package/knowledge-base/benchmarks/corpus/README.md +30 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-negative/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-negative/src/FakeDashboard.tsx +10 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-positive/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/anti-slop-positive/src/Progress.tsx +15 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-negative/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-negative/src/OperationsPanel.tsx +40 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-positive/package.json +9 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-positive/src/Dashboard.tsx +17 -0
- package/knowledge-base/benchmarks/corpus/cases/architecture-positive/src/theme.css +15 -0
- package/knowledge-base/benchmarks/corpus/cases/task-incomplete/SOURCE-EVIDENCE.md +3 -0
- package/knowledge-base/benchmarks/corpus/cases/task-incomplete/journeys.json +20 -0
- package/knowledge-base/benchmarks/corpus/cases/task-incomplete/product-contract.yaml +78 -0
- package/knowledge-base/benchmarks/corpus/corpus.schema.yaml +159 -0
- package/knowledge-base/benchmarks/corpus/corpus.yaml +209 -0
- package/knowledge-base/benchmarks/interface-quality/README.md +26 -0
- package/knowledge-base/benchmarks/interface-quality/SOLO-MAINTAINER-TRACK.md +35 -0
- package/knowledge-base/benchmarks/interface-quality/comparison-methodology-v1.1.schema.yaml +288 -0
- package/knowledge-base/benchmarks/interface-quality/comparison-methodology.schema.yaml +235 -0
- package/knowledge-base/benchmarks/interface-quality/comparison-methodology.template.yaml +181 -0
- package/knowledge-base/benchmarks/interface-quality/evidence/example-runtime-report.json +11 -0
- package/knowledge-base/benchmarks/interface-quality/review-session.schema.yaml +14 -0
- package/knowledge-base/benchmarks/interface-quality/review.schema.yaml +296 -0
- package/knowledge-base/benchmarks/interface-quality/review.template.yaml +43 -0
- package/knowledge-base/benchmarks/portfolio-corpus/ADAPTERS.md +68 -0
- package/knowledge-base/benchmarks/portfolio-corpus/PORTFOLIO-RUNNER.md +131 -0
- package/knowledge-base/benchmarks/portfolio-corpus/PRODUCT-TASK-CONTRACTS.md +29 -0
- package/knowledge-base/benchmarks/portfolio-corpus/PROMOTED-RULES.md +31 -0
- package/knowledge-base/benchmarks/portfolio-corpus/archetype-profiles.yaml +26 -0
- package/knowledge-base/benchmarks/portfolio-corpus/product-task-profile.schema.yaml +105 -0
- package/knowledge-base/benchmarks/portfolio-corpus/registry.schema.yaml +188 -0
- package/knowledge-base/benchmarks/portfolio-corpus/registry.template.yaml +63 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/component-size-abstention.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/component-size-negative.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/component-size-positive.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/interactive-integrity-abstention.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/interactive-integrity-negative.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/interactive-integrity-positive.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/raw-design-values-abstention.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/raw-design-values-negative.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-fixtures/raw-design-values-positive.json +10 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-holdout-evaluation.template.json +14 -0
- package/knowledge-base/benchmarks/portfolio-corpus/rule-promotion-evidence.template.json +24 -0
- package/knowledge-base/benchmarks/portfolio-corpus/v3-command-evidence.template.json +17 -0
- package/knowledge-base/benchmarks/portfolio-corpus/v3-qualification-evidence.template.json +29 -0
- package/knowledge-base/benchmarks/scenestart/CALIBRATION.md +95 -0
- package/knowledge-base/benchmarks/scenestart/MANIFEST.md +53 -0
- package/knowledge-base/benchmarks/scenestart/SOURCE-EVIDENCE.md +43 -0
- package/knowledge-base/benchmarks/scenestart/acceptance-criteria.md +59 -0
- package/knowledge-base/benchmarks/scenestart/anti-patterns.md +26 -0
- package/knowledge-base/benchmarks/scenestart/attestations.template.yaml +3 -0
- package/knowledge-base/benchmarks/scenestart/attestations.yaml +21 -0
- package/knowledge-base/benchmarks/scenestart/human-review.md +99 -0
- package/knowledge-base/benchmarks/scenestart/human-review.template.md +105 -0
- package/knowledge-base/benchmarks/scenestart/journeys.json +141 -0
- package/knowledge-base/benchmarks/scenestart/product-contract.yaml +427 -0
- package/knowledge-base/dependencies.yaml +69 -0
- package/knowledge-base/design-intelligence/MASTER.md +87 -0
- package/knowledge-base/design-intelligence/asset-generation.md +66 -0
- package/knowledge-base/design-intelligence/brand-systems.md +69 -0
- package/knowledge-base/design-intelligence/closed-loop-repair.md +95 -0
- package/knowledge-base/design-intelligence/design-deliverable.schema.yaml +1194 -0
- package/knowledge-base/design-intelligence/design-deliverable.template.yaml +591 -0
- package/knowledge-base/design-intelligence/design-plan.md +78 -0
- package/knowledge-base/design-intelligence/design-plan.schema.yaml +621 -0
- package/knowledge-base/design-intelligence/figma-production.md +63 -0
- package/knowledge-base/design-intelligence/generation-adapter.md +72 -0
- package/knowledge-base/design-intelligence/generation-adapter.schema.yaml +47 -0
- package/knowledge-base/design-intelligence/iconography.md +46 -0
- package/knowledge-base/design-intelligence/information-design.md +104 -0
- package/knowledge-base/design-intelligence/information-design.schema.yaml +390 -0
- package/knowledge-base/design-intelligence/information-design.template.yaml +281 -0
- package/knowledge-base/design-intelligence/interaction-recovery-verification.md +72 -0
- package/knowledge-base/design-intelligence/interface-trust.md +103 -0
- package/knowledge-base/design-intelligence/interface-trust.schema.yaml +263 -0
- package/knowledge-base/design-intelligence/interface-trust.template.yaml +173 -0
- package/knowledge-base/design-intelligence/licensing-and-provenance.md +59 -0
- package/knowledge-base/design-intelligence/presentation-design.md +56 -0
- package/knowledge-base/design-intelligence/product-design-brief.md +67 -0
- package/knowledge-base/design-intelligence/product-design-brief.schema.yaml +279 -0
- package/knowledge-base/design-intelligence/product-design-brief.template.yaml +225 -0
- package/knowledge-base/design-intelligence/repair-request.schema.yaml +95 -0
- package/knowledge-base/design-intelligence/repair-request.template.yaml +39 -0
- package/knowledge-base/design-intelligence/visual-accessibility.md +56 -0
- package/knowledge-base/design-intelligence/visual-polish.md +172 -0
- package/knowledge-base/maintained/architecture/MASTER.md +22 -0
- package/knowledge-base/maintained/architecture/component-boundaries.md +30 -0
- package/knowledge-base/maintained/architecture/product-platforms.md +25 -0
- package/knowledge-base/maintained/architecture/quality-attributes-and-evaluation.md +35 -0
- package/knowledge-base/maintained/product-patterns/MASTER.md +10 -0
- package/knowledge-base/maintained/product-patterns/ai-workspaces.md +26 -0
- package/knowledge-base/maintained/product-patterns/operational-dashboards.md +22 -0
- package/knowledge-base/provenance.yaml +196 -0
- package/knowledge-base/retrieval-scope.yaml +43 -0
- package/knowledge-base/usability-evaluation/HEURISTIC_EVALUATION.md +115 -0
- package/knowledge-base/usability-evaluation/heuristic-review.schema.yaml +210 -0
- package/knowledge-base/usability-evaluation/heuristic-review.template.yaml +37 -0
- package/package.json +133 -0
package/V4-ROADMAP.md
ADDED
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
# ZtotheZ Design Engineering V4 Roadmap
|
|
2
|
+
|
|
3
|
+
V4 turns the validated design-engineering system into a closed-loop product delivery workflow. It
|
|
4
|
+
must begin from explicit product evidence, generate bounded implementation plans, verify working
|
|
5
|
+
interfaces, repair supported findings, and prove that improvements generalize without modifying
|
|
6
|
+
read-only benchmark sources.
|
|
7
|
+
|
|
8
|
+
[`SKILL.md`](SKILL.md) remains authoritative. V4 preserves every V1, V2, and V3 evidence, privacy,
|
|
9
|
+
clean-room, package, and source-mutation boundary.
|
|
10
|
+
|
|
11
|
+
## Status Definitions
|
|
12
|
+
|
|
13
|
+
- **Done:** every completion criterion has implemented and retained verification evidence.
|
|
14
|
+
- **Partial:** implementation exists, but at least one required criterion is incomplete.
|
|
15
|
+
- **In progress:** implementation is actively being built and is not yet qualified.
|
|
16
|
+
- **Not started:** no roadmap-specific implementation evidence exists.
|
|
17
|
+
- **Deferred:** deliberately outside the release scope and not a release blocker.
|
|
18
|
+
|
|
19
|
+
## Program Outcome
|
|
20
|
+
|
|
21
|
+
V4 must answer four questions:
|
|
22
|
+
|
|
23
|
+
1. Can the system refuse generation when users, tasks, data behavior, recovery, or acceptance
|
|
24
|
+
evidence are materially undefined?
|
|
25
|
+
2. Can it compile validated product intent into an actionable design and implementation plan?
|
|
26
|
+
3. Can it build and repair a coherent task path while preserving truth, accessibility,
|
|
27
|
+
maintainability, responsive behavior, and evidence boundaries?
|
|
28
|
+
4. Do the resulting improvements pass product-specific and held-out checks without copying an
|
|
29
|
+
external design product or modifying a read-only benchmark source?
|
|
30
|
+
|
|
31
|
+
## Roadmap Items
|
|
32
|
+
|
|
33
|
+
### 1. Product Design Brief Contract
|
|
34
|
+
|
|
35
|
+
Status: **Done**
|
|
36
|
+
|
|
37
|
+
Implemented evidence: `knowledge-base/design-intelligence/product-design-brief.md`, the portable
|
|
38
|
+
schema, and the maintained hybrid live/demo template define the version 1.0 intake boundary.
|
|
39
|
+
`src/product-brief/` validates reference integrity, non-agent grounding for primary audiences,
|
|
40
|
+
scope conflicts, task recovery, consequential data boundaries, truthful fallback, derived states,
|
|
41
|
+
responsive platforms and input modes, unresolved assumptions, must-have acceptance coverage,
|
|
42
|
+
accessibility, sensitive-data policy, downstream decisions, placeholders, and generation status.
|
|
43
|
+
|
|
44
|
+
`zz-design validate-brief`, `npm run validate-brief`, and the read-only
|
|
45
|
+
`validate_product_design_brief` MCP tool return the same structured report. MCP paths use realpath
|
|
46
|
+
containment through `ZTOTHEZ_DESIGN_BRIEF_ROOTS` and reports expose only the source filename. Nine
|
|
47
|
+
mutation cases cover invented audiences, missing data, false fallback provenance, missing runtime
|
|
48
|
+
states, unresolved high risk, uncovered requirements, placeholders, incomplete responsive support,
|
|
49
|
+
and sensitive data without policy. The module is routed through `SKILL.md`, BM25 retrieval, exact
|
|
50
|
+
knowledge reads, provenance, package output, CI, and installed-package smoke validation.
|
|
51
|
+
|
|
52
|
+
Create a versioned, machine-readable intake contract for product evidence, audiences, outcomes,
|
|
53
|
+
tasks, data, interface states, platforms, constraints, requirements, assumptions, and acceptance
|
|
54
|
+
criteria. The contract must expose unresolved decisions instead of allowing an agent to invent them.
|
|
55
|
+
|
|
56
|
+
Completion criteria:
|
|
57
|
+
|
|
58
|
+
- A maintained guide, portable schema, and passing template exist.
|
|
59
|
+
- Runtime validation checks reference integrity, scope conflicts, primary-audience evidence,
|
|
60
|
+
critical-task recovery, truthful data handling, required states, unresolved high-risk assumptions,
|
|
61
|
+
and acceptance coverage for every must-have requirement.
|
|
62
|
+
- A CLI command and read-only traversal-protected MCP tool return the same structured report.
|
|
63
|
+
- Positive and mutation-based negative tests cover generation-readiness boundaries.
|
|
64
|
+
- Retrieval, package, provenance, installed-package smoke, and `SKILL.md` routing include the brief.
|
|
65
|
+
|
|
66
|
+
### 2. Design Plan Compiler
|
|
67
|
+
|
|
68
|
+
Status: **Done**
|
|
69
|
+
|
|
70
|
+
Implemented evidence: `src/design-plan/` compiles a generation-ready brief into a version 1.0
|
|
71
|
+
plan with canonical source digest, compiler version, six-level information architecture,
|
|
72
|
+
task-oriented routes, component and state ownership, downstream contract results, semantic token
|
|
73
|
+
roles, responsive behavior, asset policy, staged implementation, verification obligations, and
|
|
74
|
+
brief, standard, or assumption traces. The output has no compilation timestamp or absolute path,
|
|
75
|
+
and repeated compilation of the same brief and compiler version is byte-structure deterministic.
|
|
76
|
+
|
|
77
|
+
`zz-design compile-plan`, `npm run compile-plan`, and read-only MCP tool `compile_design_plan`
|
|
78
|
+
produce the same plan. MCP brief paths use configured-root realpath containment; downstream paths
|
|
79
|
+
must be project-relative and reject traversal and symlink escapes. Draft briefs and invalid existing contracts
|
|
80
|
+
block planning or implementation; planned contracts remain provisional; implementation readiness
|
|
81
|
+
requires all four applicable existing contract validators to pass. The portable schema, maintained
|
|
82
|
+
guide, BM25 retrieval case, provenance, package allowlist, installed-package CLI and MCP smoke, CI
|
|
83
|
+
compilation assertion, and deterministic, mutation, containment, and readiness tests retain the
|
|
84
|
+
completion evidence.
|
|
85
|
+
|
|
86
|
+
Compile a validated brief into an inspectable plan containing information architecture, decision
|
|
87
|
+
hierarchy, routes, component boundaries, state ownership, trust and information contracts, token
|
|
88
|
+
requirements, responsive behavior, assets, implementation stages, and verification obligations.
|
|
89
|
+
|
|
90
|
+
Completion criteria:
|
|
91
|
+
|
|
92
|
+
- Compilation is deterministic for the same brief and tool version.
|
|
93
|
+
- Every plan decision traces to a brief field, approved standard, or explicit agent assumption.
|
|
94
|
+
- Missing evidence produces a blocked or provisional decision rather than invented certainty.
|
|
95
|
+
- Generated plans validate against the existing architecture, trust, information, and design
|
|
96
|
+
contracts before implementation begins.
|
|
97
|
+
|
|
98
|
+
### 3. Production UI Generation Adapters
|
|
99
|
+
|
|
100
|
+
Status: **Done**
|
|
101
|
+
|
|
102
|
+
Implemented a project-owned `react-typescript-vite` adapter and the installed
|
|
103
|
+
`zz-design generate-react` command. The adapter accepts only a validated design plan with
|
|
104
|
+
`implementationReady: true`, creates one absent child directory under an explicit generation root,
|
|
105
|
+
requires a passing portfolio registry, rejects symlinked or escaping targets, and rejects overlap
|
|
106
|
+
with every read-only portfolio root. Writes use an atomic temporary directory and deterministic
|
|
107
|
+
file checksums; rejected runs do not overwrite or partially populate a target.
|
|
108
|
+
|
|
109
|
+
The generated fixture implements one reducer-owned local demonstration task, a preserved-context
|
|
110
|
+
disconnected-source recovery path, semantic CSS tokens, responsive structure, generated unit
|
|
111
|
+
tests, and separate demo, imported, cached, and live disclosures. Unavailable imported, cached, and
|
|
112
|
+
live sources never borrow demonstration values or claim runtime evidence. The portable generation
|
|
113
|
+
manifest and maintained adapter guide define traceability, guarantees, and explicit evidence limits.
|
|
114
|
+
|
|
115
|
+
Qualification covers deterministic generation, implementation-readiness denial, existing-target
|
|
116
|
+
preservation, traversal and symlink containment, portfolio-root denial, absolute-path exclusion,
|
|
117
|
+
zero-warning architecture audit, installed CLI generation, generated dependency installation,
|
|
118
|
+
TypeScript checking, reducer tests, and a production Vite build. MCP remains read-only and exposes
|
|
119
|
+
no generation tool. This item creates independent fixtures only; convention-aware merging into an
|
|
120
|
+
existing repository remains outside adapter version 1.2.1.
|
|
121
|
+
|
|
122
|
+
Implement project-owned generation adapters for an initial React and TypeScript delivery path.
|
|
123
|
+
Adapters must follow an existing target repository's conventions or create a minimal independent
|
|
124
|
+
fixture when no target exists.
|
|
125
|
+
|
|
126
|
+
Completion criteria:
|
|
127
|
+
|
|
128
|
+
- Generated output implements one complete primary task and its recovery path.
|
|
129
|
+
- Components use semantic tokens and explicit domain-state ownership.
|
|
130
|
+
- Demo, imported, cached, and live behavior remain truthfully distinguishable.
|
|
131
|
+
- Generation never runs against read-only portfolio roots and never depends on an external design
|
|
132
|
+
product.
|
|
133
|
+
|
|
134
|
+
### 4. Visual Composition And Asset Pipeline
|
|
135
|
+
|
|
136
|
+
Status: **Done**
|
|
137
|
+
|
|
138
|
+
Implemented evidence: the version 2.1 design-deliverable contract now requires every asset to
|
|
139
|
+
declare purpose and explicit failure behavior in addition to source, rights, and alternatives.
|
|
140
|
+
Rule `ZTDE-DI-310` rejects missing or semantically contradictory asset fallback declarations.
|
|
141
|
+
Declared contrast coverage now binds typography, focus, interaction-state, and chart-series tokens
|
|
142
|
+
to their rendered surfaces in the default mode and every declared color mode; the maintained
|
|
143
|
+
template passes 20 contrast pairs and mutation fixtures exercise missing state and chart coverage.
|
|
144
|
+
|
|
145
|
+
Runtime checks `ZTDE-RUNTIME-020` through `ZTDE-RUNTIME-022` enforce opt-in decision order,
|
|
146
|
+
reachable next action, action and region density limits, purposeful status, evidence-backed visual
|
|
147
|
+
claims, rendered focus, state and chart contrast, and asset metadata. `verify-ui` and
|
|
148
|
+
`verify_ui_runtime` accept explicit light and dark color schemes. The active CI lane captures and
|
|
149
|
+
retains eight screenshots plus the report for the passing composition fixture at 375, 768, 1024,
|
|
150
|
+
and 1440 CSS pixels; a negative fixture proves each new runtime rule fails closed.
|
|
151
|
+
|
|
152
|
+
The version 1.2.1 React adapter emits the composition semantics, keeps context, primary outcome,
|
|
153
|
+
and next action ahead of detailed provenance and supporting information, preserves a compact source
|
|
154
|
+
disclosure beside the action, and passes generated typecheck, reducer tests, production build, 200
|
|
155
|
+
percent text resize, responsive, light, and dark browser verification. It emits no unapproved
|
|
156
|
+
assets and does not invoke an external asset service. Asset creation remains an optional specialized
|
|
157
|
+
stage governed by the maintained provenance contract.
|
|
158
|
+
|
|
159
|
+
Turn visual direction into enforceable composition, typography, density, chart, icon, image, and
|
|
160
|
+
responsive decisions. Asset generation remains a specialized optional stage with provenance,
|
|
161
|
+
license, contrast, and fallback checks.
|
|
162
|
+
|
|
163
|
+
Completion criteria:
|
|
164
|
+
|
|
165
|
+
- Decision-first hierarchy remains measurable at 375, 768, 1024, and 1440 CSS pixels.
|
|
166
|
+
- Theme-specific text, focus, state, and chart contrast pass declared and rendered checks.
|
|
167
|
+
- Assets have purpose, source, rights, alternatives, and failure behavior.
|
|
168
|
+
- Composition checks reject clutter, ornamental status, unsupported visual claims, and hidden next
|
|
169
|
+
actions without enforcing one universal style.
|
|
170
|
+
|
|
171
|
+
### 5. Closed-Loop Verification And Repair
|
|
172
|
+
|
|
173
|
+
Status: **Done**
|
|
174
|
+
|
|
175
|
+
Implemented evidence: `knowledge-base/design-intelligence/closed-loop-repair.md`, the portable
|
|
176
|
+
version 1.0 request schema and maintained template define a finding-bound repair protocol for
|
|
177
|
+
manifest-owned `react-typescript-vite` fixtures. Every finding must resolve uniquely from fresh
|
|
178
|
+
architecture or runtime evidence, bind to an acceptance criterion in the selected profile, declare
|
|
179
|
+
the complete contract, static, browser, and screenshot evidence set, and receive at least one exact
|
|
180
|
+
digest and occurrence-count preconditioned operation. One to three attempts must be declared before
|
|
181
|
+
execution; repair remains CLI-only and MCP remains read-only.
|
|
182
|
+
|
|
183
|
+
`src/repair/` authorizes only real generated targets contained by an explicit generation root and
|
|
184
|
+
separate from every validated portfolio root. It rejects traversal, source or manifest symlinks,
|
|
185
|
+
non-manifest files, remote verification URLs, evidence redirected into the target, stale or
|
|
186
|
+
ambiguous findings, undeclared files, and failed exact preconditions. The runner snapshots regular
|
|
187
|
+
project files, requires the loopback server plan ID to equal the generation manifest before every
|
|
188
|
+
gate, applies only exact replacements, reruns the complete profile quality gate, verifies unchanged
|
|
189
|
+
target plan, route, profile, journeys, viewports, browser and tool versions, checks every screenshot
|
|
190
|
+
digest, and reports whether unrelated files retained their hashes.
|
|
191
|
+
|
|
192
|
+
Repeated finding fingerprints and verification failures stop immediately with an unresolved report
|
|
193
|
+
and byte-for-byte restoration of every operation file. A successful run requires every referenced
|
|
194
|
+
finding to be absent and the full gate to pass. Regression cases cover success with eight before and
|
|
195
|
+
eight after screenshots, repeated-fingerprint rollback, precondition denial without writing,
|
|
196
|
+
attempt bounds, traversal, remote hosts, symlinked evidence redirection, and rejection of invented
|
|
197
|
+
human-attestation fields. A mismatched runtime plan ID is rejected before source mutation. The
|
|
198
|
+
active CI lane compiles a ready synthetic plan, generates, builds, and serves a fresh fixture through
|
|
199
|
+
the production adapter, verifies it against a dedicated synthetic contract, repairs one injected
|
|
200
|
+
static finding, and uploads the complete portable evidence directory. Automated repair always
|
|
201
|
+
reports `humanEvidence: not-generated` and does not authorize release.
|
|
202
|
+
|
|
203
|
+
Connect generation to contract validation, static audit, browser verification, screenshot evidence,
|
|
204
|
+
and bounded remediation. Repairs must target supported findings and preserve unrelated behavior.
|
|
205
|
+
|
|
206
|
+
Completion criteria:
|
|
207
|
+
|
|
208
|
+
- Every repair references a finding, acceptance criterion, expected evidence, and stopping condition.
|
|
209
|
+
- Repeated failure stops with an unresolved report instead of producing uncontrolled rewrites.
|
|
210
|
+
- Before and after evidence preserves viewport, route, state, tool version, and checksum identity.
|
|
211
|
+
- Human evidence is never generated or silently replaced by automated evidence.
|
|
212
|
+
|
|
213
|
+
### 6. Interaction And Recovery Verification
|
|
214
|
+
|
|
215
|
+
Status: **Not started**
|
|
216
|
+
|
|
217
|
+
Expand executable journeys from rendered correctness into task progress, failure recovery, keyboard
|
|
218
|
+
operation, state continuity, export behavior, and offline or disconnected behavior where applicable.
|
|
219
|
+
|
|
220
|
+
Completion criteria:
|
|
221
|
+
|
|
222
|
+
- Primary and recovery journeys have observable start, success, failure, and preserved-state checks.
|
|
223
|
+
- Loading, empty, partial, stale, disconnected, unauthorized, and error states are verified only
|
|
224
|
+
when applicable to the declared brief and data model.
|
|
225
|
+
- Unsupported automation remains a verifier limitation and cannot become a product pass.
|
|
226
|
+
|
|
227
|
+
### 7. Multi-Product Delivery Pilots
|
|
228
|
+
|
|
229
|
+
Status: **Not started**
|
|
230
|
+
|
|
231
|
+
Exercise the V4 workflow on independent, disposable product fixtures derived from owner-authorized
|
|
232
|
+
requirements. Azure Optimizer, SceneStart, and AegisOPS may provide task contracts and baselines,
|
|
233
|
+
but their protected source roots remain read-only.
|
|
234
|
+
|
|
235
|
+
Completion criteria:
|
|
236
|
+
|
|
237
|
+
- At least three product domains complete brief, plan, implementation, and verification stages.
|
|
238
|
+
- Pilot work occurs in repository-owned fixtures or separately authorized development copies.
|
|
239
|
+
- Reports distinguish system defects, product findings, verifier limitations, and source-policy
|
|
240
|
+
restrictions.
|
|
241
|
+
|
|
242
|
+
### 8. Before-And-After And Holdout Evaluation
|
|
243
|
+
|
|
244
|
+
Status: **Not started**
|
|
245
|
+
|
|
246
|
+
Measure whether V4 changes improve task completeness, hierarchy, accessibility, responsiveness,
|
|
247
|
+
truthful disclosure, and maintainability without regressing locked products.
|
|
248
|
+
|
|
249
|
+
Completion criteria:
|
|
250
|
+
|
|
251
|
+
- Baseline and candidate evidence use equivalent tasks, states, routes, and viewports.
|
|
252
|
+
- Existing external human visual findings remain an authoritative V2 calibration input; V4 does not
|
|
253
|
+
require collecting replacement reviews.
|
|
254
|
+
- Candidate rules pass deterministic fixtures and locked holdout evaluation before promotion.
|
|
255
|
+
- Reports preserve disagreement and avoid a single unsupported vanity score.
|
|
256
|
+
|
|
257
|
+
### 9. V4 Qualification And Release
|
|
258
|
+
|
|
259
|
+
Status: **Not started**
|
|
260
|
+
|
|
261
|
+
Qualify the end-to-end workflow in CI and an offline package while keeping private evidence local.
|
|
262
|
+
The planned public application and release website is `ztothez-design-engineering-website`. Keep
|
|
263
|
+
that site separate from the engine package and do not present it as operational or release-ready
|
|
264
|
+
until this item passes.
|
|
265
|
+
|
|
266
|
+
Completion criteria:
|
|
267
|
+
|
|
268
|
+
- CI covers brief rejection, plan traceability, generation containment, repair stopping conditions,
|
|
269
|
+
browser journeys, private-evidence exclusion, and holdout regression.
|
|
270
|
+
- CLI, MCP, installation, migration, and troubleshooting documentation are complete.
|
|
271
|
+
- Package, offline archive, clean-room independence, and installed MCP smoke checks pass.
|
|
272
|
+
- A retained qualification report states only claims supported by executable and human evidence.
|
|
273
|
+
|
|
274
|
+
## Execution Order
|
|
275
|
+
|
|
276
|
+
Implement Item 1 before compilation or generation. Implement Item 2 before Items 3 and 4. Build
|
|
277
|
+
Items 3 through 6 as one bounded loop, then prove generalization through Items 7 and 8. Complete
|
|
278
|
+
Item 9 only after every prior completion criterion has retained evidence.
|
|
279
|
+
|
|
280
|
+
## Current Status
|
|
281
|
+
|
|
282
|
+
Items 1 through 5 are Done. Items 6 through 9 are not started. The next target is Item 6:
|
|
283
|
+
Interaction And Recovery Verification.
|