onto-mcp 0.3.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.onto/processes/reconstruct/actionable-ontology-seed-recomposition-design.md +447 -0
- package/.onto/processes/reconstruct/foundry-style-ontology-seed-contract.md +934 -0
- package/.onto/processes/reconstruct/reconstruct-boundary-contract.md +303 -725
- package/.onto/processes/reconstruct/reconstruct-contract-registry.yaml +1645 -0
- package/.onto/processes/reconstruct/reconstruct-execution-ux-contract.md +26 -22
- package/.onto/processes/reconstruct/source-profile-contract.md +49 -23
- package/.onto/processes/reconstruct/source-profiles/code.md +6 -3
- package/.onto/processes/reconstruct/source-profiles/database.md +5 -2
- package/.onto/processes/reconstruct/source-profiles/document.md +5 -2
- package/.onto/processes/reconstruct/source-profiles/spreadsheet.md +5 -4
- package/.onto/processes/review/review-execution-ux-contract.md +40 -0
- package/.onto/processes/shared/pipeline-execution-ledger-contract.md +26 -10
- package/.onto/processes/shared/target-material-kind-contract.md +29 -16
- package/AGENTS.md +6 -4
- package/README.md +135 -76
- package/dist/cli.js +8 -8
- package/dist/core-api/reconstruct-api.js +117 -31
- package/dist/core-api/review-api.js +47 -0
- package/dist/core-runtime/cli/codex-review-unit-executor.js +39 -2
- package/dist/core-runtime/cli/complete-review-session.js +2 -2
- package/dist/core-runtime/cli/mock-review-unit-executor.js +1 -1
- package/dist/core-runtime/cli/review-invoke.js +9 -9
- package/dist/core-runtime/cli/run-review-prompt-execution.js +39 -5
- package/dist/core-runtime/cli/spawn-watcher.js +266 -47
- package/dist/core-runtime/cli/start-review-session.js +3 -3
- package/dist/core-runtime/llm/llm-caller.js +11 -0
- package/dist/core-runtime/llm/llm-tool-loop.js +2 -0
- package/dist/core-runtime/observability/runtime-stream-observation.js +118 -0
- package/dist/core-runtime/onboard/cli-host.js +149 -0
- package/dist/core-runtime/onboard/host-target.js +22 -0
- package/dist/core-runtime/onboard/json-config-host.js +122 -0
- package/dist/core-runtime/onboard/path-scan.js +26 -0
- package/dist/core-runtime/onboard/prompt.js +51 -0
- package/dist/core-runtime/onboard/register.js +207 -0
- package/dist/core-runtime/onboard/types.js +27 -0
- package/dist/core-runtime/reconstruct/actionable-seed-validation.js +1777 -0
- package/dist/core-runtime/reconstruct/artifact-types.js +10 -4
- package/dist/core-runtime/reconstruct/contract-registry.js +623 -0
- package/dist/core-runtime/reconstruct/domain-id.js +10 -0
- package/dist/core-runtime/reconstruct/governing-snapshot.js +716 -0
- package/dist/core-runtime/reconstruct/material-profile-validation.js +191 -0
- package/dist/core-runtime/reconstruct/materialize-preparation.js +49 -11
- package/dist/core-runtime/reconstruct/pipeline-execution-ledger.js +269 -79
- package/dist/core-runtime/reconstruct/post-seed-validation.js +1194 -51
- package/dist/core-runtime/reconstruct/record.js +104 -20
- package/dist/core-runtime/reconstruct/run.js +2107 -413
- package/dist/core-runtime/reconstruct/seed-claim-projections.js +268 -0
- package/dist/core-runtime/reconstruct/source-profiles.js +93 -4
- package/dist/core-runtime/reconstruct/terminal-validation.js +807 -0
- package/dist/core-runtime/review/review-invocation-runner.js +4 -4
- package/dist/mcp/server.js +110 -38
- package/dist/mcp/tool-schemas.js +20 -6
- package/package.json +8 -17
- package/scripts/onto-review-watch.sh +486 -0
- package/scripts/onto-runtime-watch.sh +122 -0
- package/scripts/postinstall-hint.js +22 -0
- package/.onto/processes/reconstruct/top-level-concept-discovery-contract.md +0 -387
- package/dist/core-runtime/cli/bootstrap-review-binding.js +0 -186
- package/dist/core-runtime/cli/codex-nested-dispatch.test.js +0 -390
- package/dist/core-runtime/cli/codex-nested-teamlead-executor.test.js +0 -335
- package/dist/core-runtime/cli/coordinator-helpers.js +0 -583
- package/dist/core-runtime/cli/coordinator-state-machine-deliberation.test.js +0 -167
- package/dist/core-runtime/cli/coordinator-state-machine.js +0 -794
- package/dist/core-runtime/cli/e2e-codex-multi-agent-fixes.test.js +0 -615
- package/dist/core-runtime/cli/e2e-start-review-session.test.js +0 -312
- package/dist/core-runtime/cli/health.js +0 -44
- package/dist/core-runtime/cli/inline-http-review-unit-executor.test.js +0 -567
- package/dist/core-runtime/cli/materialize-review-execution-preparation.js +0 -104
- package/dist/core-runtime/cli/migrate-session-roots.js +0 -118
- package/dist/core-runtime/cli/repo-layout-migration-replace.smoke.test.js +0 -106
- package/dist/core-runtime/cli/review-invoke-auto-resolution.test.js +0 -268
- package/dist/core-runtime/cli/review-invoke-coordinator-topology.test.js +0 -136
- package/dist/core-runtime/cli/review-invoke-resolver-caching.test.js +0 -201
- package/dist/core-runtime/cli/review-invoke-topology-dispatch.test.js +0 -192
- package/dist/core-runtime/cli/session-root-guard.js +0 -168
- package/dist/core-runtime/cli/spawn-watcher.test.js +0 -457
- package/dist/core-runtime/cli/strip-wrapping-code-fence.test.js +0 -79
- package/dist/core-runtime/cli/teamcreate-lens-deliberation-executor.js +0 -412
- package/dist/core-runtime/cli/teamcreate-lens-deliberation-executor.test.js +0 -351
- package/dist/core-runtime/cli/topology-executor-mapping.js +0 -139
- package/dist/core-runtime/cli/topology-executor-mapping.test.js +0 -173
- package/dist/core-runtime/cli/write-review-interpretation.js +0 -81
- package/dist/core-runtime/config/onto-config-cli.js +0 -278
- package/dist/core-runtime/config/onto-config-key-path.js +0 -288
- package/dist/core-runtime/config/onto-config-key-path.test.js +0 -195
- package/dist/core-runtime/config/onto-config-preview.js +0 -108
- package/dist/core-runtime/config/onto-config-preview.test.js +0 -132
- package/dist/core-runtime/discovery/config-chain.js +0 -118
- package/dist/core-runtime/discovery/config-chain.test.js +0 -103
- package/dist/core-runtime/discovery/config-profile.js +0 -199
- package/dist/core-runtime/discovery/config-profile.test.js +0 -233
- package/dist/core-runtime/discovery/host-detection.test.js +0 -186
- package/dist/core-runtime/discovery/installation-paths.test.js +0 -65
- package/dist/core-runtime/discovery/lens-registry.test.js +0 -81
- package/dist/core-runtime/discovery/path-normalization.test.js +0 -22
- package/dist/core-runtime/discovery/plugin-path.js +0 -72
- package/dist/core-runtime/discovery/plugin-path.test.js +0 -95
- package/dist/core-runtime/evolve/adapters/code-product/compile/compile-defense.js +0 -344
- package/dist/core-runtime/evolve/adapters/code-product/compile/compile-defense.test.js +0 -915
- package/dist/core-runtime/evolve/adapters/code-product/compile/compile.js +0 -564
- package/dist/core-runtime/evolve/adapters/code-product/compile/compile.test.js +0 -708
- package/dist/core-runtime/evolve/adapters/code-product/parsers/brief-parser.js +0 -165
- package/dist/core-runtime/evolve/adapters/code-product/parsers/brief-parser.test.js +0 -227
- package/dist/core-runtime/evolve/adapters/code-product/validators/validate.js +0 -59
- package/dist/core-runtime/evolve/adapters/code-product/validators/validate.test.js +0 -205
- package/dist/core-runtime/evolve/adapters/methodology/adapter.js +0 -16
- package/dist/core-runtime/evolve/adapters/methodology/adapter.test.js +0 -9
- package/dist/core-runtime/evolve/adapters/methodology/perspectives/authority-consistency.js +0 -298
- package/dist/core-runtime/evolve/adapters/methodology/perspectives/authority-consistency.test.js +0 -70
- package/dist/core-runtime/evolve/adapters/methodology/scope-types/process.js +0 -46
- package/dist/core-runtime/evolve/adapters/methodology/scope-types/process.test.js +0 -73
- package/dist/core-runtime/evolve/adapters/registry.js +0 -47
- package/dist/core-runtime/evolve/adapters/registry.test.js +0 -67
- package/dist/core-runtime/evolve/cli.js +0 -256
- package/dist/core-runtime/evolve/commands/align.js +0 -194
- package/dist/core-runtime/evolve/commands/align.test.js +0 -82
- package/dist/core-runtime/evolve/commands/apply.js +0 -161
- package/dist/core-runtime/evolve/commands/apply.test.js +0 -138
- package/dist/core-runtime/evolve/commands/close.js +0 -39
- package/dist/core-runtime/evolve/commands/close.test.js +0 -99
- package/dist/core-runtime/evolve/commands/defer.js +0 -40
- package/dist/core-runtime/evolve/commands/defer.test.js +0 -134
- package/dist/core-runtime/evolve/commands/draft.js +0 -323
- package/dist/core-runtime/evolve/commands/draft.test.js +0 -178
- package/dist/core-runtime/evolve/commands/e2e-evolve-full-cycle.test.js +0 -208
- package/dist/core-runtime/evolve/commands/error-messages.js +0 -125
- package/dist/core-runtime/evolve/commands/error-messages.test.js +0 -167
- package/dist/core-runtime/evolve/commands/propose-align.js +0 -222
- package/dist/core-runtime/evolve/commands/propose-align.test.js +0 -136
- package/dist/core-runtime/evolve/commands/reconstruct.js +0 -330
- package/dist/core-runtime/evolve/commands/reconstruct.test.js +0 -278
- package/dist/core-runtime/evolve/commands/shared.js +0 -22
- package/dist/core-runtime/evolve/commands/stale-check.js +0 -103
- package/dist/core-runtime/evolve/commands/stale-check.test.js +0 -84
- package/dist/core-runtime/evolve/commands/start.js +0 -887
- package/dist/core-runtime/evolve/commands/start.test.js +0 -396
- package/dist/core-runtime/evolve/config/project-config.js +0 -99
- package/dist/core-runtime/evolve/config/project-config.test.js +0 -170
- package/dist/core-runtime/evolve/renderers/align-packet.js +0 -280
- package/dist/core-runtime/evolve/renderers/align-packet.test.js +0 -332
- package/dist/core-runtime/evolve/renderers/draft-packet.js +0 -303
- package/dist/core-runtime/evolve/renderers/draft-packet.test.js +0 -377
- package/dist/core-runtime/evolve/renderers/format.js +0 -5
- package/dist/core-runtime/evolve/renderers/scope-md.js +0 -237
- package/dist/core-runtime/evolve/renderers/scope-md.test.js +0 -306
- package/dist/core-runtime/govern/cli.js +0 -369
- package/dist/core-runtime/govern/cli.test.js +0 -314
- package/dist/core-runtime/govern/drift-engine.js +0 -103
- package/dist/core-runtime/govern/drift-engine.test.js +0 -319
- package/dist/core-runtime/govern/promote-principle.js +0 -206
- package/dist/core-runtime/govern/promote-principle.test.js +0 -368
- package/dist/core-runtime/govern/queue.js +0 -81
- package/dist/core-runtime/govern/types.js +0 -16
- package/dist/core-runtime/install/cli.js +0 -530
- package/dist/core-runtime/install/detect.js +0 -128
- package/dist/core-runtime/install/detect.test.js +0 -155
- package/dist/core-runtime/install/gitignore-update.js +0 -74
- package/dist/core-runtime/install/gitignore-update.test.js +0 -64
- package/dist/core-runtime/install/install-integration.test.js +0 -373
- package/dist/core-runtime/install/prompts.js +0 -389
- package/dist/core-runtime/install/prompts.test.js +0 -293
- package/dist/core-runtime/install/types.js +0 -26
- package/dist/core-runtime/install/validation.js +0 -295
- package/dist/core-runtime/install/validation.test.js +0 -313
- package/dist/core-runtime/install/writer.js +0 -254
- package/dist/core-runtime/install/writer.test.js +0 -218
- package/dist/core-runtime/learning/extractor.js +0 -461
- package/dist/core-runtime/learning/feedback.js +0 -179
- package/dist/core-runtime/learning/health-report.js +0 -165
- package/dist/core-runtime/learning/health-report.test.js +0 -169
- package/dist/core-runtime/learning/loader.js +0 -388
- package/dist/core-runtime/learning/loader.test.js +0 -102
- package/dist/core-runtime/learning/promote/apply-state.js +0 -240
- package/dist/core-runtime/learning/promote/audit-obligation.js +0 -195
- package/dist/core-runtime/learning/promote/collector.js +0 -432
- package/dist/core-runtime/learning/promote/degraded-state.js +0 -125
- package/dist/core-runtime/learning/promote/domain-doc-proposer.js +0 -166
- package/dist/core-runtime/learning/promote/e2e-promote.test.js +0 -6385
- package/dist/core-runtime/learning/promote/health-snapshot.js +0 -150
- package/dist/core-runtime/learning/promote/insight-reclassifier.js +0 -544
- package/dist/core-runtime/learning/promote/judgment-auditor.js +0 -517
- package/dist/core-runtime/learning/promote/panel-reviewer.js +0 -1158
- package/dist/core-runtime/learning/promote/promote-executor.js +0 -1675
- package/dist/core-runtime/learning/promote/promoter.js +0 -307
- package/dist/core-runtime/learning/promote/retirement.js +0 -122
- package/dist/core-runtime/learning/promote/types.js +0 -23
- package/dist/core-runtime/learning/prompt-sections.js +0 -51
- package/dist/core-runtime/learning/shared/artifact-registry-init.js +0 -45
- package/dist/core-runtime/learning/shared/artifact-registry.js +0 -254
- package/dist/core-runtime/learning/shared/audit-obligation-kernel.js +0 -73
- package/dist/core-runtime/learning/shared/audit-state.js +0 -99
- package/dist/core-runtime/learning/shared/duplicate-check.js +0 -28
- package/dist/core-runtime/learning/shared/llm-caller.js +0 -831
- package/dist/core-runtime/learning/shared/llm-caller.test.js +0 -601
- package/dist/core-runtime/learning/shared/llm-tool-loop.js +0 -393
- package/dist/core-runtime/learning/shared/mode.js +0 -25
- package/dist/core-runtime/learning/shared/paths.js +0 -84
- package/dist/core-runtime/learning/shared/paths.test.js +0 -79
- package/dist/core-runtime/learning/shared/patterns.js +0 -37
- package/dist/core-runtime/learning/shared/recoverability.js +0 -355
- package/dist/core-runtime/learning/shared/recovery-context.js +0 -374
- package/dist/core-runtime/learning/shared/scope.js +0 -1
- package/dist/core-runtime/learning/shared/semantic-classifier.js +0 -94
- package/dist/core-runtime/learning/shared/specs/apply-execution-state-spec.js +0 -42
- package/dist/core-runtime/learning/shared/specs/audit-state-spec.js +0 -37
- package/dist/core-runtime/learning/shared/specs/backup-metadata-spec.js +0 -39
- package/dist/core-runtime/learning/shared/specs/emergency-log-spec.js +0 -41
- package/dist/core-runtime/learning/shared/specs/layout-version-spec.js +0 -38
- package/dist/core-runtime/learning/shared/specs/promote-decisions-spec.js +0 -43
- package/dist/core-runtime/learning/shared/specs/promote-report-spec.js +0 -113
- package/dist/core-runtime/learning/shared/specs/prune-log-spec.js +0 -36
- package/dist/core-runtime/learning/shared/specs/recovery-resolution-spec.js +0 -48
- package/dist/core-runtime/learning/shared/specs/restore-manifest-spec.js +0 -43
- package/dist/core-runtime/learning/shared/specs/spec-helpers.js +0 -64
- package/dist/core-runtime/learning/usage-tracker.js +0 -190
- package/dist/core-runtime/learning/usage-tracker.test.js +0 -176
- package/dist/core-runtime/onboard/detect-review-axes.js +0 -122
- package/dist/core-runtime/onboard/detect-review-axes.test.js +0 -127
- package/dist/core-runtime/onboard/write-review-block.js +0 -188
- package/dist/core-runtime/onboard/write-review-block.test.js +0 -240
- package/dist/core-runtime/readers/brownfield-builder.js +0 -150
- package/dist/core-runtime/readers/brownfield-builder.test.js +0 -136
- package/dist/core-runtime/readers/code-chunk-collector.js +0 -53
- package/dist/core-runtime/readers/code-chunk-collector.test.js +0 -136
- package/dist/core-runtime/readers/file-utils.js +0 -240
- package/dist/core-runtime/readers/file-utils.test.js +0 -146
- package/dist/core-runtime/readers/lexicon-citation-check.js +0 -93
- package/dist/core-runtime/readers/lexicon-citation-check.test.js +0 -77
- package/dist/core-runtime/readers/mcp-figma.js +0 -30
- package/dist/core-runtime/readers/mcp-figma.test.js +0 -82
- package/dist/core-runtime/readers/mcp-generic.js +0 -31
- package/dist/core-runtime/readers/mcp-generic.test.js +0 -76
- package/dist/core-runtime/readers/ontology-index.js +0 -148
- package/dist/core-runtime/readers/ontology-index.test.js +0 -245
- package/dist/core-runtime/readers/ontology-query.js +0 -168
- package/dist/core-runtime/readers/ontology-query.test.js +0 -311
- package/dist/core-runtime/readers/ontology-resolve.js +0 -48
- package/dist/core-runtime/readers/ontology-resolve.test.js +0 -48
- package/dist/core-runtime/readers/patterns/index.js +0 -7
- package/dist/core-runtime/readers/review-log.js +0 -213
- package/dist/core-runtime/readers/review-log.test.js +0 -313
- package/dist/core-runtime/readers/scan-local.js +0 -102
- package/dist/core-runtime/readers/scan-local.test.js +0 -102
- package/dist/core-runtime/readers/scan-tarball.js +0 -121
- package/dist/core-runtime/readers/scan-tarball.test.js +0 -283
- package/dist/core-runtime/readers/scan-vault.js +0 -34
- package/dist/core-runtime/readers/scan-vault.test.js +0 -81
- package/dist/core-runtime/readers/types.js +0 -42
- package/dist/core-runtime/readers/types.test.js +0 -94
- package/dist/core-runtime/readers/viewpoint-collectors.js +0 -229
- package/dist/core-runtime/reconstruct/seed-candidate-validation.js +0 -385
- package/dist/core-runtime/review/citation-audit.test.js +0 -165
- package/dist/core-runtime/review/execution-plan-resolver.js +0 -247
- package/dist/core-runtime/review/execution-plan-resolver.test.js +0 -243
- package/dist/core-runtime/review/execution-topology-resolver-axis-first.test.js +0 -246
- package/dist/core-runtime/review/execution-topology-resolver.js +0 -401
- package/dist/core-runtime/review/execution-topology-resolver.test.js +0 -315
- package/dist/core-runtime/review/inline-context-embedder.test.js +0 -154
- package/dist/core-runtime/review/legacy-mode-policy.js +0 -88
- package/dist/core-runtime/review/materializers-effort-persist.test.js +0 -79
- package/dist/core-runtime/review/ontology-path-classifier.js +0 -179
- package/dist/core-runtime/review/ontology-path-classifier.test.js +0 -216
- package/dist/core-runtime/review/packet-boundary-policy.test.js +0 -107
- package/dist/core-runtime/review/participating-lens-paths.test.js +0 -73
- package/dist/core-runtime/review/review-config-legacy-translate.js +0 -244
- package/dist/core-runtime/review/review-config-legacy-translate.test.js +0 -161
- package/dist/core-runtime/review/review-config-validator.js +0 -289
- package/dist/core-runtime/review/review-config-validator.test.js +0 -236
- package/dist/core-runtime/review/shape-pipeline-audit.test.js +0 -311
- package/dist/core-runtime/review/shape-to-topology-id.js +0 -117
- package/dist/core-runtime/review/shape-to-topology-id.test.js +0 -132
- package/dist/core-runtime/review/topology-shape-derivation.js +0 -155
- package/dist/core-runtime/review/topology-shape-derivation.test.js +0 -195
- package/dist/core-runtime/scope-runtime/constants.js +0 -12
- package/dist/core-runtime/scope-runtime/constraint-pool.js +0 -166
- package/dist/core-runtime/scope-runtime/constraint-pool.test.js +0 -674
- package/dist/core-runtime/scope-runtime/domain-validation-log.js +0 -135
- package/dist/core-runtime/scope-runtime/domain-validation-log.test.js +0 -156
- package/dist/core-runtime/scope-runtime/eval-persistence.js +0 -65
- package/dist/core-runtime/scope-runtime/eval-persistence.test.js +0 -84
- package/dist/core-runtime/scope-runtime/event-pipeline.js +0 -64
- package/dist/core-runtime/scope-runtime/event-pipeline.test.js +0 -450
- package/dist/core-runtime/scope-runtime/event-store.js +0 -39
- package/dist/core-runtime/scope-runtime/event-store.test.js +0 -95
- package/dist/core-runtime/scope-runtime/gate-guard.js +0 -348
- package/dist/core-runtime/scope-runtime/gate-guard.test.js +0 -1047
- package/dist/core-runtime/scope-runtime/hash.js +0 -4
- package/dist/core-runtime/scope-runtime/hash.test.js +0 -33
- package/dist/core-runtime/scope-runtime/id.js +0 -4
- package/dist/core-runtime/scope-runtime/id.test.js +0 -17
- package/dist/core-runtime/scope-runtime/reducer.js +0 -297
- package/dist/core-runtime/scope-runtime/reducer.test.js +0 -759
- package/dist/core-runtime/scope-runtime/scope-manager.js +0 -161
- package/dist/core-runtime/scope-runtime/state-machine.js +0 -309
- package/dist/core-runtime/scope-runtime/state-machine.test.js +0 -704
- package/dist/core-runtime/scope-runtime/types.js +0 -116
- package/dist/core-runtime/scope-runtime/types.test.js +0 -69
- package/dist/core-runtime/translate/render-for-user.js +0 -169
- package/dist/core-runtime/translate/render-for-user.test.js +0 -122
- package/dist/providers/capability-contract.js +0 -1
|
@@ -0,0 +1,447 @@
|
|
|
1
|
+
# Reconstruct Actionable Ontology Seed Recomposition Design
|
|
2
|
+
|
|
3
|
+
> Status: active design plan.
|
|
4
|
+
> Purpose: define the complete reconstruct rework path so active runtime
|
|
5
|
+
> prompts, contracts, validation, and result UX converge on an actionable
|
|
6
|
+
> ontology seed.
|
|
7
|
+
|
|
8
|
+
## 1. Goal
|
|
9
|
+
|
|
10
|
+
Reconstruct should produce a seed that can support later decisions and actions.
|
|
11
|
+
|
|
12
|
+
The target output is `ontology-seed.yaml`, an `ActionableOntologySeed` that
|
|
13
|
+
contains:
|
|
14
|
+
|
|
15
|
+
- why the target exists
|
|
16
|
+
- what operational objects exist
|
|
17
|
+
- which actors participate
|
|
18
|
+
- what actions can happen
|
|
19
|
+
- what workflows or state transitions matter
|
|
20
|
+
- which permission or policy rules control action
|
|
21
|
+
- which source data backs, reads, writes, or proves the seed
|
|
22
|
+
- which external competency-question artifact tests the seed
|
|
23
|
+
- which limitations must be carried into the next step
|
|
24
|
+
|
|
25
|
+
The seed is complete enough when it can be handed to review, evolve, product
|
|
26
|
+
design, implementation planning, or user-facing explanation without pretending
|
|
27
|
+
that missing actors, actions, permissions, or data bindings are known.
|
|
28
|
+
|
|
29
|
+
## 2. Non-Negotiable Constraints
|
|
30
|
+
|
|
31
|
+
1. Runtime validates; the host LLM authors semantic meaning.
|
|
32
|
+
2. Active reconstruct prompts and contracts load only the active reconstruct
|
|
33
|
+
contract set.
|
|
34
|
+
3. Source material kind is classified before observation and validation.
|
|
35
|
+
4. Conceptual orientation is only one layer of the seed.
|
|
36
|
+
5. Salient candidates must receive explicit disposition.
|
|
37
|
+
6. Seed validity is separate from process completion.
|
|
38
|
+
7. Partial results may be useful, but limitations must be explicit.
|
|
39
|
+
8. `reconstruct-contract-registry.yaml` is the canonical machine-readable
|
|
40
|
+
authority graph for active runtime artifacts, validation gates, result
|
|
41
|
+
projections, source profile records, and reconstruct lens judgment records.
|
|
42
|
+
|
|
43
|
+
## 3. Active Concept Model
|
|
44
|
+
|
|
45
|
+
| Concept | Role | Owner |
|
|
46
|
+
|---|---|---|
|
|
47
|
+
| `ActionableOntologySeed` | primary reconstruct semantic artifact | host LLM authored, runtime validated |
|
|
48
|
+
| `TargetMaterialKind` | source handling axis | shared contract |
|
|
49
|
+
| `SourceProfileDefinition` | material-specific observation guide | reconstruct contract |
|
|
50
|
+
| `SelectedSourceProfile` | runtime selection recorded after material classification | runtime |
|
|
51
|
+
| `SourceObservation` | structural evidence record | runtime |
|
|
52
|
+
| `ReconstructLensJudgment` | independent semantic judgment over observed evidence | host LLM |
|
|
53
|
+
| `ExplorationSynthesis` | integrated round result and next-source need | host LLM |
|
|
54
|
+
| `SourceFrontier` | requested next source refs | host LLM authored, runtime validated |
|
|
55
|
+
| `CandidateInventory` | salient candidate set found in evidence | host LLM |
|
|
56
|
+
| `CandidateDisposition` | placement decision for every salient candidate | host LLM |
|
|
57
|
+
| `CompetencyQuestion` | question used to test seed usefulness | host LLM |
|
|
58
|
+
| `TerminalHandoffReadinessValidation` | runtime gate projection for declared downstream use | runtime |
|
|
59
|
+
| `ReconstructRecord` | structured run record and artifact truth index | runtime |
|
|
60
|
+
|
|
61
|
+
New runtime or MCP fields should reuse these concepts. A new concept is allowed
|
|
62
|
+
only when it changes ownership, lifecycle, validation behavior, public output,
|
|
63
|
+
or artifact authority.
|
|
64
|
+
|
|
65
|
+
## 4. Target Process
|
|
66
|
+
|
|
67
|
+
```text
|
|
68
|
+
1. Bind target and purpose
|
|
69
|
+
2. Classify material kind
|
|
70
|
+
3. Build source inventory
|
|
71
|
+
4. Observe selected source slices
|
|
72
|
+
5. Select evidence for semantic use
|
|
73
|
+
6. Run reconstruct lens judgments
|
|
74
|
+
7. Synthesize gaps and next-source frontier
|
|
75
|
+
8. Repeat observation with round lineage if frontier is valid and useful
|
|
76
|
+
9. Build candidate inventory
|
|
77
|
+
10. Record candidate disposition
|
|
78
|
+
11. Author ActionableOntologySeed
|
|
79
|
+
12. Validate seed-shape gates
|
|
80
|
+
13. Author claim-realization map
|
|
81
|
+
14. Validate claim-realization map
|
|
82
|
+
15. Confirm seed claims or record limitations
|
|
83
|
+
16. Validate seed confirmation and derive CQ eligibility
|
|
84
|
+
17. Author competency questions
|
|
85
|
+
18. Validate competency-question coverage
|
|
86
|
+
19. Assess competency questions
|
|
87
|
+
20. Validate competency-question assessment
|
|
88
|
+
21. Classify failures and propose bounded revision
|
|
89
|
+
22. Emit metrics and stop decision
|
|
90
|
+
23. Validate terminal handoff readiness from runtime gates and stop decision
|
|
91
|
+
24. Emit final output and reconstruct record
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Each step either writes an artifact or records why it cannot proceed.
|
|
95
|
+
|
|
96
|
+
## 5. Exploration Strategy
|
|
97
|
+
|
|
98
|
+
Exploration should look for missing actionable layers, not just missing
|
|
99
|
+
orientation concepts.
|
|
100
|
+
|
|
101
|
+
The next source frontier should prefer source refs that may change:
|
|
102
|
+
|
|
103
|
+
- object identity or object boundaries
|
|
104
|
+
- actor roles and principals
|
|
105
|
+
- available actions
|
|
106
|
+
- workflow or state transition understanding
|
|
107
|
+
- permission or policy treatment
|
|
108
|
+
- data source, read model, write target, or provenance treatment
|
|
109
|
+
- competency-question answerability
|
|
110
|
+
- handoff limitation severity
|
|
111
|
+
|
|
112
|
+
The frontier should not request more source only to add detail that cannot
|
|
113
|
+
change seed validity for the declared purpose.
|
|
114
|
+
|
|
115
|
+
Each repeated observation must be traceable. Runtime records an
|
|
116
|
+
`observation_batch_id`, `round_id`, and `triggering_frontier_ref` on new
|
|
117
|
+
observation records, and writes a round-scoped observation delta artifact before
|
|
118
|
+
new evidence can enter the next directive, lens judgment, synthesis, or
|
|
119
|
+
candidate finalization step.
|
|
120
|
+
|
|
121
|
+
The delta artifact is lineage evidence, not gate truth. Runtime must also write
|
|
122
|
+
`rounds/<round-id>/source-observation-delta-validation.yaml` to prove the
|
|
123
|
+
pre-use lineage check passed or failed. Frontier validation authorizes what may
|
|
124
|
+
be observed; delta validation proves what was actually observed and how it is
|
|
125
|
+
tied to the round/frontier before downstream semantic use.
|
|
126
|
+
|
|
127
|
+
`source_frontier_gate` must validate duplicate status against current
|
|
128
|
+
`source-observations.yaml`, not only against the source inventory. The
|
|
129
|
+
`observation_reentry_gate` is the only gate that validates downstream re-entry
|
|
130
|
+
from declared authority refs: lens judgments, exploration synthesis,
|
|
131
|
+
candidate inventory/disposition, and seed validation artifacts.
|
|
132
|
+
|
|
133
|
+
## 6. Candidate Strategy
|
|
134
|
+
|
|
135
|
+
The candidate inventory is the bridge between source evidence and seed layers.
|
|
136
|
+
Root candidate kinds are owned by
|
|
137
|
+
`reconstruct-contract-registry.yaml#candidate_kind_registry`; this design does
|
|
138
|
+
not carry an independent candidate-kind enum.
|
|
139
|
+
|
|
140
|
+
Every high-salience candidate must appear in `candidate-disposition.yaml`.
|
|
141
|
+
Disposition is what prevents the seed from losing terms such as user, account,
|
|
142
|
+
admin, approval, dashboard, cost, export, permission, or invoice simply because
|
|
143
|
+
they do not fit the conceptual frame.
|
|
144
|
+
|
|
145
|
+
`candidate-inventory.yaml` is the candidate-set authority.
|
|
146
|
+
`candidate-disposition.yaml` is the candidate-disposition authority.
|
|
147
|
+
`ontology-seed.yaml` may reference those authorities, but it must not restate a
|
|
148
|
+
second authoritative disposition ledger.
|
|
149
|
+
|
|
150
|
+
For `promoted_to_seed_layer`, `target_seed_refs[]` names planned canonical seed
|
|
151
|
+
refs that the later `ontology-seed.yaml` must realize. The disposition artifact
|
|
152
|
+
therefore does not prove the seed already exists; it declares the placement
|
|
153
|
+
commitment that seed validation must close.
|
|
154
|
+
|
|
155
|
+
## 7. Seed Validity Strategy
|
|
156
|
+
|
|
157
|
+
Process completion means the run reached an end state and wrote records.
|
|
158
|
+
|
|
159
|
+
Seed validity means the authored seed and downstream validation artifacts pass
|
|
160
|
+
the gates needed for the declared downstream purpose.
|
|
161
|
+
|
|
162
|
+
Validation is lifecycle-scoped. A seed-shape validation artifact may not claim
|
|
163
|
+
final seed validity before seed confirmation, competency-question, assessment,
|
|
164
|
+
and handoff validation artifacts exist.
|
|
165
|
+
|
|
166
|
+
The complete gate and validation-artifact catalog is registry-owned at
|
|
167
|
+
`reconstruct-contract-registry.yaml#validation_gate_catalog`,
|
|
168
|
+
`#validator_records`, and `#readiness_projection.handoff_validation_policy`.
|
|
169
|
+
This design document names gate families only: material profile, source evidence
|
|
170
|
+
and frontier lineage, candidate disposition, seed layer and connectivity,
|
|
171
|
+
competency questions and assessment, seed confirmation, conditional query,
|
|
172
|
+
visualization and graph-exploration proofs, failure/revision handling, run
|
|
173
|
+
manifest validation, and terminal handoff validation.
|
|
174
|
+
|
|
175
|
+
`seed_confirmation_gate` is lifecycle-required whenever seed validity or handoff
|
|
176
|
+
readiness is projected. If `seed-confirmation.yaml` or
|
|
177
|
+
`seed-confirmation-validation.yaml` is absent at that lifecycle point, runtime
|
|
178
|
+
must project `blocked`. A limitation state is allowed only when both
|
|
179
|
+
`seed-confirmation.yaml` and `seed-confirmation-validation.yaml` exist and the
|
|
180
|
+
validation artifact proves the limitation state against the validated seed and
|
|
181
|
+
derives CQ eligibility. Assessment-aware readiness is evaluated by
|
|
182
|
+
`handoff-decision-validation.yaml`.
|
|
183
|
+
`handoff-decision-validation.yaml` must validate against the validation-result
|
|
184
|
+
authorities that contribute to readiness, including
|
|
185
|
+
`reconstruct-run-manifest.pre-handoff-validation.yaml`; it may not rely only on raw authored
|
|
186
|
+
artifacts, unvalidated run manifests, or record projections.
|
|
187
|
+
The set of contributing validation artifacts is condition-aware. Runtime derives
|
|
188
|
+
applicability from each gate's `required_when`: missing required-and-applicable
|
|
189
|
+
validation artifacts project `blocked`, while unmet conditional paths project
|
|
190
|
+
`not_applicable` and do not block a clean run.
|
|
191
|
+
Each `required_when` predicate is evaluated from the registry-owned predicate
|
|
192
|
+
catalog, which names input artifact refs, field-level truth expressions, unknown
|
|
193
|
+
projection, and the explanation template for status/result surfaces.
|
|
194
|
+
If an active gate names a predicate expression that the runtime evaluator does
|
|
195
|
+
not support, runtime treats that gate as unknown and fails the handoff closed
|
|
196
|
+
until the evaluator is implemented. Unsupported active predicates must not
|
|
197
|
+
silently project `not_applicable`.
|
|
198
|
+
Terminal `handoff-decision-validation.yaml` is produced by `handoff_gate`.
|
|
199
|
+
`final-output.md` and `reconstruct-record.yaml` are emitted only after
|
|
200
|
+
`handoff-decision-validation.yaml` passes; they are projections from the
|
|
201
|
+
validated terminal readiness result, not inputs to the terminal readiness validator.
|
|
202
|
+
`final-output-provenance-validation.yaml` validates the post-handoff user-facing
|
|
203
|
+
projection. It is not a readiness gate for `handoff-decision-validation.yaml`.
|
|
204
|
+
|
|
205
|
+
The canonical readiness projection must distinguish:
|
|
206
|
+
|
|
207
|
+
- ready for the declared downstream purpose
|
|
208
|
+
- usable with named limitations
|
|
209
|
+
- not ready because required seed validity gates failed
|
|
210
|
+
- blocked because source or user confirmation is missing
|
|
211
|
+
|
|
212
|
+
Artifact-specific readiness fields may use local names, but status/result APIs
|
|
213
|
+
and final output must project one canonical readiness value:
|
|
214
|
+
`ready`, `limited`, `not_ready`, or `blocked`.
|
|
215
|
+
|
|
216
|
+
## 8. Artifact Plan
|
|
217
|
+
|
|
218
|
+
The complete target artifact list is registry-owned at
|
|
219
|
+
`reconstruct-contract-registry.yaml#artifact_authorities`. This plan groups the
|
|
220
|
+
artifact families as preparation/observation, round exploration,
|
|
221
|
+
candidate/disposition, seed/validation, competency questions and assessment,
|
|
222
|
+
confirmation, conditional proof authorities, failure/revision, metrics,
|
|
223
|
+
handoff, final output, run manifest, and reconstruct record.
|
|
224
|
+
|
|
225
|
+
`ontology-seed.yaml` is the seed semantic authority.
|
|
226
|
+
`candidate-disposition.yaml` is the disposition authority.
|
|
227
|
+
`competency-questions.yaml` is the question authority.
|
|
228
|
+
`competency-question-assessment.yaml` is the answerability-result authority.
|
|
229
|
+
`reconstruct-contract-registry.yaml` is the active runtime authority graph.
|
|
230
|
+
`reconstruct-record.yaml` is the run authority and artifact index; it contains
|
|
231
|
+
refs, hashes, validation statuses, and bounded projections only.
|
|
232
|
+
|
|
233
|
+
## 9. Runtime Validation Plan
|
|
234
|
+
|
|
235
|
+
Runtime validation should be deterministic and fail loud.
|
|
236
|
+
|
|
237
|
+
Validation responsibilities:
|
|
238
|
+
|
|
239
|
+
- schema parse and required field checks
|
|
240
|
+
- allowed enum checks
|
|
241
|
+
- id uniqueness
|
|
242
|
+
- cross-reference closure
|
|
243
|
+
- evidence-ref closure
|
|
244
|
+
- material-kind/source-ref alignment
|
|
245
|
+
- pre-use round lineage, frontier-to-observation closure, and post-use
|
|
246
|
+
observation re-entry closure
|
|
247
|
+
- seed layer closure
|
|
248
|
+
- candidate disposition completeness
|
|
249
|
+
- action actor/object binding
|
|
250
|
+
- permission coverage or declared limitation
|
|
251
|
+
- data binding coverage or declared limitation
|
|
252
|
+
- ontology-facing mapping or limitation coverage
|
|
253
|
+
- competency-question coverage and assessment trace
|
|
254
|
+
- failure classification and revision proposal bounds
|
|
255
|
+
- stop-decision and handoff-validation consistency
|
|
256
|
+
- registry-selected artifact, gate, profile, lens judgment, and readiness
|
|
257
|
+
projection consistency
|
|
258
|
+
- lifecycle-required seed confirmation and handoff validation-result authority
|
|
259
|
+
closure
|
|
260
|
+
- final-output provenance footer
|
|
261
|
+
|
|
262
|
+
Runtime may calculate metrics from artifacts, but metrics are not semantic truth.
|
|
263
|
+
|
|
264
|
+
## 10. Prompt Plan
|
|
265
|
+
|
|
266
|
+
Prompt packets should give the host LLM:
|
|
267
|
+
|
|
268
|
+
- declared purpose and target refs
|
|
269
|
+
- material profile
|
|
270
|
+
- compact source observations
|
|
271
|
+
- full artifact ref locations
|
|
272
|
+
- active seed contract
|
|
273
|
+
- required output schema for the current stage
|
|
274
|
+
- validation failure from the previous attempt, when retrying
|
|
275
|
+
- selected registry snapshot, source profile ids, and reconstruct lens ids
|
|
276
|
+
- validator ids, validator versions, and prior validation failure artifacts when
|
|
277
|
+
retrying
|
|
278
|
+
|
|
279
|
+
Prompt packets must not include development history. If the model needs to know
|
|
280
|
+
why a previous attempt failed, it should receive the validation artifact, not
|
|
281
|
+
archived design discussion.
|
|
282
|
+
|
|
283
|
+
## 11. Result UX Plan
|
|
284
|
+
|
|
285
|
+
The beginning of a run should state:
|
|
286
|
+
|
|
287
|
+
- target refs
|
|
288
|
+
- material kind and profile
|
|
289
|
+
- execution profile and provider route, without secrets
|
|
290
|
+
- declared purpose and review direction
|
|
291
|
+
- expected artifact path
|
|
292
|
+
|
|
293
|
+
Progress updates should be stepwise:
|
|
294
|
+
|
|
295
|
+
```text
|
|
296
|
+
[1/8] Source classified
|
|
297
|
+
[2/8] Source evidence observed
|
|
298
|
+
[3/8] Semantic judgments running
|
|
299
|
+
[4/8] Candidate disposition built
|
|
300
|
+
[5/8] Seed authored
|
|
301
|
+
[6/8] Seed-shape validation running
|
|
302
|
+
[7/8] Questions, assessment, and handoff validation running
|
|
303
|
+
[8/8] Final output and record written
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
Updates should include new information learned from artifacts, not only process
|
|
307
|
+
metadata. Example:
|
|
308
|
+
|
|
309
|
+
- newly identified object candidates
|
|
310
|
+
- unresolved actor or permission gaps
|
|
311
|
+
- actions found without writeback evidence
|
|
312
|
+
- source areas that changed the frontier
|
|
313
|
+
- validation gates that passed or failed
|
|
314
|
+
|
|
315
|
+
No separate HTML UI is required. CLI/MCP hosts should receive progress through
|
|
316
|
+
LLM-presentable status text, status polling, and native progress notifications
|
|
317
|
+
where supported.
|
|
318
|
+
|
|
319
|
+
## 12. Implementation Sequence
|
|
320
|
+
|
|
321
|
+
### Stage 1. Active Documentation Baseline
|
|
322
|
+
|
|
323
|
+
Expected result:
|
|
324
|
+
|
|
325
|
+
- active reconstruct docs reference only the current seed model
|
|
326
|
+
- active docs list the current contract set
|
|
327
|
+
- operation-facing docs do not load development history
|
|
328
|
+
- `README.md`, `AGENTS.md`, and `IMPLEMENTATION_MAP.html` point to the same
|
|
329
|
+
seed target
|
|
330
|
+
|
|
331
|
+
### Stage 2. Schema And Type Seats
|
|
332
|
+
|
|
333
|
+
Expected result:
|
|
334
|
+
|
|
335
|
+
- TypeScript types exist for target artifacts and validation results
|
|
336
|
+
- current runtime artifact names match this design
|
|
337
|
+
- registry entries exist for every active artifact, validation gate, source
|
|
338
|
+
profile, reconstruct lens judgment, and readiness projection
|
|
339
|
+
- old implementation-only shape names are removed from public status/result
|
|
340
|
+
surfaces
|
|
341
|
+
- fixture parsers reject malformed seed layers and dangling refs
|
|
342
|
+
|
|
343
|
+
### Stage 3. Prompt Rewire
|
|
344
|
+
|
|
345
|
+
Expected result:
|
|
346
|
+
|
|
347
|
+
- author prompts request `candidate-inventory.yaml`,
|
|
348
|
+
`candidate-disposition.yaml`, and `ontology-seed.yaml`
|
|
349
|
+
- question prompts request `competency-questions.yaml` only after seed-shape
|
|
350
|
+
validation succeeds or records explicit seed limitations
|
|
351
|
+
- prompts load only active contracts and compact source evidence
|
|
352
|
+
- retry prompts receive validation failures as the repair context
|
|
353
|
+
|
|
354
|
+
### Stage 4. Runtime Gates
|
|
355
|
+
|
|
356
|
+
Expected result:
|
|
357
|
+
|
|
358
|
+
- every validation gate in Section 7 has a deterministic validator
|
|
359
|
+
- validation phases are split into seed-shape, question coverage, question
|
|
360
|
+
assessment, confirmation, and handoff validation
|
|
361
|
+
- active source-frontier validation records dependency proof on
|
|
362
|
+
`target-material-profile-validation.yaml`; source-observation deltas,
|
|
363
|
+
admission lineage, and post-use re-entry validation remain planned gates until
|
|
364
|
+
their validators are promoted in the registry
|
|
365
|
+
- target material profile facts and material profile gate status are separated
|
|
366
|
+
into `target-material-profile.yaml` and `target-material-profile-validation.yaml`
|
|
367
|
+
- source frontier validation is represented by `source_frontier_gate`
|
|
368
|
+
- seed confirmation validation is represented by `seed_confirmation_gate`
|
|
369
|
+
- seed confirmation is required before seed validity or handoff readiness is
|
|
370
|
+
projected; missing confirmation projects `blocked` unless a valid limitation
|
|
371
|
+
state is recorded
|
|
372
|
+
- seed-confirmation and handoff validators consume validation-result authorities,
|
|
373
|
+
not only raw authored artifacts or reconstruct-record projections
|
|
374
|
+
- handoff validation applies each validation artifact through the registry's
|
|
375
|
+
`required_when` conditions so inactive source-frontier, failure, or revision
|
|
376
|
+
paths project `not_applicable` instead of `blocked`
|
|
377
|
+
- ontology seed validation may validate expected competency coverage axes, but
|
|
378
|
+
it must not require downstream competency-question ids before
|
|
379
|
+
`competency-questions.yaml` is authored
|
|
380
|
+
- source-frontier validation owns duplicate/inventory/upstream material-profile
|
|
381
|
+
checks; planned round-lineage and observation-reentry validators own pre-use
|
|
382
|
+
lineage and downstream re-entry checks after promotion
|
|
383
|
+
- failure classification and revision proposal validators run when required
|
|
384
|
+
applicable validation artifacts are missing, gates fail, or halt conditions
|
|
385
|
+
occur
|
|
386
|
+
- failure classification validation consumes failed-gate validation artifacts or
|
|
387
|
+
runtime halt evidence, and revision proposal validation consumes
|
|
388
|
+
`failure-classification-validation.yaml`
|
|
389
|
+
- failed gates write structured validation artifacts
|
|
390
|
+
- no gate repairs missing semantic content
|
|
391
|
+
- status/result APIs expose failed gates and handoff limitations
|
|
392
|
+
|
|
393
|
+
### Stage 5. Final Output And Record
|
|
394
|
+
|
|
395
|
+
Expected result:
|
|
396
|
+
|
|
397
|
+
- final output presents purpose, layers, trust limits, next action, and artifact
|
|
398
|
+
refs
|
|
399
|
+
- `reconstruct-record.yaml` indexes every artifact and validation result
|
|
400
|
+
- `handoff-decision-validation.yaml` proves the stop decision and runtime
|
|
401
|
+
readiness projection agree with validation artifacts and the validated
|
|
402
|
+
pre-handoff run-manifest snapshot before final output and record projections
|
|
403
|
+
are emitted
|
|
404
|
+
- final output and status/result APIs expose one canonical readiness projection
|
|
405
|
+
- seed validity and process completion are reported separately
|
|
406
|
+
|
|
407
|
+
### Stage 6. E2E Verification
|
|
408
|
+
|
|
409
|
+
Expected result:
|
|
410
|
+
|
|
411
|
+
- a real repository run produces `ontology-seed.yaml`
|
|
412
|
+
- source refs close against `source-observations.yaml`
|
|
413
|
+
- candidate disposition includes salient objects, actors, actions, permissions,
|
|
414
|
+
and data sources
|
|
415
|
+
- competency questions and assessments are authored from validated seed refs and
|
|
416
|
+
close through traceable evidence
|
|
417
|
+
- round-scoped observation lineage links frontier-triggered observations back
|
|
418
|
+
into lens judgment and synthesis
|
|
419
|
+
- run manifest records the registry ref/hash, active contract refs/hashes,
|
|
420
|
+
source profile snapshots and migration mappings, lens ids, validator
|
|
421
|
+
versions, reference authority snapshots, and pattern catalog URI/snapshot
|
|
422
|
+
facts used for the run
|
|
423
|
+
- review over the produced seed can evaluate ontology adequacy without needing
|
|
424
|
+
development history
|
|
425
|
+
- failures are visible at the first invalid gate
|
|
426
|
+
|
|
427
|
+
## 13. Completion Definition For This Recomposition
|
|
428
|
+
|
|
429
|
+
The recomposition is implemented when a fresh reconstruct run against a real
|
|
430
|
+
target produces:
|
|
431
|
+
|
|
432
|
+
1. material-aware source observations,
|
|
433
|
+
2. candidate inventory and disposition,
|
|
434
|
+
3. `ontology-seed.yaml` using the active seed contract,
|
|
435
|
+
4. deterministic validation artifacts for every gate,
|
|
436
|
+
5. canonical candidate-disposition, competency-question, assessment, and
|
|
437
|
+
handoff-validation authorities, including diagnostic or claim-based P3
|
|
438
|
+
competency-question disposition when ontology domain competency admission is present,
|
|
439
|
+
6. active source-frontier dependency validation, plus promoted pre-use lineage
|
|
440
|
+
and post-use re-entry validation when multi-round validators become active,
|
|
441
|
+
7. registry ref/hash plus active contract ref/hash, source profile migration,
|
|
442
|
+
lens judgment, concrete gate-instance, validator, reference-standard,
|
|
443
|
+
pattern-catalog URI/snapshot, and readiness-projection snapshots,
|
|
444
|
+
8. separate process-completion and seed-validity reporting,
|
|
445
|
+
9. final output that explains actionable seed content, canonical readiness, and
|
|
446
|
+
limitations, and
|
|
447
|
+
10. a reconstruct record whose artifact refs are the source of truth.
|