onto-mcp 0.3.2 → 0.4.1
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 +149 -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 +174 -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 +214 -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,1645 @@
|
|
|
1
|
+
schema_version: 1
|
|
2
|
+
registry_id: reconstruct-active-contract-registry
|
|
3
|
+
status: active
|
|
4
|
+
purpose: Canonical machine-readable registry for active reconstruct contracts, runtime artifact authorities, validation gates, projection policy, and version policy.
|
|
5
|
+
|
|
6
|
+
authority_scope:
|
|
7
|
+
decision: canonical_runtime_authority_graph
|
|
8
|
+
meaning: Runtime validator dispatch, artifact completeness checks, required-gate evaluation, status projections, and reconstruct-record projections must use this registry as the active authority graph.
|
|
9
|
+
prose_contract_role: Active prose contracts define semantics and rationale; this registry names the executable authority seats that runtime must follow.
|
|
10
|
+
run_snapshot_rule: Every reconstruct run manifest must record the selected registry ref, registry hash, active contract hashes, source profile ids, lens ids, validator versions, selected reference standard ids, selected reference standard version_or_snapshot_id values, selected pattern catalog ids and snapshots, admitted domain competency admission refs/hashes, admitted competency ids, admitted competency migration mappings, and migration status values used for that run.
|
|
11
|
+
|
|
12
|
+
active_contract_refs:
|
|
13
|
+
- contract_id: reconstruct-boundary-contract
|
|
14
|
+
ref: .onto/processes/reconstruct/reconstruct-boundary-contract.md
|
|
15
|
+
role: boundary_contract
|
|
16
|
+
schema_version: 1
|
|
17
|
+
migration_status: current
|
|
18
|
+
- contract_id: actionable-ontology-seed-recomposition-design
|
|
19
|
+
ref: .onto/processes/reconstruct/actionable-ontology-seed-recomposition-design.md
|
|
20
|
+
role: implementation_design
|
|
21
|
+
schema_version: 1
|
|
22
|
+
migration_status: current
|
|
23
|
+
- contract_id: foundry-style-ontology-seed-contract
|
|
24
|
+
ref: .onto/processes/reconstruct/foundry-style-ontology-seed-contract.md
|
|
25
|
+
role: seed_contract
|
|
26
|
+
schema_version: 1
|
|
27
|
+
migration_status: current
|
|
28
|
+
- contract_id: reconstruct-execution-ux-contract
|
|
29
|
+
ref: .onto/processes/reconstruct/reconstruct-execution-ux-contract.md
|
|
30
|
+
role: execution_ux_contract
|
|
31
|
+
schema_version: 1
|
|
32
|
+
migration_status: current
|
|
33
|
+
- contract_id: source-profile-contract
|
|
34
|
+
ref: .onto/processes/reconstruct/source-profile-contract.md
|
|
35
|
+
role: source_profile_contract
|
|
36
|
+
schema_version: 1
|
|
37
|
+
migration_status: current
|
|
38
|
+
- contract_id: target-material-kind-contract
|
|
39
|
+
ref: .onto/processes/shared/target-material-kind-contract.md
|
|
40
|
+
role: material_kind_contract
|
|
41
|
+
schema_version: 1
|
|
42
|
+
migration_status: current
|
|
43
|
+
- contract_id: pipeline-execution-ledger-contract
|
|
44
|
+
ref: .onto/processes/shared/pipeline-execution-ledger-contract.md
|
|
45
|
+
role: pipeline_ledger_contract
|
|
46
|
+
schema_version: 1
|
|
47
|
+
migration_status: current
|
|
48
|
+
|
|
49
|
+
source_profile_records:
|
|
50
|
+
- profile_id: code-source-profile
|
|
51
|
+
target_material_kind: code
|
|
52
|
+
is_default_for_kind: true
|
|
53
|
+
definition_ref: .onto/processes/reconstruct/source-profiles/code.md
|
|
54
|
+
definition_sha256: ac1968b4eb2035c514bf16350e8508f35a260761512e3a9b7f3a8c0026812221
|
|
55
|
+
contract_status: active
|
|
56
|
+
runtime_implementation_status: partially_wired
|
|
57
|
+
schema_version: 1
|
|
58
|
+
profile_version: 1
|
|
59
|
+
migration_status: current
|
|
60
|
+
supersedes: []
|
|
61
|
+
replaced_by: []
|
|
62
|
+
split_from: []
|
|
63
|
+
split_into: []
|
|
64
|
+
merged_from: []
|
|
65
|
+
merged_into: []
|
|
66
|
+
- profile_id: spreadsheet-source-profile
|
|
67
|
+
target_material_kind: spreadsheet
|
|
68
|
+
is_default_for_kind: true
|
|
69
|
+
definition_ref: .onto/processes/reconstruct/source-profiles/spreadsheet.md
|
|
70
|
+
definition_sha256: d399d5b693b9926f140f1b4f95a5c97b28abc95d652062205e66296588d64b58
|
|
71
|
+
contract_status: active
|
|
72
|
+
runtime_implementation_status: planned
|
|
73
|
+
schema_version: 1
|
|
74
|
+
profile_version: 1
|
|
75
|
+
migration_status: current
|
|
76
|
+
supersedes: []
|
|
77
|
+
replaced_by: []
|
|
78
|
+
split_from: []
|
|
79
|
+
split_into: []
|
|
80
|
+
merged_from: []
|
|
81
|
+
merged_into: []
|
|
82
|
+
- profile_id: database-source-profile
|
|
83
|
+
target_material_kind: database
|
|
84
|
+
is_default_for_kind: true
|
|
85
|
+
definition_ref: .onto/processes/reconstruct/source-profiles/database.md
|
|
86
|
+
definition_sha256: 50c0fe6935df46ac0343b42ffc7ecc9981687d48ce229e0da28a6efc4c518477
|
|
87
|
+
contract_status: active
|
|
88
|
+
runtime_implementation_status: planned
|
|
89
|
+
schema_version: 1
|
|
90
|
+
profile_version: 1
|
|
91
|
+
migration_status: current
|
|
92
|
+
supersedes: []
|
|
93
|
+
replaced_by: []
|
|
94
|
+
split_from: []
|
|
95
|
+
split_into: []
|
|
96
|
+
merged_from: []
|
|
97
|
+
merged_into: []
|
|
98
|
+
- profile_id: document-source-profile
|
|
99
|
+
target_material_kind: document
|
|
100
|
+
is_default_for_kind: true
|
|
101
|
+
definition_ref: .onto/processes/reconstruct/source-profiles/document.md
|
|
102
|
+
definition_sha256: db6b0d30008e2dbcd5bf0ba1542e8599874414ded80c10fcb6261f5fa1b3a117
|
|
103
|
+
contract_status: active
|
|
104
|
+
runtime_implementation_status: planned
|
|
105
|
+
schema_version: 1
|
|
106
|
+
profile_version: 1
|
|
107
|
+
migration_status: current
|
|
108
|
+
supersedes: []
|
|
109
|
+
replaced_by: []
|
|
110
|
+
split_from: []
|
|
111
|
+
split_into: []
|
|
112
|
+
merged_from: []
|
|
113
|
+
merged_into: []
|
|
114
|
+
- profile_id: mixed-source-profile
|
|
115
|
+
target_material_kind: mixed
|
|
116
|
+
is_default_for_kind: true
|
|
117
|
+
definition_ref: null
|
|
118
|
+
definition_sha256: not_applicable
|
|
119
|
+
contract_status: active_public_kind
|
|
120
|
+
runtime_implementation_status: partial_composite_only
|
|
121
|
+
schema_version: 1
|
|
122
|
+
profile_version: 1
|
|
123
|
+
migration_status: current
|
|
124
|
+
supersedes: []
|
|
125
|
+
replaced_by: []
|
|
126
|
+
split_from: []
|
|
127
|
+
split_into: []
|
|
128
|
+
merged_from: []
|
|
129
|
+
merged_into: []
|
|
130
|
+
- profile_id: unknown-source-profile
|
|
131
|
+
target_material_kind: unknown
|
|
132
|
+
is_default_for_kind: true
|
|
133
|
+
definition_ref: null
|
|
134
|
+
definition_sha256: not_applicable
|
|
135
|
+
contract_status: active_public_kind
|
|
136
|
+
runtime_implementation_status: unsupported_halt_or_clarify
|
|
137
|
+
schema_version: 1
|
|
138
|
+
profile_version: 1
|
|
139
|
+
migration_status: current
|
|
140
|
+
supersedes: []
|
|
141
|
+
replaced_by: []
|
|
142
|
+
split_from: []
|
|
143
|
+
split_into: []
|
|
144
|
+
merged_from: []
|
|
145
|
+
merged_into: []
|
|
146
|
+
|
|
147
|
+
source_profile_migration_policy:
|
|
148
|
+
migration_fields: [profile_id, profile_version, migration_status, supersedes, replaced_by, split_from, split_into, merged_from, merged_into]
|
|
149
|
+
migration_status_values: [current, supported_previous, deprecated_supported, replaced, split, merged, unsupported]
|
|
150
|
+
replay_rule: Previous source profile snapshots must either match an active source_profile_records.profile_id or resolve through supersedes/replaced_by/split_from/split_into/merged_from/merged_into mappings before replay, comparison, or migration projection can be trusted.
|
|
151
|
+
unresolved_previous_profile_projection: blocked
|
|
152
|
+
|
|
153
|
+
reconstruct_lens_judgment_registry:
|
|
154
|
+
- lens_id: logic
|
|
155
|
+
display_name: Logic
|
|
156
|
+
purpose: Judge contradiction, type conflict, and constraint conflict in the reconstruct evidence and seed draft.
|
|
157
|
+
required: true
|
|
158
|
+
artifact_glob: rounds/<round-id>/lens-judgments/logic.yaml
|
|
159
|
+
prompt_schema_version: 1
|
|
160
|
+
output_schema_version: 1
|
|
161
|
+
migration_status: current
|
|
162
|
+
- lens_id: structure
|
|
163
|
+
display_name: Structure
|
|
164
|
+
purpose: Judge isolated elements, broken paths, and missing relations in the reconstruct evidence and seed draft.
|
|
165
|
+
required: true
|
|
166
|
+
artifact_glob: rounds/<round-id>/lens-judgments/structure.yaml
|
|
167
|
+
prompt_schema_version: 1
|
|
168
|
+
output_schema_version: 1
|
|
169
|
+
migration_status: current
|
|
170
|
+
- lens_id: dependency
|
|
171
|
+
display_name: Dependency
|
|
172
|
+
purpose: Judge cycles, reverse dependencies, and dependency diamonds in the reconstruct evidence and seed draft.
|
|
173
|
+
required: true
|
|
174
|
+
artifact_glob: rounds/<round-id>/lens-judgments/dependency.yaml
|
|
175
|
+
prompt_schema_version: 1
|
|
176
|
+
output_schema_version: 1
|
|
177
|
+
migration_status: current
|
|
178
|
+
- lens_id: semantics
|
|
179
|
+
display_name: Semantics
|
|
180
|
+
purpose: Judge name-meaning mismatch, synonym drift, and ambiguous semantic boundaries in the reconstruct evidence and seed draft.
|
|
181
|
+
required: true
|
|
182
|
+
artifact_glob: rounds/<round-id>/lens-judgments/semantics.yaml
|
|
183
|
+
prompt_schema_version: 1
|
|
184
|
+
output_schema_version: 1
|
|
185
|
+
migration_status: current
|
|
186
|
+
- lens_id: pragmatics
|
|
187
|
+
display_name: Pragmatics
|
|
188
|
+
purpose: Judge queryability, actionability, and competency-question fit for the declared reconstruct purpose.
|
|
189
|
+
required: true
|
|
190
|
+
artifact_glob: rounds/<round-id>/lens-judgments/pragmatics.yaml
|
|
191
|
+
prompt_schema_version: 1
|
|
192
|
+
output_schema_version: 1
|
|
193
|
+
migration_status: current
|
|
194
|
+
- lens_id: evolution
|
|
195
|
+
display_name: Evolution
|
|
196
|
+
purpose: Judge breakage risk when new source material, new domains, or future ontology evolution are added.
|
|
197
|
+
required: true
|
|
198
|
+
artifact_glob: rounds/<round-id>/lens-judgments/evolution.yaml
|
|
199
|
+
prompt_schema_version: 1
|
|
200
|
+
output_schema_version: 1
|
|
201
|
+
migration_status: current
|
|
202
|
+
- lens_id: coverage
|
|
203
|
+
display_name: Coverage
|
|
204
|
+
purpose: Judge missing subdomains, concept bias, and standard-coverage gaps, including ontology handoff coverage.
|
|
205
|
+
required: true
|
|
206
|
+
artifact_glob: rounds/<round-id>/lens-judgments/coverage.yaml
|
|
207
|
+
prompt_schema_version: 1
|
|
208
|
+
output_schema_version: 1
|
|
209
|
+
migration_status: current
|
|
210
|
+
- lens_id: conciseness
|
|
211
|
+
display_name: Conciseness
|
|
212
|
+
purpose: Judge duplicate definitions, over-specific concepts, and unnecessary distinctions in the seed draft.
|
|
213
|
+
required: true
|
|
214
|
+
artifact_glob: rounds/<round-id>/lens-judgments/conciseness.yaml
|
|
215
|
+
prompt_schema_version: 1
|
|
216
|
+
output_schema_version: 1
|
|
217
|
+
migration_status: current
|
|
218
|
+
- lens_id: axiology
|
|
219
|
+
display_name: Axiology
|
|
220
|
+
purpose: Judge purpose alignment, value conflict, and mission fit for the declared reconstruct use.
|
|
221
|
+
required: true
|
|
222
|
+
artifact_glob: rounds/<round-id>/lens-judgments/axiology.yaml
|
|
223
|
+
prompt_schema_version: 1
|
|
224
|
+
output_schema_version: 1
|
|
225
|
+
migration_status: current
|
|
226
|
+
|
|
227
|
+
coverage_axis_registry:
|
|
228
|
+
- axis_id: purpose
|
|
229
|
+
- axis_id: semantic_layer
|
|
230
|
+
- axis_id: kinetic_layer
|
|
231
|
+
- axis_id: dynamic_layer
|
|
232
|
+
- axis_id: data_binding_layer
|
|
233
|
+
- axis_id: ontology_handoff
|
|
234
|
+
- axis_id: limitation
|
|
235
|
+
- axis_id: source_authority
|
|
236
|
+
|
|
237
|
+
candidate_kind_registry:
|
|
238
|
+
- candidate_kind_id: object
|
|
239
|
+
canonical_projection_hint: semantic_layer.object_types
|
|
240
|
+
- candidate_kind_id: actor
|
|
241
|
+
canonical_projection_hint: dynamic_layer.actor_types
|
|
242
|
+
- candidate_kind_id: action
|
|
243
|
+
canonical_projection_hint: kinetic_layer.action_types
|
|
244
|
+
- candidate_kind_id: workflow
|
|
245
|
+
canonical_projection_hint: kinetic_layer.workflows
|
|
246
|
+
- candidate_kind_id: permission
|
|
247
|
+
canonical_projection_hint: dynamic_layer.permission_policies
|
|
248
|
+
- candidate_kind_id: data_source
|
|
249
|
+
canonical_projection_hint: data_binding_layer.source_bindings
|
|
250
|
+
- candidate_kind_id: constraint
|
|
251
|
+
canonical_projection_hint: semantic_layer.constraints
|
|
252
|
+
- candidate_kind_id: concept
|
|
253
|
+
canonical_projection_hint: conceptual_frame.concepts
|
|
254
|
+
- candidate_kind_id: other
|
|
255
|
+
canonical_projection_hint: candidate_disposition_required
|
|
256
|
+
|
|
257
|
+
candidate_disposition_registry:
|
|
258
|
+
- disposition_id: promoted_to_seed_layer
|
|
259
|
+
meaning: Candidate is planned for promotion into a seed object, actor, action, workflow, permission, data binding, constraint, or concept; target_seed_refs are placement commitments that ontology-seed.yaml must later realize.
|
|
260
|
+
- disposition_id: represented_as_property
|
|
261
|
+
meaning: Candidate is better modeled as a property of another object.
|
|
262
|
+
- disposition_id: represented_as_link
|
|
263
|
+
meaning: Candidate is better modeled as a link between objects.
|
|
264
|
+
- disposition_id: represented_as_actor_role
|
|
265
|
+
meaning: Candidate is a role of an actor type.
|
|
266
|
+
- disposition_id: represented_as_permission_rule
|
|
267
|
+
meaning: Candidate is represented by a permission or policy rule.
|
|
268
|
+
- disposition_id: represented_as_data_binding
|
|
269
|
+
meaning: Candidate is represented by a data source, read model, writeback, or provenance binding.
|
|
270
|
+
- disposition_id: represented_as_validation_question
|
|
271
|
+
meaning: Candidate remains a question needed to validate the seed.
|
|
272
|
+
- disposition_id: deferred_by_source_gap
|
|
273
|
+
meaning: Candidate needs unobserved source or user confirmation.
|
|
274
|
+
- disposition_id: rejected_for_declared_purpose
|
|
275
|
+
meaning: Candidate is outside the declared reconstruct purpose.
|
|
276
|
+
|
|
277
|
+
ontology_handoff_axis_registry:
|
|
278
|
+
- axis_id: classification
|
|
279
|
+
- axis_id: entity_identity
|
|
280
|
+
- axis_id: instance_assertion_coverage
|
|
281
|
+
- axis_id: terminology
|
|
282
|
+
- axis_id: relation_typing
|
|
283
|
+
- axis_id: constraints
|
|
284
|
+
- axis_id: modularity
|
|
285
|
+
- axis_id: reasoning_or_formalism_profile
|
|
286
|
+
- axis_id: application_context
|
|
287
|
+
- axis_id: provenance
|
|
288
|
+
- axis_id: change_tracking
|
|
289
|
+
- axis_id: competency_scope
|
|
290
|
+
- axis_id: alignment
|
|
291
|
+
- axis_id: graph_connectivity
|
|
292
|
+
- axis_id: limitations
|
|
293
|
+
|
|
294
|
+
reasoning_or_formalism_profile_contract:
|
|
295
|
+
representation_formalism_values:
|
|
296
|
+
- none
|
|
297
|
+
- informal_actionable_graph
|
|
298
|
+
- rdfs
|
|
299
|
+
- owl
|
|
300
|
+
- mixed
|
|
301
|
+
- unknown
|
|
302
|
+
vocabulary_system_values:
|
|
303
|
+
- none
|
|
304
|
+
- skos
|
|
305
|
+
- rdfs
|
|
306
|
+
- custom_controlled_vocabulary
|
|
307
|
+
- mixed
|
|
308
|
+
- unknown
|
|
309
|
+
validation_formalism_values:
|
|
310
|
+
- none
|
|
311
|
+
- shacl
|
|
312
|
+
- shex
|
|
313
|
+
- custom_runtime_validator
|
|
314
|
+
- mixed
|
|
315
|
+
- unknown
|
|
316
|
+
ontology_type_values:
|
|
317
|
+
- none
|
|
318
|
+
- taxonomy
|
|
319
|
+
- application_ontology
|
|
320
|
+
- domain_ontology
|
|
321
|
+
- upper_ontology
|
|
322
|
+
- axiom_based_ontology
|
|
323
|
+
- action_centric_ontology
|
|
324
|
+
- knowledge_graph_support_ontology
|
|
325
|
+
- application_schema_ontology
|
|
326
|
+
- mixed
|
|
327
|
+
- unknown
|
|
328
|
+
alignment_posture_values:
|
|
329
|
+
- none
|
|
330
|
+
- external_vocabulary_alignment
|
|
331
|
+
- upper_ontology_alignment
|
|
332
|
+
- domain_profile_alignment
|
|
333
|
+
- custom_alignment
|
|
334
|
+
- mixed
|
|
335
|
+
- unknown
|
|
336
|
+
owl_profile_values:
|
|
337
|
+
- not_applicable
|
|
338
|
+
- owl_2_el
|
|
339
|
+
- owl_2_ql
|
|
340
|
+
- owl_2_rl
|
|
341
|
+
- owl_2_dl
|
|
342
|
+
- owl_2_full
|
|
343
|
+
- unspecified
|
|
344
|
+
required_when: ontology_handoff_claim_exists
|
|
345
|
+
owl_profile_required_when: representation_formalism_is_owl_or_mixed
|
|
346
|
+
ontology_type_required_when: ontology_handoff_claim_exists
|
|
347
|
+
missing_required_detail_projection: limited_or_not_ready_with_limitation_ref
|
|
348
|
+
facet_registry:
|
|
349
|
+
- facet_id: representation_formalism
|
|
350
|
+
- facet_id: vocabulary_systems
|
|
351
|
+
- facet_id: validation_formalisms
|
|
352
|
+
- facet_id: ontology_type
|
|
353
|
+
- facet_id: owl_profile
|
|
354
|
+
- facet_id: alignment_posture
|
|
355
|
+
- facet_id: reasoning_expectations
|
|
356
|
+
- facet_id: validation_expectations
|
|
357
|
+
|
|
358
|
+
ontology_handoff_facet_contract:
|
|
359
|
+
entity_identity_facet_registry:
|
|
360
|
+
- facet_id: entity_id_policy
|
|
361
|
+
- facet_id: uri_or_iri_policy
|
|
362
|
+
- facet_id: canonical_identifier_refs
|
|
363
|
+
- facet_id: alias_identifier_refs
|
|
364
|
+
- facet_id: primitive_vs_defined_status
|
|
365
|
+
- facet_id: definition_criteria_refs
|
|
366
|
+
instance_assertion_facet_registry:
|
|
367
|
+
- facet_id: instance_availability_status
|
|
368
|
+
- facet_id: instance_refs
|
|
369
|
+
- facet_id: example_assertion_refs
|
|
370
|
+
- facet_id: abox_assertion_refs
|
|
371
|
+
- facet_id: limitation_refs
|
|
372
|
+
terminology_facet_registry:
|
|
373
|
+
- facet_id: canonical_label_policy
|
|
374
|
+
- facet_id: alias_policy
|
|
375
|
+
- facet_id: hidden_label_policy
|
|
376
|
+
- facet_id: homonym_policy
|
|
377
|
+
- facet_id: multilingual_label_policy
|
|
378
|
+
- facet_id: language_tag_policy
|
|
379
|
+
relation_type_facet_registry:
|
|
380
|
+
- facet_id: relation_type_refs
|
|
381
|
+
- facet_id: formal_relation_semantics
|
|
382
|
+
- facet_id: domain_range_declarations
|
|
383
|
+
- facet_id: relation_property_constraints
|
|
384
|
+
classification_facet_registry:
|
|
385
|
+
- facet_id: ontology_scope_kind
|
|
386
|
+
- facet_id: classification_axis_policy
|
|
387
|
+
- facet_id: classification_level_axis_refs
|
|
388
|
+
- facet_id: inheritance_model
|
|
389
|
+
- facet_id: mece_status
|
|
390
|
+
constraint_facet_registry:
|
|
391
|
+
- facet_id: tbox_constraints
|
|
392
|
+
- facet_id: abox_assertion_constraints
|
|
393
|
+
- facet_id: shape_or_validation_constraints
|
|
394
|
+
- facet_id: policy_constraints
|
|
395
|
+
modeling_concern_applicability_registry:
|
|
396
|
+
- concern_id: ontology_representation_formalism
|
|
397
|
+
applicability_predicate_id: representation_formalism_claim_exists
|
|
398
|
+
required_trace: competency_question_or_limitation_ref
|
|
399
|
+
- concern_id: controlled_vocabulary_modeling
|
|
400
|
+
applicability_predicate_id: vocabulary_system_claim_exists
|
|
401
|
+
required_trace: competency_question_or_limitation_ref
|
|
402
|
+
- concern_id: shape_or_validation_modeling
|
|
403
|
+
applicability_predicate_id: validation_formalism_claim_exists
|
|
404
|
+
required_trace: competency_question_or_limitation_ref
|
|
405
|
+
- concern_id: meta_modeling
|
|
406
|
+
applicability_predicate_id: meta_level_class_property_relation_claim_exists
|
|
407
|
+
required_trace: competency_question_or_limitation_ref
|
|
408
|
+
- concern_id: temporal_modeling
|
|
409
|
+
applicability_predicate_id: temporal_state_or_event_claim_exists
|
|
410
|
+
required_trace: competency_question_or_limitation_ref
|
|
411
|
+
- concern_id: dataset_or_observation_modeling
|
|
412
|
+
applicability_predicate_id: dataset_observation_or_measurement_claim_exists
|
|
413
|
+
required_trace: competency_question_or_limitation_ref
|
|
414
|
+
- concern_id: dataset_or_data_catalog_modeling
|
|
415
|
+
applicability_predicate_id: dataset_catalog_claim_exists
|
|
416
|
+
required_trace: competency_question_or_limitation_ref
|
|
417
|
+
- concern_id: data_integration
|
|
418
|
+
applicability_predicate_id: data_integration_claim_exists
|
|
419
|
+
required_trace: competency_question_or_limitation_ref
|
|
420
|
+
- concern_id: quantity_unit_modeling
|
|
421
|
+
applicability_predicate_id: quantity_metric_or_unit_claim_exists
|
|
422
|
+
required_trace: competency_question_or_limitation_ref
|
|
423
|
+
- concern_id: geospatial_modeling
|
|
424
|
+
applicability_predicate_id: location_geometry_or_region_claim_exists
|
|
425
|
+
required_trace: competency_question_or_limitation_ref
|
|
426
|
+
- concern_id: metadata_and_provenance_modeling
|
|
427
|
+
applicability_predicate_id: provenance_metadata_or_lineage_claim_exists
|
|
428
|
+
required_trace: competency_question_or_limitation_ref
|
|
429
|
+
- concern_id: ontology_design_pattern
|
|
430
|
+
applicability_predicate_id: reusable_pattern_or_common_relation_shape_claim_exists
|
|
431
|
+
required_trace: competency_question_or_limitation_ref
|
|
432
|
+
- concern_id: query_interface
|
|
433
|
+
applicability_predicate_id: downstream_query_or_access_claim_exists
|
|
434
|
+
required_trace: competency_question_or_limitation_ref
|
|
435
|
+
- concern_id: visualization_interface
|
|
436
|
+
applicability_predicate_id: downstream_visualization_claim_exists
|
|
437
|
+
required_trace: competency_question_or_limitation_ref
|
|
438
|
+
- concern_id: graph_exploration_interface
|
|
439
|
+
applicability_predicate_id: downstream_graph_exploration_claim_exists
|
|
440
|
+
required_trace: competency_question_or_limitation_ref
|
|
441
|
+
reference_standard_registry:
|
|
442
|
+
- standard_ref_id: owl_2
|
|
443
|
+
concern_ids: [ontology_representation_formalism, meta_modeling]
|
|
444
|
+
governed_seed_fields:
|
|
445
|
+
- ontology_handoff.reasoning_or_formalism_profile.representation_formalism
|
|
446
|
+
- ontology_handoff.reasoning_or_formalism_profile.owl_profile
|
|
447
|
+
canonical_uri: https://www.w3.org/TR/owl2-overview/
|
|
448
|
+
version_or_snapshot_id: run_snapshot_required
|
|
449
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
450
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
451
|
+
supersedes: []
|
|
452
|
+
migration_status: current
|
|
453
|
+
compatible_validator_versions: [current]
|
|
454
|
+
profile_or_subset_ref: ontology_handoff.reasoning_or_formalism_profile.owl_profile
|
|
455
|
+
- standard_ref_id: rdfs
|
|
456
|
+
concern_ids: [ontology_representation_formalism, controlled_vocabulary_modeling, meta_modeling]
|
|
457
|
+
governed_seed_fields:
|
|
458
|
+
- ontology_handoff.reasoning_or_formalism_profile.representation_formalism
|
|
459
|
+
- ontology_handoff.reasoning_or_formalism_profile.vocabulary_systems
|
|
460
|
+
canonical_uri: https://www.w3.org/TR/rdf-schema/
|
|
461
|
+
version_or_snapshot_id: run_snapshot_required
|
|
462
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
463
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
464
|
+
supersedes: []
|
|
465
|
+
migration_status: current
|
|
466
|
+
compatible_validator_versions: [current]
|
|
467
|
+
profile_or_subset_ref: null
|
|
468
|
+
- standard_ref_id: skos
|
|
469
|
+
concern_ids: [controlled_vocabulary_modeling]
|
|
470
|
+
governed_seed_fields:
|
|
471
|
+
- ontology_handoff.reasoning_or_formalism_profile.vocabulary_systems
|
|
472
|
+
canonical_uri: https://www.w3.org/TR/skos-reference/
|
|
473
|
+
version_or_snapshot_id: run_snapshot_required
|
|
474
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
475
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
476
|
+
supersedes: []
|
|
477
|
+
migration_status: current
|
|
478
|
+
compatible_validator_versions: [current]
|
|
479
|
+
profile_or_subset_ref: null
|
|
480
|
+
- standard_ref_id: shacl
|
|
481
|
+
concern_ids: [shape_or_validation_modeling]
|
|
482
|
+
governed_seed_fields:
|
|
483
|
+
- ontology_handoff.reasoning_or_formalism_profile.validation_formalisms
|
|
484
|
+
- ontology_handoff.constraint_mapping.shape_or_validation_constraint_refs
|
|
485
|
+
canonical_uri: https://www.w3.org/TR/shacl/
|
|
486
|
+
version_or_snapshot_id: run_snapshot_required
|
|
487
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
488
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
489
|
+
supersedes: []
|
|
490
|
+
migration_status: current
|
|
491
|
+
compatible_validator_versions: [current]
|
|
492
|
+
profile_or_subset_ref: null
|
|
493
|
+
- standard_ref_id: dublin_core_terms
|
|
494
|
+
concern_ids: [metadata_and_provenance_modeling]
|
|
495
|
+
governed_seed_fields:
|
|
496
|
+
- ontology_handoff.metadata_mapping.descriptive_metadata_refs
|
|
497
|
+
- ontology_handoff.metadata_mapping.bibliographic_metadata_refs
|
|
498
|
+
- ontology_handoff.metadata_mapping.resource_metadata_refs
|
|
499
|
+
canonical_uri: https://www.dublincore.org/specifications/dublin-core/dcmi-terms/
|
|
500
|
+
version_or_snapshot_id: run_snapshot_required
|
|
501
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
502
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
503
|
+
supersedes: []
|
|
504
|
+
migration_status: current
|
|
505
|
+
compatible_validator_versions: [current]
|
|
506
|
+
profile_or_subset_ref: null
|
|
507
|
+
- standard_ref_id: dcat
|
|
508
|
+
concern_ids: [dataset_or_data_catalog_modeling, data_integration, metadata_and_provenance_modeling]
|
|
509
|
+
governed_seed_fields:
|
|
510
|
+
- data_binding_layer.source_bindings
|
|
511
|
+
- data_binding_layer.read_models
|
|
512
|
+
- data_binding_layer.provenance_bindings
|
|
513
|
+
canonical_uri: https://www.w3.org/TR/vocab-dcat/
|
|
514
|
+
version_or_snapshot_id: run_snapshot_required
|
|
515
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
516
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
517
|
+
supersedes: []
|
|
518
|
+
migration_status: current
|
|
519
|
+
compatible_validator_versions: [current]
|
|
520
|
+
profile_or_subset_ref: null
|
|
521
|
+
- standard_ref_id: w3c_time
|
|
522
|
+
concern_ids: [temporal_modeling]
|
|
523
|
+
governed_seed_fields:
|
|
524
|
+
- dynamic_layer.state_models
|
|
525
|
+
- dynamic_layer.lifecycle_rules
|
|
526
|
+
- semantic_layer.value_types
|
|
527
|
+
canonical_uri: https://www.w3.org/TR/owl-time/
|
|
528
|
+
version_or_snapshot_id: run_snapshot_required
|
|
529
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
530
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
531
|
+
supersedes: []
|
|
532
|
+
migration_status: current
|
|
533
|
+
compatible_validator_versions: [current]
|
|
534
|
+
profile_or_subset_ref: null
|
|
535
|
+
- standard_ref_id: rdf_data_cube
|
|
536
|
+
concern_ids: [dataset_or_observation_modeling]
|
|
537
|
+
governed_seed_fields:
|
|
538
|
+
- data_binding_layer.read_models
|
|
539
|
+
- data_binding_layer.source_bindings
|
|
540
|
+
canonical_uri: https://www.w3.org/TR/vocab-data-cube/
|
|
541
|
+
version_or_snapshot_id: run_snapshot_required
|
|
542
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
543
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
544
|
+
supersedes: []
|
|
545
|
+
migration_status: current
|
|
546
|
+
compatible_validator_versions: [current]
|
|
547
|
+
profile_or_subset_ref: null
|
|
548
|
+
- standard_ref_id: sosa_ssn
|
|
549
|
+
concern_ids: [dataset_or_observation_modeling]
|
|
550
|
+
governed_seed_fields:
|
|
551
|
+
- data_binding_layer.read_models
|
|
552
|
+
- data_binding_layer.source_bindings
|
|
553
|
+
canonical_uri: https://www.w3.org/TR/vocab-ssn/
|
|
554
|
+
version_or_snapshot_id: run_snapshot_required
|
|
555
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
556
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
557
|
+
supersedes: []
|
|
558
|
+
migration_status: current
|
|
559
|
+
compatible_validator_versions: [current]
|
|
560
|
+
profile_or_subset_ref: null
|
|
561
|
+
- standard_ref_id: qudt
|
|
562
|
+
concern_ids: [quantity_unit_modeling]
|
|
563
|
+
governed_seed_fields:
|
|
564
|
+
- semantic_layer.object_types[].properties
|
|
565
|
+
- semantic_layer.value_types
|
|
566
|
+
- data_binding_layer.read_models
|
|
567
|
+
canonical_uri: https://qudt.org/schema/qudt/
|
|
568
|
+
version_or_snapshot_id: run_snapshot_required
|
|
569
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
570
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
571
|
+
supersedes: []
|
|
572
|
+
migration_status: current
|
|
573
|
+
compatible_validator_versions: [current]
|
|
574
|
+
profile_or_subset_ref: null
|
|
575
|
+
- standard_ref_id: om
|
|
576
|
+
concern_ids: [quantity_unit_modeling]
|
|
577
|
+
governed_seed_fields:
|
|
578
|
+
- semantic_layer.object_types[].properties
|
|
579
|
+
- semantic_layer.value_types
|
|
580
|
+
- data_binding_layer.read_models
|
|
581
|
+
canonical_uri: https://www.ontology-of-units-of-measure.org/resource/om-2/
|
|
582
|
+
version_or_snapshot_id: run_snapshot_required
|
|
583
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
584
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
585
|
+
supersedes: []
|
|
586
|
+
migration_status: current
|
|
587
|
+
compatible_validator_versions: [current]
|
|
588
|
+
profile_or_subset_ref: null
|
|
589
|
+
- standard_ref_id: geo_sparql
|
|
590
|
+
concern_ids: [geospatial_modeling]
|
|
591
|
+
governed_seed_fields:
|
|
592
|
+
- semantic_layer.link_types
|
|
593
|
+
- data_binding_layer.read_models
|
|
594
|
+
canonical_uri: https://www.ogc.org/standard/geosparql/
|
|
595
|
+
version_or_snapshot_id: run_snapshot_required
|
|
596
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
597
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
598
|
+
supersedes: []
|
|
599
|
+
migration_status: current
|
|
600
|
+
compatible_validator_versions: [current]
|
|
601
|
+
profile_or_subset_ref: null
|
|
602
|
+
- standard_ref_id: prov_o
|
|
603
|
+
concern_ids: [metadata_and_provenance_modeling]
|
|
604
|
+
governed_seed_fields:
|
|
605
|
+
- ontology_handoff.provenance_mapping.provenance_binding_refs
|
|
606
|
+
canonical_uri: https://www.w3.org/TR/prov-o/
|
|
607
|
+
version_or_snapshot_id: run_snapshot_required
|
|
608
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
609
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
610
|
+
supersedes: []
|
|
611
|
+
migration_status: current
|
|
612
|
+
compatible_validator_versions: [current]
|
|
613
|
+
profile_or_subset_ref: null
|
|
614
|
+
- standard_ref_id: sparql
|
|
615
|
+
concern_ids: [query_interface]
|
|
616
|
+
governed_seed_fields:
|
|
617
|
+
- ontology_handoff.query_access_contract.applies
|
|
618
|
+
canonical_uri: https://www.w3.org/TR/sparql11-query/
|
|
619
|
+
version_or_snapshot_id: run_snapshot_required
|
|
620
|
+
version_policy: selected_version_must_be_recorded_in_reconstruct_run_manifest
|
|
621
|
+
license_or_usage_constraint: external_standard_terms_apply
|
|
622
|
+
supersedes: []
|
|
623
|
+
migration_status: current
|
|
624
|
+
compatible_validator_versions: [current]
|
|
625
|
+
profile_or_subset_ref: null
|
|
626
|
+
reference_pattern_catalog_registry:
|
|
627
|
+
- pattern_catalog_ref_id: ontology_design_pattern_catalog
|
|
628
|
+
concern_ids: [ontology_design_pattern]
|
|
629
|
+
governed_seed_fields:
|
|
630
|
+
- ontology_handoff.pattern_catalog_mapping.pattern_catalog_refs
|
|
631
|
+
canonical_uri_policy: selected_run_manifest_value_required
|
|
632
|
+
canonical_uri_validation_rule: Runtime must validate that each selected pattern catalog canonical URI is recorded in the run manifest, non-empty, and bound to the selected pattern_catalog_ref_id and version_or_snapshot_id for that run; the registry does not compare against a symbolic URI literal.
|
|
633
|
+
version_or_snapshot_id: run_snapshot_required
|
|
634
|
+
version_policy: selected_catalog_snapshot_must_be_recorded_in_reconstruct_run_manifest
|
|
635
|
+
selected_pattern_catalog_ref_id_required_in_run_manifest: true
|
|
636
|
+
selected_canonical_uri_required_in_run_manifest: true
|
|
637
|
+
selected_version_or_snapshot_id_required_in_run_manifest: true
|
|
638
|
+
license_or_usage_constraint: external_catalog_terms_apply
|
|
639
|
+
supersedes: []
|
|
640
|
+
migration_status: current
|
|
641
|
+
compatible_validator_versions: [current]
|
|
642
|
+
reference_standard_field_path_closure:
|
|
643
|
+
path_source: ontology_handoff_facet_contract.reference_standard_registry[].governed_seed_fields[]
|
|
644
|
+
schema_authority_ref: .onto/processes/reconstruct/foundry-style-ontology-seed-contract.md#ActionableOntologySeed
|
|
645
|
+
validator_owner: ontology-seed-validator
|
|
646
|
+
rule: Every governed_seed_fields[] path must resolve to a declared ActionableOntologySeed path before a standard_ref_id can be selected.
|
|
647
|
+
missing_path_projection: blocked
|
|
648
|
+
reference_pattern_catalog_field_path_closure:
|
|
649
|
+
path_source: ontology_handoff_facet_contract.reference_pattern_catalog_registry[].governed_seed_fields[]
|
|
650
|
+
schema_authority_ref: .onto/processes/reconstruct/foundry-style-ontology-seed-contract.md#ActionableOntologySeed
|
|
651
|
+
validator_owner: ontology-seed-validator
|
|
652
|
+
rule: Every governed_seed_fields[] path must resolve to a declared ActionableOntologySeed path before a pattern_catalog_ref_id can be selected.
|
|
653
|
+
missing_path_projection: blocked
|
|
654
|
+
domain_competency_trace_contract:
|
|
655
|
+
question_field: competency-questions.yaml.questions[].domain_competency_trace_refs[]
|
|
656
|
+
validator_owner: competency-questions-validator
|
|
657
|
+
allowed_ref_kinds:
|
|
658
|
+
- domain_competency_question_id
|
|
659
|
+
input_authority_refs:
|
|
660
|
+
- reconstruct-run-manifest.yaml
|
|
661
|
+
- reconstruct-contract-registry.yaml
|
|
662
|
+
closure_rule: Every domain_competency_trace_refs[] value must resolve to a required_admitted_competency_ids[] value recorded in the reconstruct run-manifest governing snapshot. Domain admission refs and source document refs are not valid trace refs.
|
|
663
|
+
untraced_generated_question_projection: diagnostic_or_limitation_backed
|
|
664
|
+
domain_id_contract:
|
|
665
|
+
validator_owner: runtime
|
|
666
|
+
grammar: ^[a-z0-9]+(?:-[a-z0-9]+)*$
|
|
667
|
+
grammar_description: lowercase letters or digits separated by single hyphens
|
|
668
|
+
rejected_examples:
|
|
669
|
+
- ../ontology
|
|
670
|
+
- software/engineering
|
|
671
|
+
- Software-Engineering
|
|
672
|
+
- software_engineering
|
|
673
|
+
- software:engineering
|
|
674
|
+
- software engineering
|
|
675
|
+
path_containment_rule: Before stat/read, runtime must resolve each admitted domain competency source path under the selected authority root and reject any path or realpath escape.
|
|
676
|
+
source_ref_rule: Project-seat competency source refs are project-root-relative POSIX refs; user and installation seats use seat-qualified refs.
|
|
677
|
+
admitted_domain_competency_ref_taxonomy:
|
|
678
|
+
admission_refs_field: reconstruct-run-manifest.yaml#governing_snapshot.admitted_domain_competency_refs
|
|
679
|
+
admission_ref_kind: domain_admission_identity
|
|
680
|
+
admission_ref_format: domain:<domain_id>
|
|
681
|
+
source_refs_field: reconstruct-run-manifest.yaml#governing_snapshot.admitted_domain_competency_source_refs
|
|
682
|
+
source_ref_kind: competency_source_document
|
|
683
|
+
required_competency_ids_field: reconstruct-run-manifest.yaml#governing_snapshot.required_admitted_competency_ids
|
|
684
|
+
required_competency_id_format: domain:<domain_id>#<competency_id>
|
|
685
|
+
trace_ref_rule: competency-questions.yaml.questions[].domain_competency_trace_refs[] may contain only required_competency_ids_field values.
|
|
686
|
+
admitted_domain_competency_disposition_rule:
|
|
687
|
+
scope: each_admitted_domain_competency_snapshot
|
|
688
|
+
source_ref_field: reconstruct-run-manifest.yaml#governing_snapshot.admitted_domain_competency_snapshots[].source_ref
|
|
689
|
+
admission_policy_id: required_p1_with_all_priorities_metadata
|
|
690
|
+
supported_runtime_admission_policy_ids: [required_p1_with_all_priorities_metadata]
|
|
691
|
+
required_priority_values: [P1]
|
|
692
|
+
metadata_priority_values: [P2, P3]
|
|
693
|
+
admission_rule: When a domain competency snapshot is admitted into reconstruct run context, runtime must derive required_admitted_competency_ids from that snapshot using the active admission_policy_id; under required_p1_with_all_priorities_metadata, P1 ids are required, while P2 and P3 ids remain in admitted_competencies/admitted_competency_priorities as diagnostic metadata until an explicit downstream claim promotes them in a future admission policy.
|
|
694
|
+
p1_rule: Every P1 competency question in each admitted domain competency snapshot must have exactly one competency-questions.yaml.questions[] row with coverage_disposition, lifecycle_status, domain_competency_trace_refs[], and limitation_refs[] when disposition is limited, unsupported, deferred, or not_applicable.
|
|
695
|
+
p2_rule: P2 competency questions in each admitted domain competency snapshot are retained with priority metadata but are not required in competency-questions.yaml until a future explicit downstream promotion policy is implemented.
|
|
696
|
+
p3_rule: P3 competency questions in each admitted domain competency snapshot are retained with priority metadata but are not required in competency-questions.yaml until a future explicit downstream promotion policy is implemented.
|
|
697
|
+
allowed_dispositions: [covered, limited, unsupported, deferred, not_applicable]
|
|
698
|
+
silent_omission_projection: not_ready
|
|
699
|
+
competency_id_migration_policy:
|
|
700
|
+
migration_fields: [competency_id, source_version_or_snapshot_id, migration_status, supersedes, replaced_by, split_from, split_into, merged_from, merged_into]
|
|
701
|
+
migration_status_values: [current, supported_previous, deprecated_supported, replaced, split, merged, unsupported]
|
|
702
|
+
deprecated_alias_resolution: resolve_to_current_id_or_require_explicit_replacement_disposition
|
|
703
|
+
predicate_execution_contract:
|
|
704
|
+
default_predicate_evaluator_id: reconstruct_registry_predicate_v1
|
|
705
|
+
allowed_predicate_evaluator_ids:
|
|
706
|
+
- reconstruct_registry_predicate_v1
|
|
707
|
+
- artifact_exists_v1
|
|
708
|
+
- downstream_claim_v1
|
|
709
|
+
- seed_field_presence_v1
|
|
710
|
+
predicate_phase_values:
|
|
711
|
+
- gate_applicability
|
|
712
|
+
- post_required_when_validation
|
|
713
|
+
default_predicate_phase: gate_applicability
|
|
714
|
+
evaluator_version_field: predicate_evaluator_version
|
|
715
|
+
expression_role: truth_expression is a stable evaluator input token, not free prose.
|
|
716
|
+
snapshot_rule: required-when-evaluation.yaml and reconstruct-run-manifest.yaml must record gate_instance_id, gate_id, predicate_id, predicate_instance_id, predicate_phase, round_id when the gate is round-scoped, concrete input refs, predicate_evaluator_id, predicate_evaluator_version, applicability, result truth value, unknown projection, and explanation.
|
|
717
|
+
round_scoped_gate_instance_rule: Gates whose validation_artifact_ref contains rounds/<round-id> must emit one concrete required-when evaluation row per observed or requested round_id, using concrete artifact refs rather than the wildcard family as the readiness authority.
|
|
718
|
+
post_required_when_validation_rule: Predicates with predicate_phase post_required_when_validation are evaluated only after required-when-evaluation-validation.yaml exists; missing or failed required-when-evaluation-validation.yaml is itself a failed required applicable validation artifact for failure classification.
|
|
719
|
+
unknown_evaluator_projection: blocked
|
|
720
|
+
handoff_limitation_contract:
|
|
721
|
+
id_field: limitation_id
|
|
722
|
+
canonical_location: ontology_seed.handoff_limitations[]
|
|
723
|
+
allowed_limitation_kind_values:
|
|
724
|
+
- missing_source
|
|
725
|
+
- unsupported_axis
|
|
726
|
+
- insufficient_evidence
|
|
727
|
+
- unresolved_confirmation
|
|
728
|
+
- runtime_capability_gap
|
|
729
|
+
- external_standard_unselected
|
|
730
|
+
required_fields:
|
|
731
|
+
- limitation_id
|
|
732
|
+
- limitation_kind
|
|
733
|
+
- description
|
|
734
|
+
- affected_refs
|
|
735
|
+
- evidence_refs
|
|
736
|
+
closure_rule: Every limitation_refs[] value in ontology_handoff mappings, modeling concern applicability rows, query access contracts, visualization contracts, graph-exploration contracts, competency questions, assessments, seed confirmation, and terminal handoff readiness validation must resolve to ontology_seed.handoff_limitations[].limitation_id.
|
|
737
|
+
dangling_ref_projection: not_ready
|
|
738
|
+
query_access_contract_registry:
|
|
739
|
+
- contract_ref_id: project_query_access_contract
|
|
740
|
+
concern_ids: [query_interface]
|
|
741
|
+
required_when_predicate_id: downstream_query_or_access_claim_exists
|
|
742
|
+
required_contract_fields:
|
|
743
|
+
- applies
|
|
744
|
+
missing_proof_projection: limited_or_not_ready_with_limitation_ref
|
|
745
|
+
query_proof_authority_contract:
|
|
746
|
+
authority_ref: query-proofs.yaml
|
|
747
|
+
validation_ref: query-proofs-validation.yaml
|
|
748
|
+
id_field: query_proof_id
|
|
749
|
+
required_when_predicate_id: downstream_query_or_access_claim_exists
|
|
750
|
+
required_fields:
|
|
751
|
+
- query_proof_id
|
|
752
|
+
- question_ids
|
|
753
|
+
- query_language_or_api
|
|
754
|
+
- query_artifact_refs
|
|
755
|
+
- query_test_fixture_refs
|
|
756
|
+
- expected_answer_shape_refs
|
|
757
|
+
- observed_execution_result_refs
|
|
758
|
+
- evidence_refs
|
|
759
|
+
closure_rule: query-proofs.yaml is the canonical question-to-proof relation; every query proof row question_ids[] value must resolve to competency-questions.yaml and every required query_interface question must have a query proof row or a limitation_ref.
|
|
760
|
+
ref_closure_authority_refs:
|
|
761
|
+
- source-observations.yaml
|
|
762
|
+
- reconstruct-run-manifest.yaml
|
|
763
|
+
- ontology-seed.yaml
|
|
764
|
+
missing_proof_projection: limited_or_not_ready_with_limitation_ref
|
|
765
|
+
visualization_contract_registry:
|
|
766
|
+
- contract_ref_id: visualization_contract
|
|
767
|
+
concern_ids: [visualization_interface]
|
|
768
|
+
required_when_predicate_id: downstream_visualization_claim_exists
|
|
769
|
+
required_contract_fields:
|
|
770
|
+
- applies
|
|
771
|
+
missing_proof_projection: limited_or_not_ready_with_limitation_ref
|
|
772
|
+
visualization_proof_authority_contract:
|
|
773
|
+
authority_ref: visualization-proofs.yaml
|
|
774
|
+
validation_ref: visualization-proofs-validation.yaml
|
|
775
|
+
id_field: visualization_proof_id
|
|
776
|
+
required_when_predicate_id: downstream_visualization_claim_exists
|
|
777
|
+
required_fields:
|
|
778
|
+
- visualization_proof_id
|
|
779
|
+
- question_ids
|
|
780
|
+
- visualization_surface_refs
|
|
781
|
+
- expected_visualization_shape_refs
|
|
782
|
+
- observed_visualization_result_refs
|
|
783
|
+
- evidence_refs
|
|
784
|
+
closure_rule: visualization-proofs.yaml is the canonical question-to-proof relation; every visualization proof row question_ids[] value must resolve to competency-questions.yaml and every required visualization_interface question must have a visualization proof row or a limitation_ref.
|
|
785
|
+
ref_closure_authority_refs:
|
|
786
|
+
- source-observations.yaml
|
|
787
|
+
- reconstruct-run-manifest.yaml
|
|
788
|
+
- ontology-seed.yaml
|
|
789
|
+
missing_proof_projection: limited_or_not_ready_with_limitation_ref
|
|
790
|
+
graph_exploration_contract_registry:
|
|
791
|
+
- contract_ref_id: graph_exploration_contract
|
|
792
|
+
concern_ids: [graph_exploration_interface]
|
|
793
|
+
required_when_predicate_id: downstream_graph_exploration_claim_exists
|
|
794
|
+
required_contract_fields:
|
|
795
|
+
- applies
|
|
796
|
+
missing_proof_projection: limited_or_not_ready_with_limitation_ref
|
|
797
|
+
graph_exploration_proof_authority_contract:
|
|
798
|
+
authority_ref: graph-exploration-proofs.yaml
|
|
799
|
+
validation_ref: graph-exploration-proofs-validation.yaml
|
|
800
|
+
id_field: graph_exploration_proof_id
|
|
801
|
+
required_when_predicate_id: downstream_graph_exploration_claim_exists
|
|
802
|
+
required_fields:
|
|
803
|
+
- graph_exploration_proof_id
|
|
804
|
+
- question_ids
|
|
805
|
+
- graph_exploration_capability_refs
|
|
806
|
+
- scale_or_navigation_constraint_refs
|
|
807
|
+
- observed_exploration_result_refs
|
|
808
|
+
- evidence_refs
|
|
809
|
+
closure_rule: graph-exploration-proofs.yaml is the canonical question-to-proof relation; every graph exploration proof row question_ids[] value must resolve to competency-questions.yaml and every required graph_exploration_interface question must have a graph exploration proof row or a limitation_ref.
|
|
810
|
+
ref_closure_authority_refs:
|
|
811
|
+
- source-observations.yaml
|
|
812
|
+
- reconstruct-run-manifest.yaml
|
|
813
|
+
- ontology-seed.yaml
|
|
814
|
+
missing_proof_projection: limited_or_not_ready_with_limitation_ref
|
|
815
|
+
modeling_concern_applicability_predicate_catalog:
|
|
816
|
+
- predicate_id: representation_formalism_claim_exists
|
|
817
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
818
|
+
truth_expression: "ontology_seed.ontology_handoff.reasoning_or_formalism_profile.representation_formalism not in [null, none, unknown]"
|
|
819
|
+
- predicate_id: vocabulary_system_claim_exists
|
|
820
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
821
|
+
truth_expression: "ontology_seed.ontology_handoff.reasoning_or_formalism_profile.vocabulary_systems contains_any_non_none_value"
|
|
822
|
+
- predicate_id: validation_formalism_claim_exists
|
|
823
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
824
|
+
truth_expression: "ontology_seed.ontology_handoff.reasoning_or_formalism_profile.validation_formalisms contains_any_non_none_value or ontology_seed.ontology_handoff.constraint_mapping.shape_or_validation_constraint_refs is not empty"
|
|
825
|
+
- predicate_id: meta_level_class_property_relation_claim_exists
|
|
826
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
827
|
+
truth_expression: "seed_or_downstream_use_claims_classes_properties_relation_types_shapes_or_ontology_design_rules_as_things_to_model"
|
|
828
|
+
- predicate_id: temporal_state_or_event_claim_exists
|
|
829
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
830
|
+
truth_expression: "seed_has_state_transition_lifecycle_or_time_ref"
|
|
831
|
+
- predicate_id: dataset_observation_or_measurement_claim_exists
|
|
832
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
833
|
+
truth_expression: "seed_has_dataset_observation_metric_or_measurement_ref"
|
|
834
|
+
- predicate_id: dataset_catalog_claim_exists
|
|
835
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
836
|
+
truth_expression: "seed_has_dataset_catalog_data_product_source_catalog_or_discoverability_ref"
|
|
837
|
+
- predicate_id: data_integration_claim_exists
|
|
838
|
+
input_authority_refs: [ontology-seed.yaml, stop-decision.yaml]
|
|
839
|
+
truth_expression: "downstream_use_claims_heterogeneous_data_integration_semantic_reconciliation_ontology_based_etl_or_ontology_based_data_access"
|
|
840
|
+
- predicate_id: quantity_metric_or_unit_claim_exists
|
|
841
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
842
|
+
truth_expression: "seed_has_quantity_metric_unit_or_cost_ref"
|
|
843
|
+
- predicate_id: location_geometry_or_region_claim_exists
|
|
844
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
845
|
+
truth_expression: "seed_has_location_region_geometry_or_geo_ref"
|
|
846
|
+
- predicate_id: provenance_metadata_or_lineage_claim_exists
|
|
847
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
848
|
+
truth_expression: "seed_has_provenance_metadata_lineage_or_source_binding_ref"
|
|
849
|
+
- predicate_id: reusable_pattern_or_common_relation_shape_claim_exists
|
|
850
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
851
|
+
truth_expression: "seed_has_reusable_pattern_or_common_relation_shape_ref"
|
|
852
|
+
- predicate_id: downstream_query_or_access_claim_exists
|
|
853
|
+
predicate_ref: required_when_predicate_catalog.downstream_query_or_access_claim_exists
|
|
854
|
+
local_role: query_interface_modeling_concern_applicability
|
|
855
|
+
- predicate_id: downstream_visualization_claim_exists
|
|
856
|
+
predicate_ref: required_when_predicate_catalog.downstream_visualization_claim_exists
|
|
857
|
+
local_role: visualization_interface_modeling_concern_applicability
|
|
858
|
+
- predicate_id: downstream_graph_exploration_claim_exists
|
|
859
|
+
predicate_ref: required_when_predicate_catalog.downstream_graph_exploration_claim_exists
|
|
860
|
+
local_role: graph_exploration_interface_modeling_concern_applicability
|
|
861
|
+
|
|
862
|
+
artifact_authorities:
|
|
863
|
+
target_material_profile:
|
|
864
|
+
authority_ref: target-material-profile.yaml
|
|
865
|
+
validation_ref: target-material-profile-validation.yaml
|
|
866
|
+
projection_policy: selected_material_kind_support_status_and_profile_id
|
|
867
|
+
required_snapshot_fields_ref: version_policy.selected_source_profile_snapshot_required_fields
|
|
868
|
+
snapshot_match_rule: Each selected source profile snapshot must match exactly one source_profile_records row by profile_id and target_material_kind, and must copy every selected_source_profile_snapshot_required_fields value from that row.
|
|
869
|
+
target_material_profile_validation:
|
|
870
|
+
authority_ref: target-material-profile-validation.yaml
|
|
871
|
+
validation_ref: null
|
|
872
|
+
source_inventory:
|
|
873
|
+
authority_ref: source-inventory.yaml
|
|
874
|
+
validation_ref: null
|
|
875
|
+
projection_policy: refs_hashes_material_kinds_and_support_statuses
|
|
876
|
+
source_evidence:
|
|
877
|
+
authority_ref: source-observations.yaml
|
|
878
|
+
validation_ref: source-observation-directive-validation.yaml
|
|
879
|
+
source_observation_directive:
|
|
880
|
+
authority_ref: source-observation-directive.yaml
|
|
881
|
+
validation_ref: source-observation-directive-validation.yaml
|
|
882
|
+
source_observation_directive_validation:
|
|
883
|
+
authority_ref: source-observation-directive-validation.yaml
|
|
884
|
+
validation_ref: null
|
|
885
|
+
source_frontier:
|
|
886
|
+
authority_ref: rounds/<round-id>/source-frontier.yaml
|
|
887
|
+
validation_ref: rounds/<round-id>/source-frontier-validation.yaml
|
|
888
|
+
source_frontier_validation:
|
|
889
|
+
authority_ref: rounds/<round-id>/source-frontier-validation.yaml
|
|
890
|
+
validation_ref: null
|
|
891
|
+
lens_judgments:
|
|
892
|
+
authority_ref: rounds/<round-id>/lens-judgments/*.yaml
|
|
893
|
+
validation_ref: null
|
|
894
|
+
registry_ref: reconstruct_lens_judgment_registry
|
|
895
|
+
lens_judgment_index:
|
|
896
|
+
authority_ref: rounds/<round-id>/lens-judgment-index.yaml
|
|
897
|
+
validation_ref: null
|
|
898
|
+
registry_ref: reconstruct_lens_judgment_registry
|
|
899
|
+
exploration_synthesis:
|
|
900
|
+
authority_ref: rounds/<round-id>/exploration-synthesis.yaml
|
|
901
|
+
validation_ref: null
|
|
902
|
+
candidate_inventory:
|
|
903
|
+
authority_ref: candidate-inventory.yaml
|
|
904
|
+
validation_ref: candidate-disposition-validation.yaml
|
|
905
|
+
candidate_disposition:
|
|
906
|
+
authority_ref: candidate-disposition.yaml
|
|
907
|
+
validation_ref: candidate-disposition-validation.yaml
|
|
908
|
+
candidate_disposition_validation:
|
|
909
|
+
authority_ref: candidate-disposition-validation.yaml
|
|
910
|
+
validation_ref: null
|
|
911
|
+
ontology_seed:
|
|
912
|
+
authority_ref: ontology-seed.yaml
|
|
913
|
+
validation_ref: ontology-seed-validation.yaml
|
|
914
|
+
ontology_seed_validation:
|
|
915
|
+
authority_ref: ontology-seed-validation.yaml
|
|
916
|
+
validation_ref: null
|
|
917
|
+
claim_realization_map:
|
|
918
|
+
authority_ref: claim-realization-map.yaml
|
|
919
|
+
validation_ref: claim-realization-map-validation.yaml
|
|
920
|
+
projection_policy: per_seed_claim_realization_stance_and_evidence_refs
|
|
921
|
+
claim_realization_map_validation:
|
|
922
|
+
authority_ref: claim-realization-map-validation.yaml
|
|
923
|
+
validation_ref: null
|
|
924
|
+
competency_questions:
|
|
925
|
+
authority_ref: competency-questions.yaml
|
|
926
|
+
validation_ref: competency-questions-validation.yaml
|
|
927
|
+
competency_questions_validation:
|
|
928
|
+
authority_ref: competency-questions-validation.yaml
|
|
929
|
+
validation_ref: null
|
|
930
|
+
competency_question_assessment:
|
|
931
|
+
authority_ref: competency-question-assessment.yaml
|
|
932
|
+
validation_ref: competency-question-assessment-validation.yaml
|
|
933
|
+
competency_question_assessment_validation:
|
|
934
|
+
authority_ref: competency-question-assessment-validation.yaml
|
|
935
|
+
validation_ref: null
|
|
936
|
+
seed_confirmation:
|
|
937
|
+
authority_ref: seed-confirmation.yaml
|
|
938
|
+
validation_ref: seed-confirmation-validation.yaml
|
|
939
|
+
seed_confirmation_validation:
|
|
940
|
+
authority_ref: seed-confirmation-validation.yaml
|
|
941
|
+
validation_ref: null
|
|
942
|
+
failure_classification:
|
|
943
|
+
authority_ref: failure-classification.yaml
|
|
944
|
+
validation_ref: failure-classification-validation.yaml
|
|
945
|
+
failure_classification_validation:
|
|
946
|
+
authority_ref: failure-classification-validation.yaml
|
|
947
|
+
validation_ref: null
|
|
948
|
+
revision_proposal:
|
|
949
|
+
authority_ref: revision-proposal.yaml
|
|
950
|
+
validation_ref: revision-proposal-validation.yaml
|
|
951
|
+
revision_proposal_validation:
|
|
952
|
+
authority_ref: revision-proposal-validation.yaml
|
|
953
|
+
validation_ref: null
|
|
954
|
+
reconstruct_metrics:
|
|
955
|
+
authority_ref: reconstruct-metrics.yaml
|
|
956
|
+
validation_ref: null
|
|
957
|
+
projection_policy: deterministic_counts_gate_statuses_and_runtime_timings
|
|
958
|
+
stop_decision:
|
|
959
|
+
authority_ref: stop-decision.yaml
|
|
960
|
+
validation_ref: handoff-decision-validation.yaml
|
|
961
|
+
handoff_decision_validation:
|
|
962
|
+
authority_ref: handoff-decision-validation.yaml
|
|
963
|
+
validation_ref: null
|
|
964
|
+
final_output:
|
|
965
|
+
authority_ref: final-output.md
|
|
966
|
+
validation_ref: final-output-provenance-validation.yaml
|
|
967
|
+
projection_policy: human_readable_projection_of_validated_authorities
|
|
968
|
+
final_output_provenance_validation:
|
|
969
|
+
authority_ref: final-output-provenance-validation.yaml
|
|
970
|
+
validation_ref: null
|
|
971
|
+
projection_policy: structured_section_bindings_between_final_output_and_terminal_artifact_authorities
|
|
972
|
+
reconstruct_run_manifest:
|
|
973
|
+
authority_ref: reconstruct-run-manifest.yaml
|
|
974
|
+
validation_ref: reconstruct-run-manifest.post-publication-validation.yaml
|
|
975
|
+
projection_policy: selected_registry_contract_profile_lens_judgment_and_validator_snapshot
|
|
976
|
+
post_publication_run_manifest_validation:
|
|
977
|
+
authority_ref: reconstruct-run-manifest.post-publication-validation.yaml
|
|
978
|
+
validation_ref: null
|
|
979
|
+
projection_policy: post_publication_audit_after_final_output_and_record_refs_exist
|
|
980
|
+
pre_handoff_run_manifest:
|
|
981
|
+
authority_ref: reconstruct-run-manifest.pre-handoff.yaml
|
|
982
|
+
validation_ref: reconstruct-run-manifest.pre-handoff-validation.yaml
|
|
983
|
+
projection_policy: pre_terminal_snapshot_used_only_for_handoff_readiness_gate_projection
|
|
984
|
+
pre_handoff_run_manifest_validation:
|
|
985
|
+
authority_ref: reconstruct-run-manifest.pre-handoff-validation.yaml
|
|
986
|
+
validation_ref: null
|
|
987
|
+
reconstruct_record:
|
|
988
|
+
authority_ref: reconstruct-record.yaml
|
|
989
|
+
validation_ref: handoff-decision-validation.yaml
|
|
990
|
+
projection_policy: refs_hashes_statuses_and_bounded_summaries_emitted_after_handoff_validation_passes
|
|
991
|
+
|
|
992
|
+
planned_artifact_authorities:
|
|
993
|
+
observation_lineage:
|
|
994
|
+
authority_ref: rounds/<round-id>/source-observation-delta.yaml
|
|
995
|
+
validation_ref: rounds/<round-id>/source-observation-delta-validation.yaml
|
|
996
|
+
activation_condition: multi_round_frontier_observation_runtime_is_implemented
|
|
997
|
+
observation_lineage_validation:
|
|
998
|
+
authority_ref: rounds/<round-id>/source-observation-delta-validation.yaml
|
|
999
|
+
validation_ref: null
|
|
1000
|
+
activation_condition: multi_round_frontier_observation_runtime_is_implemented
|
|
1001
|
+
observation_reentry_validation:
|
|
1002
|
+
authority_ref: rounds/<round-id>/source-observation-reentry-validation.yaml
|
|
1003
|
+
validation_ref: null
|
|
1004
|
+
activation_condition: downstream_reentry_validation_runtime_is_implemented
|
|
1005
|
+
query_proofs:
|
|
1006
|
+
authority_ref: query-proofs.yaml
|
|
1007
|
+
validation_ref: query-proofs-validation.yaml
|
|
1008
|
+
activation_condition: downstream_query_or_access_claim_runtime_proof_is_implemented
|
|
1009
|
+
query_proofs_validation:
|
|
1010
|
+
authority_ref: query-proofs-validation.yaml
|
|
1011
|
+
validation_ref: null
|
|
1012
|
+
activation_condition: downstream_query_or_access_claim_runtime_proof_is_implemented
|
|
1013
|
+
visualization_proofs:
|
|
1014
|
+
authority_ref: visualization-proofs.yaml
|
|
1015
|
+
validation_ref: visualization-proofs-validation.yaml
|
|
1016
|
+
activation_condition: downstream_visualization_claim_runtime_proof_is_implemented
|
|
1017
|
+
visualization_proofs_validation:
|
|
1018
|
+
authority_ref: visualization-proofs-validation.yaml
|
|
1019
|
+
validation_ref: null
|
|
1020
|
+
activation_condition: downstream_visualization_claim_runtime_proof_is_implemented
|
|
1021
|
+
graph_exploration_proofs:
|
|
1022
|
+
authority_ref: graph-exploration-proofs.yaml
|
|
1023
|
+
validation_ref: graph-exploration-proofs-validation.yaml
|
|
1024
|
+
activation_condition: downstream_graph_exploration_claim_runtime_proof_is_implemented
|
|
1025
|
+
graph_exploration_proofs_validation:
|
|
1026
|
+
authority_ref: graph-exploration-proofs-validation.yaml
|
|
1027
|
+
validation_ref: null
|
|
1028
|
+
activation_condition: downstream_graph_exploration_claim_runtime_proof_is_implemented
|
|
1029
|
+
required_when_evaluation:
|
|
1030
|
+
authority_ref: required-when-evaluation.yaml
|
|
1031
|
+
validation_ref: required-when-evaluation-validation.yaml
|
|
1032
|
+
activation_condition: registry_predicate_evaluator_runtime_is_implemented
|
|
1033
|
+
required_when_evaluation_validation:
|
|
1034
|
+
authority_ref: required-when-evaluation-validation.yaml
|
|
1035
|
+
validation_ref: null
|
|
1036
|
+
activation_condition: registry_predicate_evaluator_runtime_is_implemented
|
|
1037
|
+
|
|
1038
|
+
validation_gate_catalog:
|
|
1039
|
+
- gate_id: material_profile_gate
|
|
1040
|
+
validation_artifact_ref: target-material-profile-validation.yaml
|
|
1041
|
+
required_when: always
|
|
1042
|
+
- gate_id: source_frontier_gate
|
|
1043
|
+
validation_artifact_ref: rounds/<round-id>/source-frontier-validation.yaml
|
|
1044
|
+
required_when: source_frontier_exists
|
|
1045
|
+
- gate_id: source_evidence_gate
|
|
1046
|
+
validation_artifact_ref: source-observation-directive-validation.yaml
|
|
1047
|
+
required_when: source_observations_exist
|
|
1048
|
+
- gate_id: candidate_disposition_gate
|
|
1049
|
+
validation_artifact_ref: candidate-disposition-validation.yaml
|
|
1050
|
+
required_when: candidate_inventory_exists
|
|
1051
|
+
- gate_id: ontology_seed_gate
|
|
1052
|
+
validation_artifact_ref: ontology-seed-validation.yaml
|
|
1053
|
+
required_when: seed_validity_or_handoff_readiness_is_projected
|
|
1054
|
+
- gate_id: claim_realization_gate
|
|
1055
|
+
validation_artifact_ref: claim-realization-map-validation.yaml
|
|
1056
|
+
required_when: seed_validity_or_handoff_readiness_is_projected
|
|
1057
|
+
- gate_id: competency_question_coverage_gate
|
|
1058
|
+
validation_artifact_ref: competency-questions-validation.yaml
|
|
1059
|
+
required_when: seed_validity_or_handoff_readiness_is_projected
|
|
1060
|
+
- gate_id: competency_question_assessment_gate
|
|
1061
|
+
validation_artifact_ref: competency-question-assessment-validation.yaml
|
|
1062
|
+
required_when: competency_questions_valid
|
|
1063
|
+
- gate_id: seed_confirmation_gate
|
|
1064
|
+
validation_artifact_ref: seed-confirmation-validation.yaml
|
|
1065
|
+
required_when: seed_validity_or_handoff_readiness_is_projected
|
|
1066
|
+
missing_artifact_projection: blocked
|
|
1067
|
+
- gate_id: pre_handoff_run_manifest_gate
|
|
1068
|
+
validation_artifact_ref: reconstruct-run-manifest.pre-handoff-validation.yaml
|
|
1069
|
+
required_when: always
|
|
1070
|
+
- gate_id: failure_classification_gate
|
|
1071
|
+
validation_artifact_ref: failure-classification-validation.yaml
|
|
1072
|
+
required_when: required_gate_failed_or_runtime_halted_or_unresolved_work_exists
|
|
1073
|
+
- gate_id: revision_proposal_gate
|
|
1074
|
+
validation_artifact_ref: revision-proposal-validation.yaml
|
|
1075
|
+
required_when: validated_failure_or_unresolved_work_exists
|
|
1076
|
+
- gate_id: handoff_gate
|
|
1077
|
+
validation_artifact_ref: handoff-decision-validation.yaml
|
|
1078
|
+
required_when: stop_decision_exists
|
|
1079
|
+
|
|
1080
|
+
planned_validation_gate_catalog:
|
|
1081
|
+
- gate_id: round_lineage_gate
|
|
1082
|
+
validation_artifact_ref: rounds/<round-id>/source-observation-delta-validation.yaml
|
|
1083
|
+
required_when: source_frontier_observation_occurs
|
|
1084
|
+
activation_condition: multi_round_frontier_observation_runtime_is_implemented
|
|
1085
|
+
- gate_id: observation_reentry_gate
|
|
1086
|
+
validation_artifact_ref: rounds/<round-id>/source-observation-reentry-validation.yaml
|
|
1087
|
+
required_when: frontier_observation_used_downstream
|
|
1088
|
+
activation_condition: downstream_reentry_validation_runtime_is_implemented
|
|
1089
|
+
- gate_id: ontology_handoff_mapping_gate
|
|
1090
|
+
validation_artifact_ref: ontology-seed-validation.yaml
|
|
1091
|
+
required_when: ontology_handoff_claim_exists
|
|
1092
|
+
activation_condition: per_axis_ontology_handoff_mapping_validator_is_implemented
|
|
1093
|
+
- gate_id: query_proof_gate
|
|
1094
|
+
validation_artifact_ref: query-proofs-validation.yaml
|
|
1095
|
+
required_when: downstream_query_or_access_claim_exists
|
|
1096
|
+
activation_condition: downstream_query_or_access_claim_runtime_proof_is_implemented
|
|
1097
|
+
- gate_id: visualization_proof_gate
|
|
1098
|
+
validation_artifact_ref: visualization-proofs-validation.yaml
|
|
1099
|
+
required_when: downstream_visualization_claim_exists
|
|
1100
|
+
activation_condition: downstream_visualization_claim_runtime_proof_is_implemented
|
|
1101
|
+
- gate_id: graph_exploration_proof_gate
|
|
1102
|
+
validation_artifact_ref: graph-exploration-proofs-validation.yaml
|
|
1103
|
+
required_when: downstream_graph_exploration_claim_exists
|
|
1104
|
+
activation_condition: downstream_graph_exploration_claim_runtime_proof_is_implemented
|
|
1105
|
+
- gate_id: required_when_evaluation_gate
|
|
1106
|
+
validation_artifact_ref: required-when-evaluation-validation.yaml
|
|
1107
|
+
required_when: always
|
|
1108
|
+
activation_condition: registry_predicate_evaluator_runtime_is_implemented
|
|
1109
|
+
|
|
1110
|
+
required_when_predicate_catalog:
|
|
1111
|
+
- predicate_id: always
|
|
1112
|
+
input_authority_refs: []
|
|
1113
|
+
truth_expression: "true"
|
|
1114
|
+
unknown_projection: blocked
|
|
1115
|
+
explanation_template: "This gate is always required."
|
|
1116
|
+
- predicate_id: source_frontier_exists
|
|
1117
|
+
gate_instance_scope: per_round
|
|
1118
|
+
input_authority_refs: [rounds/<round-id>/source-frontier.yaml]
|
|
1119
|
+
truth_expression: "artifact_exists(rounds/<round-id>/source-frontier.yaml)"
|
|
1120
|
+
unknown_projection: not_applicable
|
|
1121
|
+
explanation_template: "A source frontier artifact exists for this round."
|
|
1122
|
+
- predicate_id: source_observations_exist
|
|
1123
|
+
input_authority_refs: [source-observations.yaml]
|
|
1124
|
+
truth_expression: "artifact_exists(source-observations.yaml) and source_observations.records_count > 0"
|
|
1125
|
+
unknown_projection: blocked
|
|
1126
|
+
explanation_template: "Observed source records exist and require evidence-ref closure."
|
|
1127
|
+
- predicate_id: source_frontier_observation_occurs
|
|
1128
|
+
gate_instance_scope: per_round
|
|
1129
|
+
input_authority_refs: [rounds/<round-id>/source-frontier-validation.yaml, rounds/<round-id>/source-observation-delta.yaml]
|
|
1130
|
+
truth_expression: "source_frontier_validation.status == pass and artifact_exists(rounds/<round-id>/source-observation-delta.yaml)"
|
|
1131
|
+
unknown_projection: blocked
|
|
1132
|
+
explanation_template: "A validated frontier produced new source observations."
|
|
1133
|
+
- predicate_id: frontier_observation_used_downstream
|
|
1134
|
+
gate_instance_scope: per_round
|
|
1135
|
+
input_authority_refs: [rounds/<round-id>/source-observation-delta-validation.yaml, source-observation-directive.yaml, source-observation-directive-validation.yaml, rounds/<round-id>/lens-judgments/*.yaml, rounds/<round-id>/exploration-synthesis.yaml, candidate-inventory.yaml, candidate-disposition.yaml, ontology-seed.yaml]
|
|
1136
|
+
truth_expression: "source_observation_delta_validation.status == pass and source_observation_directive_validation.status == pass and any_downstream_artifact_refs_delta_observation_ids"
|
|
1137
|
+
unknown_projection: blocked
|
|
1138
|
+
explanation_template: "A frontier-triggered observation selected by the directive authority is cited by downstream semantic artifacts."
|
|
1139
|
+
- predicate_id: candidate_inventory_exists
|
|
1140
|
+
input_authority_refs: [candidate-inventory.yaml]
|
|
1141
|
+
truth_expression: "artifact_exists(candidate-inventory.yaml)"
|
|
1142
|
+
unknown_projection: not_applicable
|
|
1143
|
+
explanation_template: "A candidate inventory exists and requires disposition validation."
|
|
1144
|
+
- predicate_id: ontology_seed_exists
|
|
1145
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
1146
|
+
truth_expression: "artifact_exists(ontology-seed.yaml)"
|
|
1147
|
+
unknown_projection: not_applicable
|
|
1148
|
+
explanation_template: "An ontology seed exists and requires seed validation."
|
|
1149
|
+
- predicate_id: ontology_handoff_claim_exists
|
|
1150
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
1151
|
+
truth_expression: "artifact_exists(ontology-seed.yaml) and ontology_seed.ontology_handoff.readiness_claim != null"
|
|
1152
|
+
unknown_projection: not_applicable
|
|
1153
|
+
explanation_template: "The seed makes an ontology-facing handoff claim."
|
|
1154
|
+
- predicate_id: representation_formalism_is_owl_or_mixed
|
|
1155
|
+
input_authority_refs: [ontology-seed.yaml]
|
|
1156
|
+
truth_expression: "ontology_seed.ontology_handoff.reasoning_or_formalism_profile.representation_formalism in ['owl', 'mixed']"
|
|
1157
|
+
unknown_projection: blocked
|
|
1158
|
+
explanation_template: "The ontology handoff reasoning/formalism profile selects OWL or mixed representation formalism and therefore requires an OWL profile answer or limitation."
|
|
1159
|
+
- predicate_id: ontology_seed_shape_valid
|
|
1160
|
+
usage_status: reserved
|
|
1161
|
+
reserved_for: future_competency_question_coverage_precondition
|
|
1162
|
+
input_authority_refs: [ontology-seed-validation.yaml]
|
|
1163
|
+
truth_expression: "ontology_seed_validation.validation_status == valid"
|
|
1164
|
+
unknown_projection: blocked
|
|
1165
|
+
explanation_template: "The seed shape is valid enough to validate competency-question coverage."
|
|
1166
|
+
- predicate_id: competency_questions_exist
|
|
1167
|
+
input_authority_refs: [competency-questions.yaml]
|
|
1168
|
+
truth_expression: "artifact_exists(competency-questions.yaml)"
|
|
1169
|
+
unknown_projection: not_applicable
|
|
1170
|
+
explanation_template: "A competency-question artifact exists and requires coverage validation."
|
|
1171
|
+
- predicate_id: competency_questions_valid
|
|
1172
|
+
input_authority_refs: [competency-questions-validation.yaml]
|
|
1173
|
+
truth_expression: "competency_questions_validation.validation_status == valid"
|
|
1174
|
+
unknown_projection: blocked
|
|
1175
|
+
explanation_template: "The competency-question authority is valid enough to assess answerability."
|
|
1176
|
+
- predicate_id: seed_validity_or_handoff_readiness_is_projected
|
|
1177
|
+
input_authority_refs: [ontology-seed-validation.yaml, stop-decision.yaml]
|
|
1178
|
+
truth_expression: "seed_validity_projection_requested or handoff_readiness_projection_requested"
|
|
1179
|
+
unknown_projection: blocked
|
|
1180
|
+
explanation_template: "A status/result surface is projecting seed validity or handoff readiness."
|
|
1181
|
+
- predicate_id: downstream_query_or_access_claim_exists
|
|
1182
|
+
input_authority_refs: [ontology-seed.yaml, stop-decision.yaml]
|
|
1183
|
+
truth_expression: "downstream_use_claims_queryability_api_access_or_implementation_access"
|
|
1184
|
+
unknown_projection: blocked
|
|
1185
|
+
explanation_template: "A downstream query, API access, implementation access, or equivalent ontology access claim exists and requires query proof validation."
|
|
1186
|
+
- predicate_id: downstream_visualization_claim_exists
|
|
1187
|
+
input_authority_refs: [ontology-seed.yaml, stop-decision.yaml]
|
|
1188
|
+
truth_expression: "downstream_use_claims_visualization_static_view_dashboard_or_hierarchical_overview"
|
|
1189
|
+
unknown_projection: blocked
|
|
1190
|
+
explanation_template: "A downstream visualization claim exists and requires visualization proof validation."
|
|
1191
|
+
- predicate_id: downstream_graph_exploration_claim_exists
|
|
1192
|
+
input_authority_refs: [ontology-seed.yaml, stop-decision.yaml]
|
|
1193
|
+
truth_expression: "downstream_use_claims_graph_exploration_large_graph_navigation_traversal_or_expand_collapse"
|
|
1194
|
+
unknown_projection: blocked
|
|
1195
|
+
explanation_template: "A downstream graph exploration claim exists and requires graph-exploration proof validation."
|
|
1196
|
+
- predicate_id: required_gate_failed_or_runtime_halted_or_unresolved_work_exists
|
|
1197
|
+
gate_instance_scope: global_with_concrete_gate_instance_inputs
|
|
1198
|
+
input_authority_refs: [target-material-profile-validation.yaml, source-observation-directive-validation.yaml, rounds/*/source-frontier-validation.yaml, candidate-disposition-validation.yaml, ontology-seed-validation.yaml, claim-realization-map-validation.yaml, competency-questions-validation.yaml, competency-question-assessment-validation.yaml, seed-confirmation-validation.yaml, reconstruct-run-manifest.pre-handoff-validation.yaml, reconstruct-metrics.yaml]
|
|
1199
|
+
truth_expression: "any_required_applicable_validation_artifact_missing_or_failed or runtime_halted == true or reconstruct_metrics.unresolved_question_count > 0"
|
|
1200
|
+
unknown_projection: blocked
|
|
1201
|
+
explanation_template: "The embedded terminal gate_projection has found a required applicable validation artifact missing or failed, runtime halted, or metrics recorded unresolved work."
|
|
1202
|
+
- predicate_id: validated_failure_or_unresolved_work_exists
|
|
1203
|
+
input_authority_refs: [failure-classification-validation.yaml, reconstruct-metrics.yaml]
|
|
1204
|
+
truth_expression: "failure_classification_validation.validation_status == valid and (failure_classification_validation.material_failure_count > 0 or reconstruct_metrics.unresolved_question_count > 0)"
|
|
1205
|
+
unknown_projection: not_applicable
|
|
1206
|
+
explanation_template: "A validated failure classification or metrics artifact records material failures or unresolved questions that require a bounded revision proposal."
|
|
1207
|
+
- predicate_id: stop_decision_exists
|
|
1208
|
+
input_authority_refs: [stop-decision.yaml]
|
|
1209
|
+
truth_expression: "artifact_exists(stop-decision.yaml)"
|
|
1210
|
+
unknown_projection: blocked
|
|
1211
|
+
explanation_template: "A stop decision exists and requires terminal handoff validation before final output and record projection."
|
|
1212
|
+
readiness_projection:
|
|
1213
|
+
runtime_authority: reconstruct_runtime_readiness_projection_v1
|
|
1214
|
+
authority_rule: This registry declares allowed readiness values and semantic mapping labels; the executable precedence and status folding rule is owned by the runtime readinessProjection implementation until a registry-owned readiness-policy evaluator is promoted.
|
|
1215
|
+
canonical_values:
|
|
1216
|
+
- ready
|
|
1217
|
+
- limited
|
|
1218
|
+
- not_ready
|
|
1219
|
+
- blocked
|
|
1220
|
+
supporting_artifact_applicability_values:
|
|
1221
|
+
- applicable
|
|
1222
|
+
- not_applicable
|
|
1223
|
+
mapping:
|
|
1224
|
+
handoff_decision:
|
|
1225
|
+
ready_for_declared_downstream_purpose: ready
|
|
1226
|
+
usable_with_named_limitations: limited
|
|
1227
|
+
not_ready_required_gates_failed: not_ready
|
|
1228
|
+
blocked_missing_source_or_confirmation: blocked
|
|
1229
|
+
ontology_handoff.readiness_claim:
|
|
1230
|
+
ready: ready
|
|
1231
|
+
limited: limited
|
|
1232
|
+
not_ready: not_ready
|
|
1233
|
+
blocked: blocked
|
|
1234
|
+
competency_question_assessment.downstream_effect:
|
|
1235
|
+
ready: ready
|
|
1236
|
+
limited: limited
|
|
1237
|
+
blocks_handoff: not_ready
|
|
1238
|
+
blocked_by_missing_source_or_confirmation: blocked
|
|
1239
|
+
projection_rule: Final output and status/result APIs must project one canonical readiness value plus the artifact-specific supporting fields that caused it.
|
|
1240
|
+
seed_confirmation_lifecycle_policy:
|
|
1241
|
+
seed_confirmation_required_when: seed_validity_or_handoff_readiness_is_projected
|
|
1242
|
+
absent_seed_confirmation_artifact: blocked
|
|
1243
|
+
missing_seed_confirmation_validation_artifact: blocked
|
|
1244
|
+
explicit_limitation_allowed_when: seed-confirmation.yaml exists and seed-confirmation-validation.yaml records a valid confirmation or limitation state against the validated seed. Assessment-aware terminal readiness belongs to handoff-decision-validation.yaml.
|
|
1245
|
+
handoff_validation_policy:
|
|
1246
|
+
gate_membership_authority_ref: validation_gate_catalog
|
|
1247
|
+
terminal_gate_id: handoff_gate
|
|
1248
|
+
terminal_validation_ref: handoff-decision-validation.yaml
|
|
1249
|
+
output_projection_policy: final_output_and_reconstruct_record_are_emitted_after_handoff_validation_passes
|
|
1250
|
+
applicability_source: Runtime evaluates validation_gate_catalog.required_when through required_when_predicate_catalog and records concrete gate instances in handoff-decision-validation.yaml.gate_projection[].
|
|
1251
|
+
conditional_absence_policy:
|
|
1252
|
+
unmet_required_when: not_applicable
|
|
1253
|
+
met_required_when_missing_artifact: blocked
|
|
1254
|
+
conflict_precedence:
|
|
1255
|
+
- blocked
|
|
1256
|
+
- not_ready
|
|
1257
|
+
- limited
|
|
1258
|
+
- ready
|
|
1259
|
+
missing_supporting_validation_policy:
|
|
1260
|
+
missing_applicable_validation_artifact: blocked
|
|
1261
|
+
failed_applicable_validation_artifact: not_ready
|
|
1262
|
+
non_applicable_conditional_validation_artifact: not_applicable
|
|
1263
|
+
skipped_optional_validation_artifact: limited
|
|
1264
|
+
conflict_rule: When supporting artifacts project different canonical values, choose the highest value in conflict_precedence and cite every contributing artifact.
|
|
1265
|
+
|
|
1266
|
+
validator_records:
|
|
1267
|
+
- validator_id: target-material-profile-validator
|
|
1268
|
+
gate_ids: [material_profile_gate]
|
|
1269
|
+
validator_version: 1
|
|
1270
|
+
input_authority_refs: [target-material-profile.yaml, reconstruct-contract-registry.yaml]
|
|
1271
|
+
validation_obligations:
|
|
1272
|
+
- every_selected_source_profile_snapshot_contains_version_policy_required_fields
|
|
1273
|
+
- every_selected_source_profile_snapshot_matches_source_profile_records_by_profile_id_and_target_material_kind
|
|
1274
|
+
- mixed_targets_preserve_per_member_selected_profile_id_contract_status_runtime_implementation_status_and_support_state
|
|
1275
|
+
output_ref: target-material-profile-validation.yaml
|
|
1276
|
+
- validator_id: source-frontier-validator
|
|
1277
|
+
gate_ids: [source_frontier_gate]
|
|
1278
|
+
validator_version: 1
|
|
1279
|
+
input_authority_refs:
|
|
1280
|
+
- rounds/<round-id>/source-frontier.yaml
|
|
1281
|
+
- source-inventory.yaml
|
|
1282
|
+
- source-observations.yaml
|
|
1283
|
+
- target-material-profile-validation.yaml
|
|
1284
|
+
- reconstruct-contract-registry.yaml
|
|
1285
|
+
output_ref: rounds/<round-id>/source-frontier-validation.yaml
|
|
1286
|
+
- validator_id: source-observation-directive-validator
|
|
1287
|
+
gate_ids: [source_evidence_gate]
|
|
1288
|
+
validator_version: 1
|
|
1289
|
+
input_authority_refs: [source-observation-directive.yaml, source-observations.yaml, reconstruct-contract-registry.yaml]
|
|
1290
|
+
output_ref: source-observation-directive-validation.yaml
|
|
1291
|
+
- validator_id: candidate-disposition-validator
|
|
1292
|
+
gate_ids: [candidate_disposition_gate]
|
|
1293
|
+
validator_version: 1
|
|
1294
|
+
input_authority_refs: [candidate-inventory.yaml, candidate-disposition.yaml, source-observations.yaml, reconstruct-contract-registry.yaml]
|
|
1295
|
+
validation_obligations:
|
|
1296
|
+
- validate_candidate_inventory_candidate_kind_against_candidate_kind_registry
|
|
1297
|
+
- validate_candidate_disposition_against_candidate_disposition_registry
|
|
1298
|
+
- require_exactly_one_disposition_for_each_salient_candidate
|
|
1299
|
+
- require_rationale_and_evidence_refs_for_each_disposition
|
|
1300
|
+
output_ref: candidate-disposition-validation.yaml
|
|
1301
|
+
- validator_id: ontology-seed-validator
|
|
1302
|
+
gate_ids: [ontology_seed_gate]
|
|
1303
|
+
validator_version: 1
|
|
1304
|
+
input_authority_refs: [ontology-seed.yaml, candidate-disposition.yaml, source-observations.yaml, reconstruct-contract-registry.yaml]
|
|
1305
|
+
validation_obligations:
|
|
1306
|
+
- validate_instance_assertion_mapping_status
|
|
1307
|
+
- require_limitation_ref_when_instance_availability_status_is_absent_or_unknown
|
|
1308
|
+
- require_ready_ontology_handoff_mappings_to_have_substantive_content_or_limitation_refs
|
|
1309
|
+
output_ref: ontology-seed-validation.yaml
|
|
1310
|
+
- validator_id: claim-realization-map-validator
|
|
1311
|
+
gate_ids: [claim_realization_gate]
|
|
1312
|
+
validator_version: 1
|
|
1313
|
+
input_authority_refs: [claim-realization-map.yaml, ontology-seed.yaml, source-observations.yaml, reconstruct-contract-registry.yaml]
|
|
1314
|
+
validation_obligations:
|
|
1315
|
+
- require_exactly_one_realization_for_each_seed_claim
|
|
1316
|
+
- validate_realization_claim_ids_against_ontology_seed_claim_ids
|
|
1317
|
+
- validate_realization_evidence_refs_against_source_observations
|
|
1318
|
+
output_ref: claim-realization-map-validation.yaml
|
|
1319
|
+
- validator_id: competency-questions-validator
|
|
1320
|
+
gate_ids: [competency_question_coverage_gate]
|
|
1321
|
+
validator_version: 1
|
|
1322
|
+
input_authority_refs: [competency-questions.yaml, ontology-seed.yaml, reconstruct-run-manifest.yaml, reconstruct-contract-registry.yaml]
|
|
1323
|
+
validation_obligations:
|
|
1324
|
+
- validate_domain_competency_trace_refs_against_run_manifest_context_snapshot
|
|
1325
|
+
- enforce_admitted_domain_competency_disposition_rule
|
|
1326
|
+
- enforce_p3_diagnostic_or_claim_based_admission_disposition_rule
|
|
1327
|
+
- require_unique_question_id
|
|
1328
|
+
- validate_coverage_axes_against_coverage_axis_registry
|
|
1329
|
+
- validate_ontology_handoff_axes_against_ontology_handoff_axis_registry
|
|
1330
|
+
- validate_seed_ref_refs_close_against_known_seed_refs
|
|
1331
|
+
- emit_required_evidence_scope_runtime_projection
|
|
1332
|
+
- validate_limitation_refs_close_against_handoff_limitations
|
|
1333
|
+
- validate_required_ontology_handoff_axis_coverage_or_limitation_backed_disposition
|
|
1334
|
+
- validate_reasoning_formalism_facet_coverage
|
|
1335
|
+
- validate_entity_identity_facet_coverage
|
|
1336
|
+
- validate_instance_assertion_facet_coverage
|
|
1337
|
+
- validate_terminology_facet_coverage
|
|
1338
|
+
- validate_hidden_label_facet_coverage
|
|
1339
|
+
- validate_relation_type_facet_coverage
|
|
1340
|
+
- validate_classification_facet_coverage
|
|
1341
|
+
- validate_classification_level_axis_facet_coverage
|
|
1342
|
+
- validate_constraint_facet_coverage
|
|
1343
|
+
- validate_modeling_concern_facet_coverage
|
|
1344
|
+
- validate_reference_standard_refs_against_reference_standard_registry
|
|
1345
|
+
- validate_pattern_catalog_refs_against_reference_pattern_catalog_registry
|
|
1346
|
+
- validate_query_visualization_graph_contract_refs_when_applicable
|
|
1347
|
+
output_ref: competency-questions-validation.yaml
|
|
1348
|
+
- validator_id: competency-question-assessment-validator
|
|
1349
|
+
gate_ids: [competency_question_assessment_gate]
|
|
1350
|
+
validator_version: 1
|
|
1351
|
+
input_authority_refs: [competency-question-assessment.yaml, competency-questions.yaml, ontology-seed.yaml, source-observations.yaml, reconstruct-contract-registry.yaml]
|
|
1352
|
+
validation_obligations:
|
|
1353
|
+
- require_exactly_one_assessment_per_authoritative_question
|
|
1354
|
+
- validate_answer_status_against_active_answerability_contract
|
|
1355
|
+
- validate_downstream_effect_consistent_with_answer_status
|
|
1356
|
+
- validate_required_seed_refs_close_against_question_seed_refs
|
|
1357
|
+
- validate_answerability_trace_refs_close_against_seed_evidence_limitations_and_proofs
|
|
1358
|
+
output_ref: competency-question-assessment-validation.yaml
|
|
1359
|
+
- validator_id: seed-confirmation-validator
|
|
1360
|
+
gate_ids: [seed_confirmation_gate]
|
|
1361
|
+
validator_version: 1
|
|
1362
|
+
input_authority_refs:
|
|
1363
|
+
- seed-confirmation.yaml
|
|
1364
|
+
- ontology-seed.yaml
|
|
1365
|
+
- ontology-seed-validation.yaml
|
|
1366
|
+
- reconstruct-contract-registry.yaml
|
|
1367
|
+
output_ref: seed-confirmation-validation.yaml
|
|
1368
|
+
- validator_id: pre-handoff-run-manifest-validator
|
|
1369
|
+
gate_ids: [pre_handoff_run_manifest_gate]
|
|
1370
|
+
validator_version: 1
|
|
1371
|
+
input_authority_refs:
|
|
1372
|
+
- reconstruct-run-manifest.pre-handoff.yaml
|
|
1373
|
+
- reconstruct-contract-registry.yaml
|
|
1374
|
+
- <registry:active_contract_refs[].ref>
|
|
1375
|
+
- <run_manifest:selected_source_profiles[].definition_ref where non_null>
|
|
1376
|
+
validation_obligations:
|
|
1377
|
+
- selected_registry_snapshot_contains_registry_ref_and_hash
|
|
1378
|
+
- selected_registry_hash_matches_reconstruct_contract_registry
|
|
1379
|
+
- active_contract_snapshots_contain_version_policy_required_fields
|
|
1380
|
+
- active_contract_snapshots_match_active_contract_refs_by_contract_id_and_ref
|
|
1381
|
+
- active_contract_hashes_match_active_contract_refs
|
|
1382
|
+
- active_contract_migration_status_values_are_allowed
|
|
1383
|
+
- selected_source_profile_snapshots_contain_version_policy_required_fields
|
|
1384
|
+
- selected_source_profile_snapshots_match_source_profile_records_by_profile_id_and_target_material_kind
|
|
1385
|
+
- non_null_selected_source_profile_definition_refs_match_definition_sha256
|
|
1386
|
+
- selected_source_profile_migration_fields_are_recorded
|
|
1387
|
+
- source_profile_migration_refs_resolve_to_source_profile_records_or_prior_snapshots
|
|
1388
|
+
- previous_source_profile_snapshots_validate_old_to_current_profile_mappings
|
|
1389
|
+
- admitted_domain_competency_snapshots_contain_version_policy_required_fields
|
|
1390
|
+
- required_admitted_competency_ids_derive_all_p1_from_admitted_domain_competency_snapshot
|
|
1391
|
+
- p2_and_p3_competencies_remain_priority_metadata_until_explicit_downstream_promotion_policy_exists
|
|
1392
|
+
- required_admitted_competency_ids_match_admitted_domain_competency_snapshot
|
|
1393
|
+
- competency_id_migration_mappings_contain_required_policy_fields
|
|
1394
|
+
- competency_id_migration_status_values_are_allowed
|
|
1395
|
+
- deprecated_or_previous_competency_aliases_resolve_to_current_id_or_explicit_replacement_disposition
|
|
1396
|
+
- split_merged_replaced_competency_ids_close_against_admitted_domain_competency_snapshot
|
|
1397
|
+
- selected_reference_standard_ids_resolve_to_reference_standard_registry
|
|
1398
|
+
- selected_reference_standard_versions_or_snapshots_are_recorded
|
|
1399
|
+
- selected_pattern_catalog_ids_resolve_to_reference_pattern_catalog_registry
|
|
1400
|
+
- selected_pattern_catalog_versions_or_snapshots_are_recorded
|
|
1401
|
+
- selected_pattern_catalog_canonical_uris_satisfy_reference_pattern_catalog_registry_policy
|
|
1402
|
+
- governed_seed_fields_close_against_selected_reference_and_pattern_refs
|
|
1403
|
+
- selected_reference_and_pattern_migration_status_is_compatible
|
|
1404
|
+
output_ref: reconstruct-run-manifest.pre-handoff-validation.yaml
|
|
1405
|
+
- validator_id: failure-classification-validator
|
|
1406
|
+
gate_ids: [failure_classification_gate]
|
|
1407
|
+
validator_version: 1
|
|
1408
|
+
input_authority_refs:
|
|
1409
|
+
- failure-classification.yaml
|
|
1410
|
+
- target-material-profile-validation.yaml
|
|
1411
|
+
- source-observation-directive-validation.yaml
|
|
1412
|
+
- rounds/*/source-frontier-validation.yaml
|
|
1413
|
+
- candidate-disposition-validation.yaml
|
|
1414
|
+
- ontology-seed-validation.yaml
|
|
1415
|
+
- claim-realization-map-validation.yaml
|
|
1416
|
+
- competency-questions-validation.yaml
|
|
1417
|
+
- competency-question-assessment-validation.yaml
|
|
1418
|
+
- seed-confirmation-validation.yaml
|
|
1419
|
+
- reconstruct-run-manifest.pre-handoff-validation.yaml
|
|
1420
|
+
- reconstruct-run-manifest.yaml
|
|
1421
|
+
- reconstruct-contract-registry.yaml
|
|
1422
|
+
validation_obligations:
|
|
1423
|
+
- validate_failure_trigger_against_active_runtime_validation_authorities
|
|
1424
|
+
- classify_missing_or_failed_active_validation_artifact_as_required_gate_failure
|
|
1425
|
+
output_ref: failure-classification-validation.yaml
|
|
1426
|
+
- validator_id: revision-proposal-validator
|
|
1427
|
+
gate_ids: [revision_proposal_gate]
|
|
1428
|
+
validator_version: 1
|
|
1429
|
+
input_authority_refs: [revision-proposal.yaml, failure-classification.yaml, failure-classification-validation.yaml, reconstruct-contract-registry.yaml]
|
|
1430
|
+
output_ref: revision-proposal-validation.yaml
|
|
1431
|
+
- validator_id: handoff-decision-validator
|
|
1432
|
+
gate_ids: [handoff_gate]
|
|
1433
|
+
validator_version: 1
|
|
1434
|
+
input_authority_refs:
|
|
1435
|
+
- stop-decision.yaml
|
|
1436
|
+
- target-material-profile-validation.yaml
|
|
1437
|
+
- source-observation-directive-validation.yaml
|
|
1438
|
+
- rounds/*/source-frontier-validation.yaml
|
|
1439
|
+
- candidate-disposition-validation.yaml
|
|
1440
|
+
- ontology-seed-validation.yaml
|
|
1441
|
+
- claim-realization-map-validation.yaml
|
|
1442
|
+
- competency-questions-validation.yaml
|
|
1443
|
+
- competency-question-assessment-validation.yaml
|
|
1444
|
+
- seed-confirmation-validation.yaml
|
|
1445
|
+
- reconstruct-run-manifest.pre-handoff-validation.yaml
|
|
1446
|
+
- reconstruct-metrics.yaml
|
|
1447
|
+
- failure-classification-validation.yaml
|
|
1448
|
+
- revision-proposal-validation.yaml
|
|
1449
|
+
- reconstruct-contract-registry.yaml
|
|
1450
|
+
validation_obligations:
|
|
1451
|
+
- consume_all_active_validation_gate_statuses_emitted_by_runtime
|
|
1452
|
+
- project_missing_active_validation_artifact_as_blocked
|
|
1453
|
+
- leave_planned_gate_authorities_out_of_terminal_readiness_until_activated
|
|
1454
|
+
output_ref: handoff-decision-validation.yaml
|
|
1455
|
+
|
|
1456
|
+
planned_validator_records:
|
|
1457
|
+
- validator_id: source-observation-delta-validator
|
|
1458
|
+
gate_ids: [round_lineage_gate]
|
|
1459
|
+
validator_version: 1
|
|
1460
|
+
input_authority_refs:
|
|
1461
|
+
- rounds/<round-id>/source-observation-delta.yaml
|
|
1462
|
+
- rounds/<round-id>/source-frontier-validation.yaml
|
|
1463
|
+
- source-observations.yaml
|
|
1464
|
+
- reconstruct-contract-registry.yaml
|
|
1465
|
+
output_ref: rounds/<round-id>/source-observation-delta-validation.yaml
|
|
1466
|
+
- validator_id: source-observation-reentry-validator
|
|
1467
|
+
gate_ids: [observation_reentry_gate]
|
|
1468
|
+
validator_version: 1
|
|
1469
|
+
input_authority_refs:
|
|
1470
|
+
- rounds/<round-id>/source-observation-delta-validation.yaml
|
|
1471
|
+
- source-observation-directive.yaml
|
|
1472
|
+
- source-observation-directive-validation.yaml
|
|
1473
|
+
- rounds/<round-id>/lens-judgments/*.yaml
|
|
1474
|
+
- rounds/<round-id>/exploration-synthesis.yaml
|
|
1475
|
+
- candidate-inventory.yaml
|
|
1476
|
+
- candidate-disposition.yaml
|
|
1477
|
+
- candidate-disposition-validation.yaml
|
|
1478
|
+
- ontology-seed.yaml
|
|
1479
|
+
- ontology-seed-validation.yaml
|
|
1480
|
+
- reconstruct-contract-registry.yaml
|
|
1481
|
+
output_ref: rounds/<round-id>/source-observation-reentry-validation.yaml
|
|
1482
|
+
- validator_id: query-proof-validator
|
|
1483
|
+
gate_ids: [query_proof_gate]
|
|
1484
|
+
validator_version: 1
|
|
1485
|
+
input_authority_refs:
|
|
1486
|
+
- query-proofs.yaml
|
|
1487
|
+
- source-observations.yaml
|
|
1488
|
+
- ontology-seed.yaml
|
|
1489
|
+
- competency-questions.yaml
|
|
1490
|
+
- reconstruct-run-manifest.yaml
|
|
1491
|
+
- reconstruct-contract-registry.yaml
|
|
1492
|
+
output_ref: query-proofs-validation.yaml
|
|
1493
|
+
- validator_id: visualization-proof-validator
|
|
1494
|
+
gate_ids: [visualization_proof_gate]
|
|
1495
|
+
validator_version: 1
|
|
1496
|
+
input_authority_refs:
|
|
1497
|
+
- visualization-proofs.yaml
|
|
1498
|
+
- source-observations.yaml
|
|
1499
|
+
- ontology-seed.yaml
|
|
1500
|
+
- competency-questions.yaml
|
|
1501
|
+
- reconstruct-run-manifest.yaml
|
|
1502
|
+
- reconstruct-contract-registry.yaml
|
|
1503
|
+
output_ref: visualization-proofs-validation.yaml
|
|
1504
|
+
- validator_id: graph-exploration-proof-validator
|
|
1505
|
+
gate_ids: [graph_exploration_proof_gate]
|
|
1506
|
+
validator_version: 1
|
|
1507
|
+
input_authority_refs:
|
|
1508
|
+
- graph-exploration-proofs.yaml
|
|
1509
|
+
- source-observations.yaml
|
|
1510
|
+
- ontology-seed.yaml
|
|
1511
|
+
- competency-questions.yaml
|
|
1512
|
+
- reconstruct-run-manifest.yaml
|
|
1513
|
+
- reconstruct-contract-registry.yaml
|
|
1514
|
+
output_ref: graph-exploration-proofs-validation.yaml
|
|
1515
|
+
- validator_id: required-when-evaluation-validator
|
|
1516
|
+
gate_ids: [required_when_evaluation_gate]
|
|
1517
|
+
validator_version: 1
|
|
1518
|
+
input_authority_refs:
|
|
1519
|
+
- required-when-evaluation.yaml
|
|
1520
|
+
- ontology-seed.yaml
|
|
1521
|
+
- stop-decision.yaml
|
|
1522
|
+
- reconstruct-run-manifest.yaml
|
|
1523
|
+
- reconstruct-contract-registry.yaml
|
|
1524
|
+
- <registry:required_when_predicate_catalog[predicate_phase in [null, gate_applicability]].input_authority_refs[]>
|
|
1525
|
+
dynamic_input_authority_rule: Dereference each gate_applicability-phase evaluated predicate_id through required_when_predicate_catalog and validate recorded gate_instance_id, gate_id, predicate_instance_id, round_id, concrete input refs, evaluator id/version, applicability, result truth value, unknown projection, and explanation against that predicate row and validation_gate_catalog.
|
|
1526
|
+
output_ref: required-when-evaluation-validation.yaml
|
|
1527
|
+
|
|
1528
|
+
version_policy:
|
|
1529
|
+
contract_schema_version_field: schema_version
|
|
1530
|
+
seed_contract_version_field: seed_identity.schema_version
|
|
1531
|
+
validator_version_field: validator_version
|
|
1532
|
+
runtime_version_field: runtime_version
|
|
1533
|
+
content_hash_field: sha256
|
|
1534
|
+
compatibility_fields:
|
|
1535
|
+
- compatible_runtime_versions
|
|
1536
|
+
- compatible_validator_versions
|
|
1537
|
+
- supersedes_registry_snapshot
|
|
1538
|
+
active_ref_default_compatibility:
|
|
1539
|
+
compatible_runtime_versions:
|
|
1540
|
+
- current
|
|
1541
|
+
compatible_validator_versions:
|
|
1542
|
+
- current
|
|
1543
|
+
supersedes_registry_snapshot: null
|
|
1544
|
+
contract_migration_status_values:
|
|
1545
|
+
- current
|
|
1546
|
+
- supported_previous
|
|
1547
|
+
- deprecated_supported
|
|
1548
|
+
- unsupported
|
|
1549
|
+
active_contract_migration_status_values_ref: version_policy.contract_migration_status_values
|
|
1550
|
+
selected_source_profile_migration_status_values_ref: source_profile_migration_policy.migration_status_values
|
|
1551
|
+
selected_source_profile_snapshot_required_fields:
|
|
1552
|
+
- profile_id
|
|
1553
|
+
- target_material_kind
|
|
1554
|
+
- is_default_for_kind
|
|
1555
|
+
- definition_ref
|
|
1556
|
+
- definition_sha256
|
|
1557
|
+
- contract_status
|
|
1558
|
+
- runtime_implementation_status
|
|
1559
|
+
- schema_version
|
|
1560
|
+
- profile_version
|
|
1561
|
+
- migration_status
|
|
1562
|
+
- supersedes
|
|
1563
|
+
- replaced_by
|
|
1564
|
+
- split_from
|
|
1565
|
+
- split_into
|
|
1566
|
+
- merged_from
|
|
1567
|
+
- merged_into
|
|
1568
|
+
selected_registry_snapshot_required_fields:
|
|
1569
|
+
- registry_ref
|
|
1570
|
+
- registry_sha256
|
|
1571
|
+
- schema_version
|
|
1572
|
+
active_contract_snapshot_required_fields:
|
|
1573
|
+
- contract_id
|
|
1574
|
+
- ref
|
|
1575
|
+
- role
|
|
1576
|
+
- sha256
|
|
1577
|
+
- schema_version
|
|
1578
|
+
- migration_status
|
|
1579
|
+
active_contract_dereference_policy:
|
|
1580
|
+
active_contract_ref: dereference_ref_and_verify_snapshot_hash
|
|
1581
|
+
missing_active_contract_snapshot: blocked
|
|
1582
|
+
active_contract_hash_mismatch: blocked
|
|
1583
|
+
selected_source_profile_dereference_policy:
|
|
1584
|
+
standalone_profile: dereference_non_null_definition_ref_and_verify_hash
|
|
1585
|
+
mixed_profile: validate_per_member_selected_profiles_or_partial_composite_status
|
|
1586
|
+
unknown_profile: validate_unsupported_or_clarification_halt_status_without_definition_ref
|
|
1587
|
+
admitted_domain_competency_snapshot_required_fields:
|
|
1588
|
+
- source_ref
|
|
1589
|
+
- source_sha256
|
|
1590
|
+
- source_seat
|
|
1591
|
+
- authority_resolution_order
|
|
1592
|
+
- domain_id
|
|
1593
|
+
- competency_parser_id
|
|
1594
|
+
- competency_parser_version
|
|
1595
|
+
- admission_policy
|
|
1596
|
+
- admitted_competencies
|
|
1597
|
+
- required_admitted_competency_ids
|
|
1598
|
+
- admitted_competency_priorities
|
|
1599
|
+
- competency_id_migration_mappings
|
|
1600
|
+
governing_snapshot_required_fields:
|
|
1601
|
+
- requested_domain_ids
|
|
1602
|
+
- admitted_domain_competency_refs
|
|
1603
|
+
- admitted_domain_competency_source_refs
|
|
1604
|
+
- admitted_domain_competency_snapshots
|
|
1605
|
+
- required_admitted_competency_ids
|
|
1606
|
+
- admitted_competency_priorities
|
|
1607
|
+
- selected_reference_standard_ids
|
|
1608
|
+
- selected_reference_standard_version_or_snapshot_ids
|
|
1609
|
+
- selected_pattern_catalog_ids
|
|
1610
|
+
- selected_pattern_catalog_version_or_snapshot_ids
|
|
1611
|
+
- selected_pattern_catalog_canonical_uris
|
|
1612
|
+
governing_snapshot_projection_fields:
|
|
1613
|
+
authority_source: admitted_domain_competency_snapshots
|
|
1614
|
+
runtime_projection_fields:
|
|
1615
|
+
- admitted_domain_competency_refs
|
|
1616
|
+
- admitted_domain_competency_source_refs
|
|
1617
|
+
- required_admitted_competency_ids
|
|
1618
|
+
- admitted_competency_priorities
|
|
1619
|
+
- competency_id_migration_mappings
|
|
1620
|
+
rule: Runtime may store these derived aggregates for prompt payloads, exact validation, and downstream gates, but the per-domain admitted_domain_competency_snapshots rows remain the authority for domain competency admission. The admitted_domain_competency_refs projection contains only domain admission identity refs, while admitted_domain_competency_source_refs contains source document refs.
|
|
1621
|
+
selected_reference_authority_snapshot_required_fields:
|
|
1622
|
+
- selected_reference_standard_ids
|
|
1623
|
+
- selected_reference_standard_version_or_snapshot_ids
|
|
1624
|
+
- selected_pattern_catalog_ids
|
|
1625
|
+
- selected_pattern_catalog_version_or_snapshot_ids
|
|
1626
|
+
- selected_pattern_catalog_canonical_uris
|
|
1627
|
+
active_document_rule: Runtime prompt packets may load only active_contract_refs and selected source_profile_records unless the user explicitly asks for archived context.
|
|
1628
|
+
registry_update_required_for:
|
|
1629
|
+
- active contract ref changes
|
|
1630
|
+
- artifact authority changes
|
|
1631
|
+
- root candidate kind changes
|
|
1632
|
+
- root disposition changes
|
|
1633
|
+
- material kind changes
|
|
1634
|
+
- source profile record changes
|
|
1635
|
+
- source profile definition ref changes
|
|
1636
|
+
- source profile definition hash changes
|
|
1637
|
+
- source profile version changes
|
|
1638
|
+
- runtime implementation status value changes
|
|
1639
|
+
- source profile support-status migration changes
|
|
1640
|
+
- validation gate changes
|
|
1641
|
+
- reconstruct lens judgment registry changes
|
|
1642
|
+
- reference standard registry changes
|
|
1643
|
+
- query access contract registry changes
|
|
1644
|
+
- readiness projection changes
|
|
1645
|
+
- validator record changes
|