onto-mcp 0.4.4 → 0.4.6
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/authority/core-lexicon.yaml +26 -1
- package/.onto/processes/reconstruct/ontology-seeding-and-maturation-design.md +2220 -0
- package/.onto/processes/reconstruct/{foundry-style-ontology-seed-contract.md → operational-ontology-seed-contract.md} +443 -74
- package/.onto/processes/reconstruct/reconstruct-boundary-contract.md +34 -16
- package/.onto/processes/reconstruct/reconstruct-contract-registry.yaml +1368 -77
- package/.onto/processes/reconstruct/reconstruct-execution-ux-contract.md +2 -2
- package/.onto/processes/reconstruct/source-profile-contract.md +103 -2
- package/.onto/processes/reconstruct/source-profiles/code.md +26 -0
- package/.onto/processes/reconstruct/source-profiles/database.md +27 -0
- package/.onto/processes/reconstruct/source-profiles/document.md +29 -0
- package/.onto/processes/reconstruct/source-profiles/spreadsheet.md +26 -0
- package/AGENTS.md +3 -2
- package/README.md +48 -27
- package/dist/cli.js +12 -12
- package/dist/core-api/reconstruct-api.js +3 -3
- package/dist/core-runtime/reconstruct/material-profile-validation.js +13 -2
- package/dist/core-runtime/reconstruct/materialize-preparation.js +4 -5
- package/dist/core-runtime/reconstruct/{actionable-seed-validation.js → ontology-seed-validation.js} +189 -10
- package/dist/core-runtime/reconstruct/post-seed-validation.js +2 -2
- package/dist/core-runtime/reconstruct/record.js +1 -1
- package/dist/core-runtime/reconstruct/run.js +914 -230
- package/dist/core-runtime/reconstruct/seed-claim-projections.js +10 -1
- package/dist/core-runtime/reconstruct/terminal-validation.js +2 -9
- package/dist/mcp/server.js +281 -37
- package/dist/mcp/tool-schemas.js +15 -14
- package/package.json +2 -1
- package/.onto/processes/reconstruct/actionable-ontology-seed-recomposition-design.md +0 -447
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lexicon_version: "0.
|
|
1
|
+
lexicon_version: "0.41.0"
|
|
2
2
|
schema_version: "2"
|
|
3
3
|
position: "Prototype-to-service ontology authority for the onto main repository."
|
|
4
4
|
notes:
|
|
@@ -1109,6 +1109,31 @@ terms:
|
|
|
1109
1109
|
- "Orthogonal to target_input_kind: target_input_kind says how the target entered the runtime, such as single_file or git_diff; target_material_kind says what kind of material is being handled."
|
|
1110
1110
|
- "Do not use review context `source_kind` for this axis. In review artifacts, source_kind identifies context-source artifacts such as materialized_input or review_target_profile."
|
|
1111
1111
|
- "`mixed` is a classification value for bundles with multiple member material kinds, not a generic adapter target. A process exposing `mixed` must define supported_composite, partial_composite, unsupported, or reserved_future behavior in its process contract before dispatch."
|
|
1112
|
+
- term_id: "purpose_adequacy_frame"
|
|
1113
|
+
canonical_label: "PurposeAdequacyFrame"
|
|
1114
|
+
korean_label: "목적 적합성 프레임"
|
|
1115
|
+
axis: "reconstruct_purpose"
|
|
1116
|
+
term_status: "active"
|
|
1117
|
+
definition: "Source-backed, material-kind-specific structure naming what must be represented for a reconstruct target to fulfill its source-derived purpose."
|
|
1118
|
+
notes:
|
|
1119
|
+
- "This is not a universal workflow or path model. Code targets may require actor/action/state/data facets, while meeting records, documents, spreadsheets, databases, and mixed materials require different purpose-critical facets."
|
|
1120
|
+
- "Canonical reconstruct contract seat: .onto/processes/reconstruct/operational-ontology-seed-contract.md#5.1."
|
|
1121
|
+
- "Runtime validates shape, evidence refs, seed refs, and limitation refs; the host LLM authors semantic frame meaning."
|
|
1122
|
+
- term_id: "actionability_surface"
|
|
1123
|
+
canonical_label: "ActionabilitySurface"
|
|
1124
|
+
korean_label: "액션 가능성 표면"
|
|
1125
|
+
axis: "reconstruct_actionability"
|
|
1126
|
+
term_status: "active"
|
|
1127
|
+
definition: "Reconstruct coverage axis that tests whether an ontology supports decision and action through static structure, kinetic behavior, and dynamic condition boundaries."
|
|
1128
|
+
allowed_values:
|
|
1129
|
+
- "static_surface"
|
|
1130
|
+
- "kinetic_surface"
|
|
1131
|
+
- "dynamic_surface"
|
|
1132
|
+
notes:
|
|
1133
|
+
- "`static_surface` asks what exists and what it means."
|
|
1134
|
+
- "`kinetic_surface` asks who can do what and what changes."
|
|
1135
|
+
- "`dynamic_surface` asks how decisions, permissions, state, exceptions, and external/runtime conditions change the answer."
|
|
1136
|
+
- "Canonical reconstruct contract seats: .onto/processes/reconstruct/ontology-seeding-and-maturation-design.md and .onto/processes/reconstruct/operational-ontology-seed-contract.md."
|
|
1112
1137
|
- term_id: "pipeline_execution_ledger"
|
|
1113
1138
|
canonical_label: "PipelineExecutionLedger"
|
|
1114
1139
|
korean_label: "파이프라인 실행 단위 원장"
|