@libar-dev/architect 1.0.0-pre.3 → 1.0.0-pre.5
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/CHANGELOG.md +1 -1
- package/README.md +5 -5
- package/dist/api/arch-queries.d.ts.map +1 -1
- package/dist/api/context-assembler.d.ts.map +1 -1
- package/dist/api/handoff-generator.d.ts.map +1 -1
- package/dist/api/index.d.ts +8 -8
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +7 -7
- package/dist/api/index.js.map +1 -1
- package/dist/api/{process-state.d.ts → pattern-graph-api.d.ts} +15 -15
- package/dist/api/pattern-graph-api.d.ts.map +1 -0
- package/dist/api/{process-state.js → pattern-graph-api.js} +13 -13
- package/dist/api/pattern-graph-api.js.map +1 -0
- package/dist/api/rules-query.d.ts +6 -6
- package/dist/api/rules-query.d.ts.map +1 -1
- package/dist/api/rules-query.js +4 -4
- package/dist/api/rules-query.js.map +1 -1
- package/dist/api/scope-validator.d.ts.map +1 -1
- package/dist/api/types.d.ts +8 -8
- package/dist/api/types.d.ts.map +1 -1
- package/dist/api/types.js +5 -5
- package/dist/cli/cli-schema.d.ts +3 -4
- package/dist/cli/cli-schema.d.ts.map +1 -1
- package/dist/cli/cli-schema.js +13 -14
- package/dist/cli/cli-schema.js.map +1 -1
- package/dist/cli/output-pipeline.d.ts.map +1 -1
- package/dist/cli/pattern-graph-cli.d.ts.map +1 -0
- package/dist/cli/validate-patterns.d.ts.map +1 -1
- package/dist/generators/built-in/cli-recipe-generator.d.ts +3 -4
- package/dist/generators/built-in/cli-recipe-generator.d.ts.map +1 -1
- package/dist/generators/built-in/cli-recipe-generator.js +6 -7
- package/dist/generators/built-in/cli-recipe-generator.js.map +1 -1
- package/dist/generators/built-in/cli-reference-generator.d.ts +18 -0
- package/dist/generators/built-in/cli-reference-generator.d.ts.map +1 -0
- package/dist/generators/built-in/{process-api-reference-generator.js → cli-reference-generator.js} +13 -13
- package/dist/generators/built-in/cli-reference-generator.js.map +1 -0
- package/dist/generators/built-in/codec-generators.js +12 -12
- package/dist/generators/built-in/codec-generators.js.map +1 -1
- package/dist/generators/built-in/design-review-generator.d.ts.map +1 -1
- package/dist/generators/built-in/reference-generators.d.ts.map +1 -1
- package/dist/generators/codec-based.d.ts.map +1 -1
- package/dist/generators/index.d.ts.map +1 -1
- package/dist/generators/orchestrator.d.ts.map +1 -1
- package/dist/generators/pipeline/build-pipeline.d.ts +17 -14
- package/dist/generators/pipeline/build-pipeline.d.ts.map +1 -1
- package/dist/generators/pipeline/build-pipeline.js +27 -21
- package/dist/generators/pipeline/build-pipeline.js.map +1 -1
- package/dist/generators/pipeline/index.d.ts.map +1 -1
- package/dist/generators/types.d.ts.map +1 -1
- package/dist/mcp/pipeline-session.d.ts.map +1 -1
- package/dist/renderable/codecs/index-codec.d.ts.map +1 -1
- package/dist/renderable/codecs/index-codec.js +54 -28
- package/dist/renderable/codecs/index-codec.js.map +1 -1
- package/docs/ANNOTATION-GUIDE.md +5 -5
- package/docs/ARCHITECTURE.md +79 -79
- package/docs/{PROCESS-API.md → CLI.md} +6 -6
- package/docs/CONFIGURATION.md +2 -2
- package/docs/DOCS-GAP-ANALYSIS.md +65 -65
- package/docs/INDEX.md +34 -34
- package/docs/MCP-SETUP.md +3 -3
- package/docs/METHODOLOGY.md +1 -1
- package/docs/SESSION-GUIDES.md +3 -3
- package/docs/VALIDATION.md +4 -4
- package/docs-live/ARCHITECTURE.md +48 -42
- package/docs-live/BUSINESS-RULES.md +3 -3
- package/docs-live/CHANGELOG-GENERATED.md +109 -103
- package/docs-live/INDEX.md +21 -21
- package/docs-live/PRODUCT-AREAS.md +7 -7
- package/docs-live/TAXONOMY.md +3 -5
- package/docs-live/_claude-md/annotation/annotation-overview.md +1 -1
- package/docs-live/_claude-md/annotation/annotation-reference.md +5 -5
- package/docs-live/_claude-md/architecture/architecture-types.md +4 -4
- package/docs-live/_claude-md/architecture/reference-sample.md +2 -2
- package/docs-live/_claude-md/data-api/data-api-overview.md +2 -2
- package/docs-live/_claude-md/generation/generation-overview.md +15 -15
- package/docs-live/_claude-md/process/process-overview.md +1 -1
- package/docs-live/_claude-md/validation/validation-overview.md +1 -1
- package/docs-live/business-rules/annotation.md +1 -2
- package/docs-live/business-rules/configuration.md +1 -1
- package/docs-live/business-rules/data-api.md +149 -136
- package/docs-live/business-rules/generation.md +172 -20
- package/docs-live/decisions/adr-003-source-first-pattern-architecture.md +1 -1
- package/docs-live/decisions/adr-005-codec-based-markdown-rendering.md +5 -5
- package/docs-live/decisions/adr-006-single-read-model-architecture.md +24 -24
- package/docs-live/product-areas/ANNOTATION.md +19 -9
- package/docs-live/product-areas/CONFIGURATION.md +39 -19
- package/docs-live/product-areas/DATA-API.md +155 -151
- package/docs-live/product-areas/GENERATION.md +159 -144
- package/docs-live/product-areas/PROCESS.md +4 -4
- package/docs-live/product-areas/VALIDATION.md +35 -20
- package/docs-live/reference/ANNOTATION-REFERENCE.md +5 -5
- package/docs-live/reference/ARCHITECTURE-CODECS.md +11 -11
- package/docs-live/reference/ARCHITECTURE-TYPES.md +28 -25
- package/docs-live/reference/{PROCESS-API-RECIPES.md → CLI-RECIPES.md} +11 -11
- package/docs-live/reference/{PROCESS-API-REFERENCE.md → CLI-REFERENCE.md} +2 -2
- package/docs-live/reference/REFERENCE-SAMPLE.md +56 -56
- package/docs-live/reference/SESSION-WORKFLOW-GUIDE.md +3 -3
- package/docs-live/taxonomy/format-types.md +2 -2
- package/docs-live/taxonomy/metadata-tags.md +1 -23
- package/package.json +7 -7
- package/dist/api/arch-queries.d.ts +0 -95
- package/dist/api/arch-queries.js +0 -310
- package/dist/api/arch-queries.js.map +0 -1
- package/dist/api/context-assembler.d.ts +0 -124
- package/dist/api/context-assembler.js +0 -472
- package/dist/api/context-assembler.js.map +0 -1
- package/dist/api/context-formatter.d.ts +0 -26
- package/dist/api/context-formatter.js +0 -183
- package/dist/api/context-formatter.js.map +0 -1
- package/dist/api/coverage-analyzer.d.ts +0 -38
- package/dist/api/coverage-analyzer.d.ts.map +0 -1
- package/dist/api/coverage-analyzer.js +0 -117
- package/dist/api/coverage-analyzer.js.map +0 -1
- package/dist/api/fuzzy-match.d.ts +0 -75
- package/dist/api/fuzzy-match.d.ts.map +0 -1
- package/dist/api/fuzzy-match.js +0 -150
- package/dist/api/fuzzy-match.js.map +0 -1
- package/dist/api/handoff-generator.d.ts +0 -45
- package/dist/api/handoff-generator.js +0 -139
- package/dist/api/handoff-generator.js.map +0 -1
- package/dist/api/pattern-helpers.d.ts +0 -51
- package/dist/api/pattern-helpers.d.ts.map +0 -1
- package/dist/api/pattern-helpers.js +0 -84
- package/dist/api/pattern-helpers.js.map +0 -1
- package/dist/api/process-state.d.ts.map +0 -1
- package/dist/api/process-state.js.map +0 -1
- package/dist/api/scope-validator.d.ts +0 -56
- package/dist/api/scope-validator.js +0 -293
- package/dist/api/scope-validator.js.map +0 -1
- package/dist/api/stub-resolver.d.ts +0 -117
- package/dist/api/stub-resolver.d.ts.map +0 -1
- package/dist/api/stub-resolver.js +0 -154
- package/dist/api/stub-resolver.js.map +0 -1
- package/dist/api/summarize.d.ts +0 -75
- package/dist/api/summarize.d.ts.map +0 -1
- package/dist/api/summarize.js +0 -97
- package/dist/api/summarize.js.map +0 -1
- package/dist/cache/file-cache.d.ts +0 -72
- package/dist/cache/file-cache.d.ts.map +0 -1
- package/dist/cache/file-cache.js +0 -80
- package/dist/cache/file-cache.js.map +0 -1
- package/dist/cache/index.d.ts +0 -5
- package/dist/cache/index.d.ts.map +0 -1
- package/dist/cache/index.js +0 -5
- package/dist/cache/index.js.map +0 -1
- package/dist/cli/dataset-cache.d.ts +0 -66
- package/dist/cli/dataset-cache.js +0 -179
- package/dist/cli/dataset-cache.js.map +0 -1
- package/dist/cli/error-handler.d.ts +0 -84
- package/dist/cli/error-handler.d.ts.map +0 -1
- package/dist/cli/error-handler.js +0 -197
- package/dist/cli/error-handler.js.map +0 -1
- package/dist/cli/generate-docs.d.ts +0 -30
- package/dist/cli/generate-docs.js +0 -370
- package/dist/cli/generate-docs.js.map +0 -1
- package/dist/cli/lint-patterns.d.ts +0 -57
- package/dist/cli/lint-patterns.d.ts.map +0 -1
- package/dist/cli/lint-patterns.js +0 -257
- package/dist/cli/lint-patterns.js.map +0 -1
- package/dist/cli/lint-process.d.ts +0 -54
- package/dist/cli/lint-process.d.ts.map +0 -1
- package/dist/cli/lint-process.js +0 -319
- package/dist/cli/lint-process.js.map +0 -1
- package/dist/cli/lint-steps.d.ts +0 -32
- package/dist/cli/lint-steps.d.ts.map +0 -1
- package/dist/cli/lint-steps.js +0 -172
- package/dist/cli/lint-steps.js.map +0 -1
- package/dist/cli/mcp-server.d.ts +0 -22
- package/dist/cli/mcp-server.js +0 -57
- package/dist/cli/mcp-server.js.map +0 -1
- package/dist/cli/output-pipeline.d.ts +0 -130
- package/dist/cli/output-pipeline.js +0 -234
- package/dist/cli/output-pipeline.js.map +0 -1
- package/dist/cli/process-api.d.ts +0 -37
- package/dist/cli/process-api.d.ts.map +0 -1
- package/dist/cli/process-api.js +0 -1550
- package/dist/cli/process-api.js.map +0 -1
- package/dist/cli/repl.d.ts +0 -38
- package/dist/cli/repl.js +0 -239
- package/dist/cli/repl.js.map +0 -1
- package/dist/cli/validate-patterns.d.ts +0 -115
- package/dist/cli/validate-patterns.js +0 -707
- package/dist/cli/validate-patterns.js.map +0 -1
- package/dist/cli/version.d.ts +0 -35
- package/dist/cli/version.d.ts.map +0 -1
- package/dist/cli/version.js +0 -64
- package/dist/cli/version.js.map +0 -1
- package/dist/config/config-loader.d.ts +0 -167
- package/dist/config/config-loader.d.ts.map +0 -1
- package/dist/config/config-loader.js +0 -294
- package/dist/config/config-loader.js.map +0 -1
- package/dist/config/defaults.d.ts +0 -92
- package/dist/config/defaults.d.ts.map +0 -1
- package/dist/config/defaults.js +0 -103
- package/dist/config/defaults.js.map +0 -1
- package/dist/config/define-config.d.ts +0 -37
- package/dist/config/define-config.d.ts.map +0 -1
- package/dist/config/define-config.js +0 -38
- package/dist/config/define-config.js.map +0 -1
- package/dist/config/factory.d.ts +0 -79
- package/dist/config/factory.d.ts.map +0 -1
- package/dist/config/factory.js +0 -116
- package/dist/config/factory.js.map +0 -1
- package/dist/config/index.d.ts +0 -45
- package/dist/config/index.d.ts.map +0 -1
- package/dist/config/index.js +0 -48
- package/dist/config/index.js.map +0 -1
- package/dist/config/merge-sources.d.ts +0 -47
- package/dist/config/merge-sources.d.ts.map +0 -1
- package/dist/config/merge-sources.js +0 -61
- package/dist/config/merge-sources.js.map +0 -1
- package/dist/config/presets.d.ts +0 -115
- package/dist/config/presets.d.ts.map +0 -1
- package/dist/config/presets.js +0 -119
- package/dist/config/presets.js.map +0 -1
- package/dist/config/project-config-schema.d.ts +0 -192
- package/dist/config/project-config-schema.d.ts.map +0 -1
- package/dist/config/project-config-schema.js +0 -231
- package/dist/config/project-config-schema.js.map +0 -1
- package/dist/config/project-config.d.ts +0 -229
- package/dist/config/project-config.d.ts.map +0 -1
- package/dist/config/project-config.js +0 -37
- package/dist/config/project-config.js.map +0 -1
- package/dist/config/regex-builders.d.ts +0 -49
- package/dist/config/regex-builders.d.ts.map +0 -1
- package/dist/config/regex-builders.js +0 -85
- package/dist/config/regex-builders.js.map +0 -1
- package/dist/config/resolve-config.d.ts +0 -65
- package/dist/config/resolve-config.d.ts.map +0 -1
- package/dist/config/resolve-config.js +0 -150
- package/dist/config/resolve-config.js.map +0 -1
- package/dist/config/types.d.ts +0 -81
- package/dist/config/types.d.ts.map +0 -1
- package/dist/config/types.js +0 -22
- package/dist/config/types.js.map +0 -1
- package/dist/config/workflow-loader.d.ts +0 -90
- package/dist/config/workflow-loader.d.ts.map +0 -1
- package/dist/config/workflow-loader.js +0 -167
- package/dist/config/workflow-loader.js.map +0 -1
- package/dist/extractor/doc-extractor.d.ts +0 -233
- package/dist/extractor/doc-extractor.d.ts.map +0 -1
- package/dist/extractor/doc-extractor.js +0 -481
- package/dist/extractor/doc-extractor.js.map +0 -1
- package/dist/extractor/dual-source-extractor.d.ts +0 -161
- package/dist/extractor/dual-source-extractor.d.ts.map +0 -1
- package/dist/extractor/dual-source-extractor.js +0 -407
- package/dist/extractor/dual-source-extractor.js.map +0 -1
- package/dist/extractor/gherkin-extractor.d.ts +0 -170
- package/dist/extractor/gherkin-extractor.d.ts.map +0 -1
- package/dist/extractor/gherkin-extractor.js +0 -543
- package/dist/extractor/gherkin-extractor.js.map +0 -1
- package/dist/extractor/index.d.ts +0 -7
- package/dist/extractor/index.d.ts.map +0 -1
- package/dist/extractor/index.js +0 -11
- package/dist/extractor/index.js.map +0 -1
- package/dist/extractor/layer-inference.d.ts +0 -66
- package/dist/extractor/layer-inference.d.ts.map +0 -1
- package/dist/extractor/layer-inference.js +0 -93
- package/dist/extractor/layer-inference.js.map +0 -1
- package/dist/extractor/shape-extractor.d.ts +0 -79
- package/dist/extractor/shape-extractor.d.ts.map +0 -1
- package/dist/extractor/shape-extractor.js +0 -966
- package/dist/extractor/shape-extractor.js.map +0 -1
- package/dist/generators/built-in/codec-generators.d.ts +0 -29
- package/dist/generators/built-in/decision-doc-generator.d.ts +0 -204
- package/dist/generators/built-in/decision-doc-generator.js +0 -654
- package/dist/generators/built-in/decision-doc-generator.js.map +0 -1
- package/dist/generators/built-in/design-review-generator.d.ts +0 -26
- package/dist/generators/built-in/design-review-generator.js +0 -94
- package/dist/generators/built-in/design-review-generator.js.map +0 -1
- package/dist/generators/built-in/index.d.ts +0 -22
- package/dist/generators/built-in/index.js +0 -23
- package/dist/generators/built-in/index.js.map +0 -1
- package/dist/generators/built-in/process-api-reference-generator.d.ts +0 -18
- package/dist/generators/built-in/process-api-reference-generator.d.ts.map +0 -1
- package/dist/generators/built-in/process-api-reference-generator.js.map +0 -1
- package/dist/generators/built-in/reference-generators.d.ts +0 -51
- package/dist/generators/built-in/reference-generators.js +0 -320
- package/dist/generators/built-in/reference-generators.js.map +0 -1
- package/dist/generators/codec-based.d.ts +0 -63
- package/dist/generators/codec-based.js +0 -88
- package/dist/generators/codec-based.js.map +0 -1
- package/dist/generators/content-deduplicator.d.ts +0 -114
- package/dist/generators/content-deduplicator.d.ts.map +0 -1
- package/dist/generators/content-deduplicator.js +0 -356
- package/dist/generators/content-deduplicator.js.map +0 -1
- package/dist/generators/index.d.ts +0 -50
- package/dist/generators/index.js +0 -54
- package/dist/generators/index.js.map +0 -1
- package/dist/generators/orchestrator.d.ts +0 -265
- package/dist/generators/orchestrator.js +0 -570
- package/dist/generators/orchestrator.js.map +0 -1
- package/dist/generators/pipeline/context-inference.d.ts +0 -55
- package/dist/generators/pipeline/context-inference.d.ts.map +0 -1
- package/dist/generators/pipeline/context-inference.js +0 -76
- package/dist/generators/pipeline/context-inference.js.map +0 -1
- package/dist/generators/pipeline/index.d.ts +0 -27
- package/dist/generators/pipeline/index.js +0 -34
- package/dist/generators/pipeline/index.js.map +0 -1
- package/dist/generators/pipeline/merge-patterns.d.ts +0 -33
- package/dist/generators/pipeline/merge-patterns.d.ts.map +0 -1
- package/dist/generators/pipeline/merge-patterns.js +0 -50
- package/dist/generators/pipeline/merge-patterns.js.map +0 -1
- package/dist/generators/pipeline/relationship-resolver.d.ts +0 -47
- package/dist/generators/pipeline/relationship-resolver.d.ts.map +0 -1
- package/dist/generators/pipeline/relationship-resolver.js +0 -132
- package/dist/generators/pipeline/relationship-resolver.js.map +0 -1
- package/dist/generators/pipeline/sequence-utils.d.ts +0 -49
- package/dist/generators/pipeline/sequence-utils.d.ts.map +0 -1
- package/dist/generators/pipeline/sequence-utils.js +0 -235
- package/dist/generators/pipeline/sequence-utils.js.map +0 -1
- package/dist/generators/pipeline/transform-dataset.d.ts +0 -82
- package/dist/generators/pipeline/transform-dataset.d.ts.map +0 -1
- package/dist/generators/pipeline/transform-dataset.js +0 -355
- package/dist/generators/pipeline/transform-dataset.js.map +0 -1
- package/dist/generators/pipeline/transform-types.d.ts +0 -96
- package/dist/generators/pipeline/transform-types.d.ts.map +0 -1
- package/dist/generators/pipeline/transform-types.js +0 -18
- package/dist/generators/pipeline/transform-types.js.map +0 -1
- package/dist/generators/registry.d.ts +0 -64
- package/dist/generators/registry.js +0 -77
- package/dist/generators/registry.js.map +0 -1
- package/dist/generators/source-mapper.d.ts +0 -143
- package/dist/generators/source-mapper.d.ts.map +0 -1
- package/dist/generators/source-mapper.js +0 -602
- package/dist/generators/source-mapper.js.map +0 -1
- package/dist/generators/source-mapping-validator.d.ts +0 -118
- package/dist/generators/source-mapping-validator.d.ts.map +0 -1
- package/dist/generators/source-mapping-validator.js +0 -334
- package/dist/generators/source-mapping-validator.js.map +0 -1
- package/dist/generators/types.d.ts +0 -104
- package/dist/generators/types.js +0 -5
- package/dist/generators/types.js.map +0 -1
- package/dist/generators/warning-collector.d.ts +0 -144
- package/dist/generators/warning-collector.d.ts.map +0 -1
- package/dist/generators/warning-collector.js +0 -166
- package/dist/generators/warning-collector.js.map +0 -1
- package/dist/git/branch-diff.d.ts +0 -44
- package/dist/git/branch-diff.d.ts.map +0 -1
- package/dist/git/branch-diff.js +0 -57
- package/dist/git/branch-diff.js.map +0 -1
- package/dist/git/helpers.d.ts +0 -46
- package/dist/git/helpers.d.ts.map +0 -1
- package/dist/git/helpers.js +0 -67
- package/dist/git/helpers.js.map +0 -1
- package/dist/git/index.d.ts +0 -18
- package/dist/git/index.d.ts.map +0 -1
- package/dist/git/index.js +0 -18
- package/dist/git/index.js.map +0 -1
- package/dist/git/name-status.d.ts +0 -32
- package/dist/git/name-status.d.ts.map +0 -1
- package/dist/git/name-status.js +0 -66
- package/dist/git/name-status.js.map +0 -1
- package/dist/index.d.ts +0 -107
- package/dist/index.js +0 -122
- package/dist/index.js.map +0 -1
- package/dist/lint/engine.d.ts +0 -113
- package/dist/lint/engine.d.ts.map +0 -1
- package/dist/lint/engine.js +0 -228
- package/dist/lint/engine.js.map +0 -1
- package/dist/lint/index.d.ts +0 -26
- package/dist/lint/index.d.ts.map +0 -1
- package/dist/lint/index.js +0 -24
- package/dist/lint/index.js.map +0 -1
- package/dist/lint/process-guard/decider.d.ts +0 -166
- package/dist/lint/process-guard/decider.d.ts.map +0 -1
- package/dist/lint/process-guard/decider.js +0 -412
- package/dist/lint/process-guard/decider.js.map +0 -1
- package/dist/lint/process-guard/derive-state.d.ts +0 -96
- package/dist/lint/process-guard/derive-state.d.ts.map +0 -1
- package/dist/lint/process-guard/derive-state.js +0 -368
- package/dist/lint/process-guard/derive-state.js.map +0 -1
- package/dist/lint/process-guard/detect-changes.d.ts +0 -109
- package/dist/lint/process-guard/detect-changes.d.ts.map +0 -1
- package/dist/lint/process-guard/detect-changes.js +0 -487
- package/dist/lint/process-guard/detect-changes.js.map +0 -1
- package/dist/lint/process-guard/index.d.ts +0 -35
- package/dist/lint/process-guard/index.d.ts.map +0 -1
- package/dist/lint/process-guard/index.js +0 -39
- package/dist/lint/process-guard/index.js.map +0 -1
- package/dist/lint/process-guard/types.d.ts +0 -255
- package/dist/lint/process-guard/types.d.ts.map +0 -1
- package/dist/lint/process-guard/types.js +0 -31
- package/dist/lint/process-guard/types.js.map +0 -1
- package/dist/lint/rules.d.ts +0 -147
- package/dist/lint/rules.d.ts.map +0 -1
- package/dist/lint/rules.js +0 -289
- package/dist/lint/rules.js.map +0 -1
- package/dist/lint/steps/cross-checks.d.ts +0 -66
- package/dist/lint/steps/cross-checks.d.ts.map +0 -1
- package/dist/lint/steps/cross-checks.js +0 -290
- package/dist/lint/steps/cross-checks.js.map +0 -1
- package/dist/lint/steps/feature-checks.d.ts +0 -78
- package/dist/lint/steps/feature-checks.d.ts.map +0 -1
- package/dist/lint/steps/feature-checks.js +0 -279
- package/dist/lint/steps/feature-checks.js.map +0 -1
- package/dist/lint/steps/index.d.ts +0 -22
- package/dist/lint/steps/index.d.ts.map +0 -1
- package/dist/lint/steps/index.js +0 -26
- package/dist/lint/steps/index.js.map +0 -1
- package/dist/lint/steps/pair-resolver.d.ts +0 -29
- package/dist/lint/steps/pair-resolver.d.ts.map +0 -1
- package/dist/lint/steps/pair-resolver.js +0 -76
- package/dist/lint/steps/pair-resolver.js.map +0 -1
- package/dist/lint/steps/runner.d.ts +0 -28
- package/dist/lint/steps/runner.d.ts.map +0 -1
- package/dist/lint/steps/runner.js +0 -143
- package/dist/lint/steps/runner.js.map +0 -1
- package/dist/lint/steps/step-checks.d.ts +0 -41
- package/dist/lint/steps/step-checks.d.ts.map +0 -1
- package/dist/lint/steps/step-checks.js +0 -164
- package/dist/lint/steps/step-checks.js.map +0 -1
- package/dist/lint/steps/types.d.ts +0 -95
- package/dist/lint/steps/types.d.ts.map +0 -1
- package/dist/lint/steps/types.js +0 -79
- package/dist/lint/steps/types.js.map +0 -1
- package/dist/lint/steps/utils.d.ts +0 -22
- package/dist/lint/steps/utils.d.ts.map +0 -1
- package/dist/lint/steps/utils.js +0 -57
- package/dist/lint/steps/utils.js.map +0 -1
- package/dist/mcp/file-watcher.d.ts +0 -24
- package/dist/mcp/file-watcher.js +0 -75
- package/dist/mcp/file-watcher.js.map +0 -1
- package/dist/mcp/index.d.ts +0 -19
- package/dist/mcp/index.js +0 -21
- package/dist/mcp/index.js.map +0 -1
- package/dist/mcp/pipeline-session.d.ts +0 -33
- package/dist/mcp/pipeline-session.js +0 -149
- package/dist/mcp/pipeline-session.js.map +0 -1
- package/dist/mcp/server.d.ts +0 -28
- package/dist/mcp/server.js +0 -197
- package/dist/mcp/server.js.map +0 -1
- package/dist/mcp/tool-registry.d.ts +0 -4
- package/dist/mcp/tool-registry.js +0 -525
- package/dist/mcp/tool-registry.js.map +0 -1
- package/dist/renderable/codecs/adr.d.ts +0 -4730
- package/dist/renderable/codecs/adr.d.ts.map +0 -1
- package/dist/renderable/codecs/adr.js +0 -590
- package/dist/renderable/codecs/adr.js.map +0 -1
- package/dist/renderable/codecs/architecture.d.ts +0 -4760
- package/dist/renderable/codecs/architecture.d.ts.map +0 -1
- package/dist/renderable/codecs/architecture.js +0 -524
- package/dist/renderable/codecs/architecture.js.map +0 -1
- package/dist/renderable/codecs/business-rules.d.ts +0 -4777
- package/dist/renderable/codecs/business-rules.d.ts.map +0 -1
- package/dist/renderable/codecs/business-rules.js +0 -648
- package/dist/renderable/codecs/business-rules.js.map +0 -1
- package/dist/renderable/codecs/claude-module.d.ts +0 -4710
- package/dist/renderable/codecs/claude-module.d.ts.map +0 -1
- package/dist/renderable/codecs/claude-module.js +0 -214
- package/dist/renderable/codecs/claude-module.js.map +0 -1
- package/dist/renderable/codecs/composite.d.ts +0 -84
- package/dist/renderable/codecs/composite.d.ts.map +0 -1
- package/dist/renderable/codecs/composite.js +0 -124
- package/dist/renderable/codecs/composite.js.map +0 -1
- package/dist/renderable/codecs/convention-extractor.d.ts +0 -105
- package/dist/renderable/codecs/convention-extractor.d.ts.map +0 -1
- package/dist/renderable/codecs/convention-extractor.js +0 -353
- package/dist/renderable/codecs/convention-extractor.js.map +0 -1
- package/dist/renderable/codecs/decision-doc.d.ts +0 -308
- package/dist/renderable/codecs/decision-doc.d.ts.map +0 -1
- package/dist/renderable/codecs/decision-doc.js +0 -485
- package/dist/renderable/codecs/decision-doc.js.map +0 -1
- package/dist/renderable/codecs/design-review.d.ts +0 -55
- package/dist/renderable/codecs/design-review.d.ts.map +0 -1
- package/dist/renderable/codecs/design-review.js +0 -532
- package/dist/renderable/codecs/design-review.js.map +0 -1
- package/dist/renderable/codecs/diagram-utils.d.ts +0 -62
- package/dist/renderable/codecs/diagram-utils.d.ts.map +0 -1
- package/dist/renderable/codecs/diagram-utils.js +0 -70
- package/dist/renderable/codecs/diagram-utils.js.map +0 -1
- package/dist/renderable/codecs/helpers.d.ts +0 -553
- package/dist/renderable/codecs/helpers.d.ts.map +0 -1
- package/dist/renderable/codecs/helpers.js +0 -913
- package/dist/renderable/codecs/helpers.js.map +0 -1
- package/dist/renderable/codecs/index-codec.d.ts +0 -4714
- package/dist/renderable/codecs/index.d.ts +0 -46
- package/dist/renderable/codecs/index.d.ts.map +0 -1
- package/dist/renderable/codecs/index.js +0 -70
- package/dist/renderable/codecs/index.js.map +0 -1
- package/dist/renderable/codecs/patterns.d.ts +0 -4757
- package/dist/renderable/codecs/patterns.d.ts.map +0 -1
- package/dist/renderable/codecs/patterns.js +0 -462
- package/dist/renderable/codecs/patterns.js.map +0 -1
- package/dist/renderable/codecs/planning.d.ts +0 -14055
- package/dist/renderable/codecs/planning.d.ts.map +0 -1
- package/dist/renderable/codecs/planning.js +0 -449
- package/dist/renderable/codecs/planning.js.map +0 -1
- package/dist/renderable/codecs/pr-changes.d.ts +0 -4742
- package/dist/renderable/codecs/pr-changes.d.ts.map +0 -1
- package/dist/renderable/codecs/pr-changes.js +0 -425
- package/dist/renderable/codecs/pr-changes.js.map +0 -1
- package/dist/renderable/codecs/reference.d.ts +0 -215
- package/dist/renderable/codecs/reference.d.ts.map +0 -1
- package/dist/renderable/codecs/reference.js +0 -1578
- package/dist/renderable/codecs/reference.js.map +0 -1
- package/dist/renderable/codecs/reporting.d.ts +0 -14026
- package/dist/renderable/codecs/reporting.d.ts.map +0 -1
- package/dist/renderable/codecs/reporting.js +0 -365
- package/dist/renderable/codecs/reporting.js.map +0 -1
- package/dist/renderable/codecs/requirements.d.ts +0 -4743
- package/dist/renderable/codecs/requirements.d.ts.map +0 -1
- package/dist/renderable/codecs/requirements.js +0 -428
- package/dist/renderable/codecs/requirements.js.map +0 -1
- package/dist/renderable/codecs/session.d.ts +0 -9410
- package/dist/renderable/codecs/session.d.ts.map +0 -1
- package/dist/renderable/codecs/session.js +0 -848
- package/dist/renderable/codecs/session.js.map +0 -1
- package/dist/renderable/codecs/shape-matcher.d.ts +0 -54
- package/dist/renderable/codecs/shape-matcher.d.ts.map +0 -1
- package/dist/renderable/codecs/shape-matcher.js +0 -106
- package/dist/renderable/codecs/shape-matcher.js.map +0 -1
- package/dist/renderable/codecs/shared-schema.d.ts +0 -44
- package/dist/renderable/codecs/shared-schema.d.ts.map +0 -1
- package/dist/renderable/codecs/shared-schema.js +0 -43
- package/dist/renderable/codecs/shared-schema.js.map +0 -1
- package/dist/renderable/codecs/taxonomy.d.ts +0 -4733
- package/dist/renderable/codecs/taxonomy.d.ts.map +0 -1
- package/dist/renderable/codecs/taxonomy.js +0 -570
- package/dist/renderable/codecs/taxonomy.js.map +0 -1
- package/dist/renderable/codecs/timeline.d.ts +0 -14094
- package/dist/renderable/codecs/timeline.d.ts.map +0 -1
- package/dist/renderable/codecs/timeline.js +0 -906
- package/dist/renderable/codecs/timeline.js.map +0 -1
- package/dist/renderable/codecs/types/base.d.ts +0 -81
- package/dist/renderable/codecs/types/base.d.ts.map +0 -1
- package/dist/renderable/codecs/types/base.js +0 -56
- package/dist/renderable/codecs/types/base.js.map +0 -1
- package/dist/renderable/codecs/types/index.d.ts +0 -5
- package/dist/renderable/codecs/types/index.d.ts.map +0 -1
- package/dist/renderable/codecs/types/index.js +0 -5
- package/dist/renderable/codecs/types/index.js.map +0 -1
- package/dist/renderable/codecs/validation-rules.d.ts +0 -4773
- package/dist/renderable/codecs/validation-rules.d.ts.map +0 -1
- package/dist/renderable/codecs/validation-rules.js +0 -537
- package/dist/renderable/codecs/validation-rules.js.map +0 -1
- package/dist/renderable/generate.d.ts +0 -338
- package/dist/renderable/generate.d.ts.map +0 -1
- package/dist/renderable/generate.js +0 -437
- package/dist/renderable/generate.js.map +0 -1
- package/dist/renderable/index.d.ts +0 -36
- package/dist/renderable/index.d.ts.map +0 -1
- package/dist/renderable/index.js +0 -58
- package/dist/renderable/index.js.map +0 -1
- package/dist/renderable/load-preamble.d.ts +0 -56
- package/dist/renderable/load-preamble.d.ts.map +0 -1
- package/dist/renderable/load-preamble.js +0 -298
- package/dist/renderable/load-preamble.js.map +0 -1
- package/dist/renderable/render.d.ts +0 -61
- package/dist/renderable/render.d.ts.map +0 -1
- package/dist/renderable/render.js +0 -346
- package/dist/renderable/render.js.map +0 -1
- package/dist/renderable/schema.d.ts +0 -194
- package/dist/renderable/schema.d.ts.map +0 -1
- package/dist/renderable/schema.js +0 -197
- package/dist/renderable/schema.js.map +0 -1
- package/dist/renderable/utils.d.ts +0 -146
- package/dist/renderable/utils.d.ts.map +0 -1
- package/dist/renderable/utils.js +0 -362
- package/dist/renderable/utils.js.map +0 -1
- package/dist/scanner/ast-parser.d.ts +0 -75
- package/dist/scanner/ast-parser.d.ts.map +0 -1
- package/dist/scanner/ast-parser.js +0 -835
- package/dist/scanner/ast-parser.js.map +0 -1
- package/dist/scanner/gherkin-ast-parser.d.ts +0 -166
- package/dist/scanner/gherkin-ast-parser.d.ts.map +0 -1
- package/dist/scanner/gherkin-ast-parser.js +0 -507
- package/dist/scanner/gherkin-ast-parser.js.map +0 -1
- package/dist/scanner/gherkin-scanner.d.ts +0 -106
- package/dist/scanner/gherkin-scanner.d.ts.map +0 -1
- package/dist/scanner/gherkin-scanner.js +0 -149
- package/dist/scanner/gherkin-scanner.js.map +0 -1
- package/dist/scanner/index.d.ts +0 -85
- package/dist/scanner/index.d.ts.map +0 -1
- package/dist/scanner/index.js +0 -102
- package/dist/scanner/index.js.map +0 -1
- package/dist/scanner/pattern-scanner.d.ts +0 -83
- package/dist/scanner/pattern-scanner.d.ts.map +0 -1
- package/dist/scanner/pattern-scanner.js +0 -110
- package/dist/scanner/pattern-scanner.js.map +0 -1
- package/dist/taxonomy/categories.d.ts +0 -47
- package/dist/taxonomy/categories.d.ts.map +0 -1
- package/dist/taxonomy/categories.js +0 -175
- package/dist/taxonomy/categories.js.map +0 -1
- package/dist/taxonomy/claude-section-values.d.ts +0 -12
- package/dist/taxonomy/claude-section-values.d.ts.map +0 -1
- package/dist/taxonomy/claude-section-values.js +0 -17
- package/dist/taxonomy/claude-section-values.js.map +0 -1
- package/dist/taxonomy/conventions.d.ts +0 -13
- package/dist/taxonomy/conventions.d.ts.map +0 -1
- package/dist/taxonomy/conventions.js +0 -27
- package/dist/taxonomy/conventions.js.map +0 -1
- package/dist/taxonomy/deliverable-status.d.ts +0 -99
- package/dist/taxonomy/deliverable-status.d.ts.map +0 -1
- package/dist/taxonomy/deliverable-status.js +0 -131
- package/dist/taxonomy/deliverable-status.js.map +0 -1
- package/dist/taxonomy/format-types.d.ts +0 -17
- package/dist/taxonomy/format-types.d.ts.map +0 -1
- package/dist/taxonomy/format-types.js +0 -23
- package/dist/taxonomy/format-types.js.map +0 -1
- package/dist/taxonomy/generator-options.d.ts +0 -67
- package/dist/taxonomy/generator-options.d.ts.map +0 -1
- package/dist/taxonomy/generator-options.js +0 -75
- package/dist/taxonomy/generator-options.js.map +0 -1
- package/dist/taxonomy/hierarchy-levels.d.ts +0 -23
- package/dist/taxonomy/hierarchy-levels.d.ts.map +0 -1
- package/dist/taxonomy/hierarchy-levels.js +0 -22
- package/dist/taxonomy/hierarchy-levels.js.map +0 -1
- package/dist/taxonomy/index.d.ts +0 -35
- package/dist/taxonomy/index.d.ts.map +0 -1
- package/dist/taxonomy/index.js +0 -56
- package/dist/taxonomy/index.js.map +0 -1
- package/dist/taxonomy/layer-types.d.ts +0 -22
- package/dist/taxonomy/layer-types.d.ts.map +0 -1
- package/dist/taxonomy/layer-types.js +0 -28
- package/dist/taxonomy/layer-types.js.map +0 -1
- package/dist/taxonomy/normalized-status.d.ts +0 -99
- package/dist/taxonomy/normalized-status.d.ts.map +0 -1
- package/dist/taxonomy/normalized-status.js +0 -113
- package/dist/taxonomy/normalized-status.js.map +0 -1
- package/dist/taxonomy/registry-builder.d.ts +0 -104
- package/dist/taxonomy/registry-builder.d.ts.map +0 -1
- package/dist/taxonomy/registry-builder.js +0 -561
- package/dist/taxonomy/registry-builder.js.map +0 -1
- package/dist/taxonomy/risk-levels.d.ts +0 -16
- package/dist/taxonomy/risk-levels.d.ts.map +0 -1
- package/dist/taxonomy/risk-levels.js +0 -15
- package/dist/taxonomy/risk-levels.js.map +0 -1
- package/dist/taxonomy/severity-types.d.ts +0 -6
- package/dist/taxonomy/severity-types.d.ts.map +0 -1
- package/dist/taxonomy/severity-types.js +0 -5
- package/dist/taxonomy/severity-types.js.map +0 -1
- package/dist/taxonomy/status-values.d.ts +0 -39
- package/dist/taxonomy/status-values.d.ts.map +0 -1
- package/dist/taxonomy/status-values.js +0 -42
- package/dist/taxonomy/status-values.js.map +0 -1
- package/dist/types/branded.d.ts +0 -89
- package/dist/types/branded.d.ts.map +0 -1
- package/dist/types/branded.js +0 -57
- package/dist/types/branded.js.map +0 -1
- package/dist/types/errors.d.ts +0 -342
- package/dist/types/errors.d.ts.map +0 -1
- package/dist/types/errors.js +0 -251
- package/dist/types/errors.js.map +0 -1
- package/dist/types/index.d.ts +0 -41
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -5
- package/dist/types/index.js.map +0 -1
- package/dist/types/result.d.ts +0 -78
- package/dist/types/result.d.ts.map +0 -1
- package/dist/types/result.js +0 -78
- package/dist/types/result.js.map +0 -1
- package/dist/utils/collection-utils.d.ts +0 -49
- package/dist/utils/collection-utils.d.ts.map +0 -1
- package/dist/utils/collection-utils.js +0 -58
- package/dist/utils/collection-utils.js.map +0 -1
- package/dist/utils/id-utils.d.ts +0 -46
- package/dist/utils/id-utils.d.ts.map +0 -1
- package/dist/utils/id-utils.js +0 -51
- package/dist/utils/id-utils.js.map +0 -1
- package/dist/utils/index.d.ts +0 -21
- package/dist/utils/index.d.ts.map +0 -1
- package/dist/utils/index.js +0 -21
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/string-utils.d.ts +0 -150
- package/dist/utils/string-utils.d.ts.map +0 -1
- package/dist/utils/string-utils.js +0 -281
- package/dist/utils/string-utils.js.map +0 -1
- package/dist/validation/anti-patterns.d.ts +0 -134
- package/dist/validation/anti-patterns.d.ts.map +0 -1
- package/dist/validation/anti-patterns.js +0 -307
- package/dist/validation/anti-patterns.js.map +0 -1
- package/dist/validation/dod-validator.d.ts +0 -94
- package/dist/validation/dod-validator.d.ts.map +0 -1
- package/dist/validation/dod-validator.js +0 -198
- package/dist/validation/dod-validator.js.map +0 -1
- package/dist/validation/fsm/index.d.ts +0 -59
- package/dist/validation/fsm/index.d.ts.map +0 -1
- package/dist/validation/fsm/index.js +0 -64
- package/dist/validation/fsm/index.js.map +0 -1
- package/dist/validation/fsm/states.d.ts +0 -93
- package/dist/validation/fsm/states.d.ts.map +0 -1
- package/dist/validation/fsm/states.js +0 -98
- package/dist/validation/fsm/states.js.map +0 -1
- package/dist/validation/fsm/transitions.d.ts +0 -100
- package/dist/validation/fsm/transitions.d.ts.map +0 -1
- package/dist/validation/fsm/transitions.js +0 -122
- package/dist/validation/fsm/transitions.js.map +0 -1
- package/dist/validation/fsm/validator.d.ts +0 -163
- package/dist/validation/fsm/validator.d.ts.map +0 -1
- package/dist/validation/fsm/validator.js +0 -205
- package/dist/validation/fsm/validator.js.map +0 -1
- package/dist/validation/index.d.ts +0 -23
- package/dist/validation/index.d.ts.map +0 -1
- package/dist/validation/index.js +0 -25
- package/dist/validation/index.js.map +0 -1
- package/dist/validation/types.d.ts +0 -136
- package/dist/validation/types.d.ts.map +0 -1
- package/dist/validation/types.js +0 -56
- package/dist/validation/types.js.map +0 -1
- package/dist/validation-schemas/codec-utils.d.ts +0 -188
- package/dist/validation-schemas/codec-utils.d.ts.map +0 -1
- package/dist/validation-schemas/codec-utils.js +0 -258
- package/dist/validation-schemas/codec-utils.js.map +0 -1
- package/dist/validation-schemas/config.d.ts +0 -99
- package/dist/validation-schemas/config.d.ts.map +0 -1
- package/dist/validation-schemas/config.js +0 -178
- package/dist/validation-schemas/config.js.map +0 -1
- package/dist/validation-schemas/doc-directive.d.ts +0 -195
- package/dist/validation-schemas/doc-directive.d.ts.map +0 -1
- package/dist/validation-schemas/doc-directive.js +0 -239
- package/dist/validation-schemas/doc-directive.js.map +0 -1
- package/dist/validation-schemas/dual-source.d.ts +0 -167
- package/dist/validation-schemas/dual-source.d.ts.map +0 -1
- package/dist/validation-schemas/dual-source.js +0 -168
- package/dist/validation-schemas/dual-source.js.map +0 -1
- package/dist/validation-schemas/export-info.d.ts +0 -53
- package/dist/validation-schemas/export-info.d.ts.map +0 -1
- package/dist/validation-schemas/export-info.js +0 -101
- package/dist/validation-schemas/export-info.js.map +0 -1
- package/dist/validation-schemas/extracted-pattern.d.ts +0 -351
- package/dist/validation-schemas/extracted-pattern.d.ts.map +0 -1
- package/dist/validation-schemas/extracted-pattern.js +0 -459
- package/dist/validation-schemas/extracted-pattern.js.map +0 -1
- package/dist/validation-schemas/extracted-shape.d.ts +0 -200
- package/dist/validation-schemas/extracted-shape.d.ts.map +0 -1
- package/dist/validation-schemas/extracted-shape.js +0 -182
- package/dist/validation-schemas/extracted-shape.js.map +0 -1
- package/dist/validation-schemas/feature.d.ts +0 -554
- package/dist/validation-schemas/feature.d.ts.map +0 -1
- package/dist/validation-schemas/feature.js +0 -262
- package/dist/validation-schemas/feature.js.map +0 -1
- package/dist/validation-schemas/index.d.ts +0 -15
- package/dist/validation-schemas/index.d.ts.map +0 -1
- package/dist/validation-schemas/index.js +0 -32
- package/dist/validation-schemas/index.js.map +0 -1
- package/dist/validation-schemas/lint.d.ts +0 -46
- package/dist/validation-schemas/lint.d.ts.map +0 -1
- package/dist/validation-schemas/lint.js +0 -45
- package/dist/validation-schemas/lint.js.map +0 -1
- package/dist/validation-schemas/master-dataset.d.ts +0 -8299
- package/dist/validation-schemas/master-dataset.d.ts.map +0 -1
- package/dist/validation-schemas/master-dataset.js +0 -275
- package/dist/validation-schemas/master-dataset.js.map +0 -1
- package/dist/validation-schemas/output-schemas.d.ts +0 -183
- package/dist/validation-schemas/output-schemas.d.ts.map +0 -1
- package/dist/validation-schemas/output-schemas.js +0 -149
- package/dist/validation-schemas/output-schemas.js.map +0 -1
- package/dist/validation-schemas/scenario-ref.d.ts +0 -80
- package/dist/validation-schemas/scenario-ref.d.ts.map +0 -1
- package/dist/validation-schemas/scenario-ref.js +0 -73
- package/dist/validation-schemas/scenario-ref.js.map +0 -1
- package/dist/validation-schemas/tag-registry.d.ts +0 -210
- package/dist/validation-schemas/tag-registry.d.ts.map +0 -1
- package/dist/validation-schemas/tag-registry.js +0 -248
- package/dist/validation-schemas/tag-registry.js.map +0 -1
- package/dist/validation-schemas/workflow-config.d.ts +0 -125
- package/dist/validation-schemas/workflow-config.d.ts.map +0 -1
- package/dist/validation-schemas/workflow-config.js +0 -138
- package/dist/validation-schemas/workflow-config.js.map +0 -1
|
@@ -236,7 +236,7 @@ graph LR
|
|
|
236
236
|
ValidatorReadModelConsolidation["ValidatorReadModelConsolidation"]
|
|
237
237
|
StepDefinitionCompletion["StepDefinitionCompletion"]
|
|
238
238
|
SessionFileCleanup["SessionFileCleanup"]
|
|
239
|
-
|
|
239
|
+
PatternGraphLayeredExtraction["PatternGraphLayeredExtraction"]
|
|
240
240
|
OrchestratorPipelineFactoryMigration["OrchestratorPipelineFactoryMigration"]
|
|
241
241
|
MvpWorkflowImplementation["MvpWorkflowImplementation"]
|
|
242
242
|
LivingRoadmapCLI["LivingRoadmapCLI"]
|
|
@@ -252,8 +252,8 @@ graph LR
|
|
|
252
252
|
ValidatorReadModelConsolidation -.->|depends on| ADR006SingleReadModelArchitecture
|
|
253
253
|
StepDefinitionCompletion -.->|depends on| ADR002GherkinOnlyTesting
|
|
254
254
|
SessionFileCleanup -.->|depends on| SessionFileLifecycle
|
|
255
|
-
|
|
256
|
-
OrchestratorPipelineFactoryMigration -.->|depends on|
|
|
255
|
+
PatternGraphLayeredExtraction -.->|depends on| ValidatorReadModelConsolidation
|
|
256
|
+
OrchestratorPipelineFactoryMigration -.->|depends on| PatternGraphLayeredExtraction
|
|
257
257
|
LivingRoadmapCLI -.->|depends on| MvpWorkflowImplementation
|
|
258
258
|
EffortVarianceTracking -.->|depends on| MvpWorkflowImplementation
|
|
259
259
|
ConfigBasedWorkflowDefinition -.->|depends on| MvpWorkflowImplementation
|
|
@@ -295,7 +295,7 @@ graph LR
|
|
|
295
295
|
| Tier 1 specs are ephemeral working documents | Tier 1 roadmap specs serve planning and delivery tracking. They are not the source of truth for pattern identity, invariants, or acceptance criteria. After completion, they may be archived. | Treating tier 1 specs as durable creates a maintenance burden — at scale only 39% maintain traceability, and duplicated Rules/Scenarios average 200-400 stale lines. |
|
|
296
296
|
| Three durable artifact types | The delivery process produces three artifact types with long-term value. All other artifacts are projections or ephemeral. | Without a clear boundary between durable and ephemeral artifacts, teams maintain redundant documents that inevitably drift from the source of truth. |
|
|
297
297
|
| Implements is UML Realization (many-to-one) | `@architect-implements` declares a realization relationship. Multiple files can implement the same pattern. One file can implement multiple patterns (CSV format). | Without many-to-one realization, cross-cutting patterns that span multiple files cannot be traced back to a single canonical definition. |
|
|
298
|
-
| Single-definition constraint | `@architect-pattern:X` may appear in exactly one file across the entire codebase. The `mergePatterns()` conflict check in `orchestrator.ts` correctly enforces this. | Duplicate pattern definitions cause merge conflicts in the
|
|
298
|
+
| Single-definition constraint | `@architect-pattern:X` may appear in exactly one file across the entire codebase. The `mergePatterns()` conflict check in `orchestrator.ts` correctly enforces this. | Duplicate pattern definitions cause merge conflicts in the PatternGraph and produce ambiguous ownership in generated documentation. |
|
|
299
299
|
| Reverse links preferred over forward links | `@architect-implements` (reverse: "I verify this pattern") is the primary traceability mechanism. `@architect-executable-specs` (forward: "my tests live here") is retained but not required. | Forward links in tier 1 specs go stale when specs are archived, while reverse links in test files are self-maintaining because the test cannot run without the implementation. |
|
|
300
300
|
|
|
301
301
|
### Cli Behavior Testing
|
|
@@ -467,6 +467,36 @@ function detectProcessInCode(
|
|
|
467
467
|
|
|
468
468
|
**Returns:** Array of anti-pattern violations
|
|
469
469
|
|
|
470
|
+
### detectRemovedTags (function)
|
|
471
|
+
|
|
472
|
+
```typescript
|
|
473
|
+
/**
|
|
474
|
+
* Detect removed tags in feature files
|
|
475
|
+
*
|
|
476
|
+
* Finds tags that were removed from the registry but still appear in source files.
|
|
477
|
+
* These tags are silently discarded by the scanner, causing data loss without
|
|
478
|
+
* any diagnostic. This detector makes the failure explicit.
|
|
479
|
+
*
|
|
480
|
+
* @param features - Array of scanned feature files
|
|
481
|
+
* @param registry - Optional tag registry for prefix-aware detection (defaults to @architect-)
|
|
482
|
+
* @returns Array of anti-pattern violations
|
|
483
|
+
*/
|
|
484
|
+
```
|
|
485
|
+
|
|
486
|
+
```typescript
|
|
487
|
+
function detectRemovedTags(
|
|
488
|
+
features: readonly ScannedGherkinFile[],
|
|
489
|
+
registry?: TagRegistry
|
|
490
|
+
): AntiPatternViolation[];
|
|
491
|
+
```
|
|
492
|
+
|
|
493
|
+
| Parameter | Type | Description |
|
|
494
|
+
| --------- | ---- | -------------------------------------------------------------------------- |
|
|
495
|
+
| features | | Array of scanned feature files |
|
|
496
|
+
| registry | | Optional tag registry for prefix-aware detection (defaults to @architect-) |
|
|
497
|
+
|
|
498
|
+
**Returns:** Array of anti-pattern violations
|
|
499
|
+
|
|
470
500
|
### detectMagicComments (function)
|
|
471
501
|
|
|
472
502
|
```typescript
|
|
@@ -893,21 +923,6 @@ const severityOrder: Record<LintSeverity, number>;
|
|
|
893
923
|
const missingPatternName: LintRule;
|
|
894
924
|
```
|
|
895
925
|
|
|
896
|
-
### missingStatus (const)
|
|
897
|
-
|
|
898
|
-
```typescript
|
|
899
|
-
/**
|
|
900
|
-
* Rule: missing-status
|
|
901
|
-
*
|
|
902
|
-
* Patterns should have an explicit status (completed, active, roadmap, deferred).
|
|
903
|
-
* This helps readers understand if the pattern is ready for use.
|
|
904
|
-
*/
|
|
905
|
-
```
|
|
906
|
-
|
|
907
|
-
```typescript
|
|
908
|
-
const missingStatus: LintRule;
|
|
909
|
-
```
|
|
910
|
-
|
|
911
926
|
---
|
|
912
927
|
|
|
913
928
|
## Business Rules
|
|
@@ -1118,11 +1133,11 @@ const missingStatus: LintRule;
|
|
|
1118
1133
|
|
|
1119
1134
|
### Validator Read Model Consolidation
|
|
1120
1135
|
|
|
1121
|
-
| Rule | Invariant
|
|
1122
|
-
| ---------------------------------------------------------- |
|
|
1123
|
-
| Validator queries the read model for cross-source matching | Pattern identity resolution — including implements relationships in both directions — uses `
|
|
1124
|
-
| No lossy local types in the validator | The validator operates on `ExtractedPattern` from the
|
|
1125
|
-
| Utility patterns without specs are not false positives | Internal utility patterns that have a `@architect-phase` but will never have a Gherkin spec should not carry phase metadata. Phase tags signal roadmap participation.
|
|
1136
|
+
| Rule | Invariant | Rationale |
|
|
1137
|
+
| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1138
|
+
| Validator queries the read model for cross-source matching | Pattern identity resolution — including implements relationships in both directions — uses `PatternGraph.relationshipIndex` rather than ad-hoc name-equality maps built from raw scanner output. | The PatternGraph computes implementedBy reverse lookups in transform-dataset.ts (second pass, lines 488-546). The validator's current name-equality Map cannot resolve ShapeExtractor -> ShapeExtraction or DecisionDocGeneratorTesting -> DecisionDocGenerator because these are implements relationships, not name matches. |
|
|
1139
|
+
| No lossy local types in the validator | The validator operates on `ExtractedPattern` from the PatternGraph, not a consumer-local DTO that discards fields. | GherkinPatternInfo keeps only name, phase, status, file, and deliverables — discarding uses, dependsOn, implementsPatterns, include, productArea, rules, and 20+ other fields. When the validator needs relationship data, it cannot access it through the lossy type. |
|
|
1140
|
+
| Utility patterns without specs are not false positives | Internal utility patterns that have a `@architect-phase` but will never have a Gherkin spec should not carry phase metadata. Phase tags signal roadmap participation. | Five utility patterns (ContentDeduplicator, FileCache, WarningCollector, SourceMappingValidator, SourceMapper) have phase tags from the phase when they were built. They are infrastructure, not roadmap features. The validator correctly reports missing Gherkin for patterns with phases — the fix is removing the phase tag, not suppressing the warning. |
|
|
1126
1141
|
|
|
1127
1142
|
### Workflow Config Schemas Validation
|
|
1128
1143
|
|
|
@@ -64,7 +64,7 @@ List specific declaration names in the file-level JSDoc:
|
|
|
64
64
|
```typescript
|
|
65
65
|
/**
|
|
66
66
|
* @architect
|
|
67
|
-
* @architect-extract-shapes
|
|
67
|
+
* @architect-extract-shapes PatternGraphSchema, StatusGroupsSchema
|
|
68
68
|
*/
|
|
69
69
|
```
|
|
70
70
|
|
|
@@ -103,7 +103,7 @@ For Zod files, extract the **schema constant** (with `Schema` suffix), not the i
|
|
|
103
103
|
|
|
104
104
|
| Wrong (type alias) | Correct (schema constant) |
|
|
105
105
|
| ---------------------------------------- | ----------------------------------------- |
|
|
106
|
-
| `@extract-shapes
|
|
106
|
+
| `@extract-shapes PatternGraph` | `@extract-shapes PatternGraphSchema` |
|
|
107
107
|
| Shows: `z.infer<typeof ...>` (unhelpful) | Shows: `z.object({...})` (full structure) |
|
|
108
108
|
|
|
109
109
|
---
|
|
@@ -115,9 +115,9 @@ For Zod files, extract the **schema constant** (with `Schema` suffix), not the i
|
|
|
115
115
|
```typescript
|
|
116
116
|
/**
|
|
117
117
|
* @architect
|
|
118
|
-
* @architect-pattern
|
|
118
|
+
* @architect-pattern PatternGraph
|
|
119
119
|
* @architect-status completed
|
|
120
|
-
* @architect-extract-shapes
|
|
120
|
+
* @architect-extract-shapes PatternGraphSchema, StatusGroupsSchema, PhaseGroupSchema
|
|
121
121
|
*/
|
|
122
122
|
```
|
|
123
123
|
|
|
@@ -141,7 +141,7 @@ For Zod files, extract the **schema constant** (with `Schema` suffix), not the i
|
|
|
141
141
|
* @architect-status completed
|
|
142
142
|
* @architect-arch-context generator
|
|
143
143
|
* @architect-arch-layer application
|
|
144
|
-
* @architect-extract-shapes
|
|
144
|
+
* @architect-extract-shapes transformToPatternGraph, RuntimePatternGraph
|
|
145
145
|
*/
|
|
146
146
|
```
|
|
147
147
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
## ValidationRulesCodec
|
|
9
9
|
|
|
10
|
-
Transforms
|
|
10
|
+
Transforms PatternGraph into a RenderableDocument for Process Guard validation
|
|
11
11
|
rules reference. Generates VALIDATION-RULES.md and detail files (validation/\*.md).
|
|
12
12
|
|
|
13
13
|
**Purpose:** Process Guard validation rules reference with FSM diagrams and protection level matrix.
|
|
@@ -91,7 +91,7 @@ const doc = ValidationRulesCodec.decode(dataset);
|
|
|
91
91
|
|
|
92
92
|
## TaxonomyDocumentCodec
|
|
93
93
|
|
|
94
|
-
Transforms
|
|
94
|
+
Transforms PatternGraph into a RenderableDocument for taxonomy reference output.
|
|
95
95
|
Generates TAXONOMY.md and detail files (taxonomy/\*.md).
|
|
96
96
|
|
|
97
97
|
**Purpose:** Taxonomy reference documentation with tag definitions, preset comparison, and format type reference.
|
|
@@ -161,7 +161,7 @@ const doc = TaxonomyDocumentCodec.decode(dataset);
|
|
|
161
161
|
|
|
162
162
|
## RequirementsDocumentCodec
|
|
163
163
|
|
|
164
|
-
Transforms
|
|
164
|
+
Transforms PatternGraph into RenderableDocument for PRD/requirements output.
|
|
165
165
|
Generates PRODUCT-REQUIREMENTS.md and detail files (requirements/\*.md).
|
|
166
166
|
|
|
167
167
|
**Purpose:** Product requirements documentation grouped by product area or user role.
|
|
@@ -302,7 +302,7 @@ const doc = codec.decode(dataset);
|
|
|
302
302
|
|
|
303
303
|
## PrChangesCodec
|
|
304
304
|
|
|
305
|
-
Transforms
|
|
305
|
+
Transforms PatternGraph into RenderableDocument for PR-scoped output.
|
|
306
306
|
Filters patterns by changed files and/or release version tags.
|
|
307
307
|
|
|
308
308
|
**Purpose:** PR-scoped view filtered by changed files or release version.
|
|
@@ -389,7 +389,7 @@ const doc = codec.decode(dataset);
|
|
|
389
389
|
|
|
390
390
|
## PatternsDocumentCodec
|
|
391
391
|
|
|
392
|
-
Transforms
|
|
392
|
+
Transforms PatternGraph into a RenderableDocument for pattern registry output.
|
|
393
393
|
Generates PATTERNS.md and category detail files (patterns/\*.md).
|
|
394
394
|
|
|
395
395
|
**Purpose:** Pattern registry with category-based organization.
|
|
@@ -429,7 +429,7 @@ const doc = PatternsDocumentCodec.decode(dataset);
|
|
|
429
429
|
|
|
430
430
|
## IndexCodec
|
|
431
431
|
|
|
432
|
-
**Purpose:** Navigation hub composing editorial preamble with
|
|
432
|
+
**Purpose:** Navigation hub composing editorial preamble with PatternGraph statistics.
|
|
433
433
|
|
|
434
434
|
**Output Files:** `INDEX.md` (single page, no detail files)
|
|
435
435
|
|
|
@@ -454,7 +454,7 @@ const doc = PatternsDocumentCodec.decode(dataset);
|
|
|
454
454
|
|
|
455
455
|
## DesignReviewCodec
|
|
456
456
|
|
|
457
|
-
Transforms
|
|
457
|
+
Transforms PatternGraph into a RenderableDocument containing design review
|
|
458
458
|
artifacts: sequence diagrams, component diagrams, type definition tables,
|
|
459
459
|
and design question templates.
|
|
460
460
|
|
|
@@ -509,7 +509,7 @@ const doc = composeDocuments([docA, docB], { title: 'Combined' });
|
|
|
509
509
|
|
|
510
510
|
## ClaudeModuleCodec
|
|
511
511
|
|
|
512
|
-
Transforms
|
|
512
|
+
Transforms PatternGraph into RenderableDocuments for CLAUDE.md module generation.
|
|
513
513
|
Filters patterns with `claudeModule` tags and generates compact markdown modules
|
|
514
514
|
suitable for the `_claude-md/` directory structure.
|
|
515
515
|
|
|
@@ -537,7 +537,7 @@ const doc = codec.decode(dataset);
|
|
|
537
537
|
|
|
538
538
|
## BusinessRulesCodec
|
|
539
539
|
|
|
540
|
-
Transforms
|
|
540
|
+
Transforms PatternGraph into a RenderableDocument for business rules output.
|
|
541
541
|
Generates BUSINESS-RULES.md organized by product area, phase, and feature.
|
|
542
542
|
|
|
543
543
|
**Purpose:** Business rules documentation organized by product area, phase, and feature. Extracts domain constraints from Gherkin Rule: blocks.
|
|
@@ -592,7 +592,7 @@ const doc = codec.decode(dataset);
|
|
|
592
592
|
|
|
593
593
|
## ArchitectureDocumentCodec
|
|
594
594
|
|
|
595
|
-
Transforms
|
|
595
|
+
Transforms PatternGraph into a RenderableDocument containing
|
|
596
596
|
architecture diagrams (Mermaid) generated from source annotations.
|
|
597
597
|
|
|
598
598
|
**Purpose:** Architecture diagrams (Mermaid) generated from source annotations. Supports component and layered views.
|
|
@@ -637,7 +637,7 @@ const doc = ArchitectureDocumentCodec.decode(dataset);
|
|
|
637
637
|
|
|
638
638
|
## AdrDocumentCodec
|
|
639
639
|
|
|
640
|
-
Transforms
|
|
640
|
+
Transforms PatternGraph into RenderableDocument for Architecture Decision Records.
|
|
641
641
|
Extracts ADRs from patterns with `@architect-adr` tags.
|
|
642
642
|
|
|
643
643
|
**Purpose:** Architecture Decision Records extracted from patterns with @architect-adr tags.
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
|
|
8
8
|
## API Types
|
|
9
9
|
|
|
10
|
-
###
|
|
10
|
+
### PatternGraphSchema (const)
|
|
11
11
|
|
|
12
12
|
```typescript
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* PatternGraph - Unified view of all extracted patterns
|
|
15
15
|
*
|
|
16
16
|
* Contains raw patterns plus pre-computed views and statistics.
|
|
17
17
|
* This is the primary data structure passed to generators and sections.
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
```typescript
|
|
23
|
-
|
|
23
|
+
PatternGraphSchema = z.object({
|
|
24
24
|
// ─────────────────────────────────────────────────────────────────────────
|
|
25
25
|
// Raw Data
|
|
26
26
|
// ─────────────────────────────────────────────────────────────────────────
|
|
@@ -52,7 +52,7 @@ MasterDatasetSchema = z.object({
|
|
|
52
52
|
byCategory: z.record(z.string(), z.array(ExtractedPatternSchema)),
|
|
53
53
|
|
|
54
54
|
/** Patterns grouped by source type */
|
|
55
|
-
|
|
55
|
+
bySourceType: SourceViewsSchema,
|
|
56
56
|
|
|
57
57
|
/** Patterns grouped by product area (for O(1) product area lookups) */
|
|
58
58
|
byProductArea: z.record(z.string(), z.array(ExtractedPatternSchema)),
|
|
@@ -244,13 +244,13 @@ RelationshipEntrySchema = z.object({
|
|
|
244
244
|
});
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
-
###
|
|
247
|
+
### RuntimePatternGraph (interface)
|
|
248
248
|
|
|
249
249
|
```typescript
|
|
250
250
|
/**
|
|
251
|
-
* Runtime
|
|
251
|
+
* Runtime PatternGraph with optional workflow
|
|
252
252
|
*
|
|
253
|
-
* Extends the Zod-compatible
|
|
253
|
+
* Extends the Zod-compatible PatternGraph with workflow reference.
|
|
254
254
|
* LoadedWorkflow contains Maps which aren't JSON-serializable,
|
|
255
255
|
* so it's kept separate from the Zod schema.
|
|
256
256
|
*
|
|
@@ -258,7 +258,7 @@ RelationshipEntrySchema = z.object({
|
|
|
258
258
|
```
|
|
259
259
|
|
|
260
260
|
```typescript
|
|
261
|
-
interface
|
|
261
|
+
interface RuntimePatternGraph extends PatternGraph {
|
|
262
262
|
/** Optional workflow configuration (not serializable) */
|
|
263
263
|
readonly workflow?: LoadedWorkflow;
|
|
264
264
|
}
|
|
@@ -304,7 +304,7 @@ interface RawDataset {
|
|
|
304
304
|
|
|
305
305
|
```typescript
|
|
306
306
|
/**
|
|
307
|
-
* Options for building a
|
|
307
|
+
* Options for building a PatternGraph via the shared pipeline.
|
|
308
308
|
*
|
|
309
309
|
* DD-1: Factory lives at src/generators/pipeline/build-pipeline.ts.
|
|
310
310
|
* DD-2: mergeConflictStrategy controls per-consumer conflict handling.
|
|
@@ -327,13 +327,16 @@ interface PipelineOptions {
|
|
|
327
327
|
readonly includeValidation?: boolean;
|
|
328
328
|
/** DD-5: When true, return error on individual scan failures (default false). */
|
|
329
329
|
readonly failOnScanErrors?: boolean;
|
|
330
|
+
/** Pre-loaded tag registry. When provided, skips internal config load (Step 1). */
|
|
331
|
+
readonly tagRegistry?: TagRegistry;
|
|
330
332
|
}
|
|
331
333
|
```
|
|
332
334
|
|
|
333
|
-
| Property | Description
|
|
334
|
-
| ----------------- |
|
|
335
|
-
| includeValidation | DD-3: When false, skip validation pass (default true).
|
|
336
|
-
| failOnScanErrors | DD-5: When true, return error on individual scan failures (default false).
|
|
335
|
+
| Property | Description |
|
|
336
|
+
| ----------------- | ---------------------------------------------------------------------------- |
|
|
337
|
+
| includeValidation | DD-3: When false, skip validation pass (default true). |
|
|
338
|
+
| failOnScanErrors | DD-5: When true, return error on individual scan failures (default false). |
|
|
339
|
+
| tagRegistry | Pre-loaded tag registry. When provided, skips internal config load (Step 1). |
|
|
337
340
|
|
|
338
341
|
### PipelineResult (interface)
|
|
339
342
|
|
|
@@ -346,7 +349,7 @@ interface PipelineOptions {
|
|
|
346
349
|
|
|
347
350
|
```typescript
|
|
348
351
|
interface PipelineResult {
|
|
349
|
-
readonly dataset:
|
|
352
|
+
readonly dataset: RuntimePatternGraph;
|
|
350
353
|
readonly validation: ValidationSummary;
|
|
351
354
|
readonly warnings: readonly PipelineWarning[];
|
|
352
355
|
readonly scanMetadata: ScanMetadata;
|
|
@@ -363,11 +366,11 @@ interface PipelineResult {
|
|
|
363
366
|
|
|
364
367
|
---
|
|
365
368
|
|
|
366
|
-
## Steps 1-8 via
|
|
369
|
+
## Steps 1-8 via buildPatternGraph()
|
|
367
370
|
|
|
368
371
|
Steps 1-8 (config load, TypeScript/Gherkin scan + extraction, merge, hierarchy
|
|
369
|
-
derivation, workflow load, and `
|
|
370
|
-
`
|
|
372
|
+
derivation, workflow load, and `transformToPatternGraph`) are delegated to
|
|
373
|
+
`buildPatternGraph()`.
|
|
371
374
|
|
|
372
375
|
---
|
|
373
376
|
|
|
@@ -387,7 +390,7 @@ policy, and persisted file writes).
|
|
|
387
390
|
|
|
388
391
|
## Shared Pipeline Factory Responsibilities
|
|
389
392
|
|
|
390
|
-
**Invariant:** `
|
|
393
|
+
**Invariant:** `buildPatternGraph()` is the shared factory for Steps 1-8 of the architecture pipeline and returns `Result<PipelineResult, PipelineError>` without process-level side effects.
|
|
391
394
|
|
|
392
395
|
**Rationale:** Centralizing scan/extract/merge/transform flow prevents divergence between CLI consumers and preserves a single ADR-006 read-model path.
|
|
393
396
|
|
|
@@ -397,37 +400,37 @@ policy, and persisted file writes).
|
|
|
397
400
|
|
|
398
401
|
The factory owns: configuration load, TypeScript scan + extraction, Gherkin scan +
|
|
399
402
|
extraction, merge conflict handling, hierarchy child derivation, workflow load,
|
|
400
|
-
and `
|
|
403
|
+
and `transformToPatternGraph` with validation summary.
|
|
401
404
|
|
|
402
405
|
---
|
|
403
406
|
|
|
404
407
|
## Consumer Architecture and PipelineOptions Differentiation
|
|
405
408
|
|
|
406
|
-
Three consumers share this factory: `
|
|
409
|
+
Three consumers share this factory: `pattern-graph-cli`, `validate-patterns`, and the
|
|
407
410
|
generation orchestrator. `PipelineOptions` differentiates behavior by
|
|
408
411
|
`mergeConflictStrategy` (`fatal` vs `concatenate`), `includeValidation` toggles,
|
|
409
412
|
and `failOnScanErrors` policy without forking pipeline logic.
|
|
410
413
|
|
|
411
414
|
### When to Use
|
|
412
415
|
|
|
413
|
-
- Any consumer needs a
|
|
416
|
+
- Any consumer needs a PatternGraph without rewriting scan/extract/merge flow
|
|
414
417
|
- CLI consumers require differentiated conflict strategy and validation behavior
|
|
415
418
|
- Orchestrator needs a shared steps 1-8 implementation before codec/file execution
|
|
416
419
|
|
|
417
420
|
---
|
|
418
421
|
|
|
419
|
-
##
|
|
422
|
+
## PatternGraph View Fan-out
|
|
420
423
|
|
|
421
|
-
Pre-computed view fan-out from
|
|
424
|
+
Pre-computed view fan-out from PatternGraph (single-pass transform):
|
|
422
425
|
|
|
423
426
|
```mermaid
|
|
424
427
|
graph TB
|
|
425
|
-
MD[
|
|
428
|
+
MD[PatternGraph]
|
|
426
429
|
MD --> byStatus["byStatus<br/>(completed / active / planned)"]
|
|
427
430
|
MD --> byPhase["byPhase<br/>(sorted, with counts)"]
|
|
428
431
|
MD --> byQuarter["byQuarter<br/>(keyed by Q-YYYY)"]
|
|
429
432
|
MD --> byCategory["byCategory<br/>(keyed by category name)"]
|
|
430
|
-
MD -->
|
|
433
|
+
MD --> bySourceType["bySourceType<br/>(typescript / gherkin / roadmap / prd)"]
|
|
431
434
|
MD --> counts["counts<br/>(aggregate statistics)"]
|
|
432
435
|
MD --> RI["relationshipIndex?<br/>(forward + reverse lookups)"]
|
|
433
436
|
MD --> AI["archIndex?<br/>(role / context / layer / view)"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Pattern Graph CLI Recipes & Workflow Guide
|
|
2
2
|
|
|
3
|
-
> Auto-generated from CLI schema. See [CLI Reference](./
|
|
3
|
+
> Auto-generated from CLI schema. See [CLI Reference](./CLI-REFERENCE.md) for flag tables.
|
|
4
4
|
|
|
5
5
|
## Why Use This
|
|
6
6
|
|
|
@@ -35,7 +35,7 @@ Example `overview` output:
|
|
|
35
35
|
318 patterns (224 completed, 47 active, 47 planned) = 70%
|
|
36
36
|
|
|
37
37
|
=== ACTIVE PHASES ===
|
|
38
|
-
Phase 24:
|
|
38
|
+
Phase 24: PatternGraphAPIRelationshipQueries (1 active)
|
|
39
39
|
Phase 25: DataAPIStubIntegration (1 active)
|
|
40
40
|
|
|
41
41
|
=== BLOCKING ===
|
|
@@ -79,7 +79,7 @@ Example output:
|
|
|
79
79
|
318 patterns (224 completed, 47 active, 47 planned) = 70%
|
|
80
80
|
|
|
81
81
|
=== ACTIVE PHASES ===
|
|
82
|
-
Phase 24:
|
|
82
|
+
Phase 24: PatternGraphAPIRelationshipQueries (1 active)
|
|
83
83
|
Phase 25: DataAPIStubIntegration (1 active)
|
|
84
84
|
|
|
85
85
|
=== BLOCKING ===
|
|
@@ -130,20 +130,20 @@ Example output:
|
|
|
130
130
|
Status: active | Category: pattern
|
|
131
131
|
## ContextAssembler — Session-Oriented Context Bundle Builder
|
|
132
132
|
|
|
133
|
-
Pure function composition over
|
|
133
|
+
Pure function composition over PatternGraph.
|
|
134
134
|
File: src/api/context-assembler.ts
|
|
135
135
|
|
|
136
136
|
=== DEPENDENCIES ===
|
|
137
|
-
[active]
|
|
138
|
-
[completed]
|
|
137
|
+
[active] PatternGraphAPI (implementation) src/api/pattern-graph-api.ts
|
|
138
|
+
[completed] PatternGraph (implementation) src/validation-schemas/pattern-graph.ts
|
|
139
139
|
|
|
140
140
|
=== CONSUMERS ===
|
|
141
141
|
ContextFormatterImpl (active)
|
|
142
|
-
|
|
142
|
+
PatternGraphCLIImpl (active)
|
|
143
143
|
|
|
144
144
|
=== ARCHITECTURE (context: api) ===
|
|
145
|
-
|
|
146
|
-
|
|
145
|
+
PatternGraph (completed, read-model)
|
|
146
|
+
PatternGraphAPI (active, service)
|
|
147
147
|
...
|
|
148
148
|
```
|
|
149
149
|
|
|
@@ -169,7 +169,7 @@ Example output:
|
|
|
169
169
|
|
|
170
170
|
```
|
|
171
171
|
=== PRIMARY ===
|
|
172
|
-
src/cli/
|
|
172
|
+
src/cli/pattern-graph-cli.ts
|
|
173
173
|
|
|
174
174
|
=== ARCHITECTURE NEIGHBORS ===
|
|
175
175
|
src/cli/version.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Pattern Graph CLI Reference
|
|
2
2
|
|
|
3
|
-
> Auto-generated from CLI schema. See [
|
|
3
|
+
> Auto-generated from CLI schema. See [CLI Recipes & Workflow Guide](../../docs-live/reference/CLI-RECIPES.md) for usage examples and recipes.
|
|
4
4
|
|
|
5
5
|
## Global Options
|
|
6
6
|
|