@coreason-ai/coreason-manifest 0.52.1 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ontology.d.ts +343 -280
- package/package.json +1 -1
package/dist/ontology.d.ts
CHANGED
|
@@ -646,7 +646,7 @@ export type StructuralPostConditions = EpistemicConstraintPolicy[];
|
|
|
646
646
|
* Thermodynamic cap on SymbolicAI DbC retries.
|
|
647
647
|
*/
|
|
648
648
|
export type MaxPlanningRemediationEpochs = number;
|
|
649
|
-
export type AnyExplorationBranch = ThoughtBranchState | StochasticTopologyManifest;
|
|
649
|
+
export type AnyExplorationBranch = ThoughtBranchState | StochasticTopologyManifest | StrategicThoughtNodeIntent;
|
|
650
650
|
/**
|
|
651
651
|
* A deterministic capability pointer bounding this specific topological divergence in the Latent Scratchpad Trace.
|
|
652
652
|
*/
|
|
@@ -689,11 +689,31 @@ export type SuperpositionCid = string;
|
|
|
689
689
|
export type WaveCollapseFunction = "plurality_vote" | "highest_confidence" | "deterministic_compiler";
|
|
690
690
|
export type ResidualEntropyVectors = string[];
|
|
691
691
|
export type EpistemicStatus = "stochastically_unbounded";
|
|
692
|
+
/**
|
|
693
|
+
* Discriminator for MCTS thought nodes within the strategic planning topology.
|
|
694
|
+
*/
|
|
695
|
+
export type TopologyClass15 = "strategic_thought_node";
|
|
696
|
+
/**
|
|
697
|
+
* The SHA-256 hash of the parent thought node in the MCTS tree, establishing Merkle-DAG lineage. For root nodes, use the SHA-256 hash of the initial escalation intent.
|
|
698
|
+
*/
|
|
699
|
+
export type ParentNodeHash = string;
|
|
700
|
+
/**
|
|
701
|
+
* A structured natural-language description of the proposed heuristic leap or code modification strategy.
|
|
702
|
+
*/
|
|
703
|
+
export type ProposedAction = string;
|
|
704
|
+
/**
|
|
705
|
+
* The causal reasoning chain explaining why this action is expected to resolve the epistemic deficit, including references to specific code structures or domain constraints.
|
|
706
|
+
*/
|
|
707
|
+
export type Rationale = string;
|
|
708
|
+
/**
|
|
709
|
+
* Self-evaluated probability of success for this proposed action, fed directly into the UCT exploration-exploitation formula by the Strategic MCTS Oracle.
|
|
710
|
+
*/
|
|
711
|
+
export type HeuristicConfidence = number;
|
|
692
712
|
export type AnyIntent = TemporalEdgeInvalidationIntent | EpistemicZeroTrustContract | EmpiricalFalsificationContract | FalsificationContract | OntologicalCrosswalkIntent | SemanticIntent | DraftingIntent | AdjudicationIntent | EscalationIntent | SemanticDiscoveryIntent | TaxonomicRestructureIntent | LatentProjectionIntent | LatentSchemaInferenceIntent | HumanDirectiveIntent | ContextualSemanticResolutionIntent | OntologyDiscoveryIntent | SemanticMappingHeuristicIntent | ContinuousSpatialMutationIntent | AgentBidIntent | ComputeProvisioningIntent | TaskAnnouncementIntent | QuarantineIntent | InterventionIntent | FYIIntent | FallbackIntent | OverrideIntent | ConstitutionalAmendmentIntent | SpatialKinematicActionIntent | System2RemediationIntent | SubstrateHydrationManifest | NeurosymbolicInferenceIntent | TopologicalProjectionIntent | FormalLogicPremise | CausalPropagationIntent | RDFSerializationIntent | SPARQLQueryIntent | AnalogicalMappingTask | BoundedJSONRPCIntent | ChaosExperimentTask | EpistemicTransmutationTask | EpistemicUpsamplingTask | InterventionalCausalTask | MCPClientIntent | RollbackIntent | StateMutationIntent | FederatedDiscoveryIntent | OntologicalNormalizationIntent;
|
|
693
713
|
/**
|
|
694
714
|
* Discriminator for temporal edge invalidation.
|
|
695
715
|
*/
|
|
696
|
-
export type
|
|
716
|
+
export type TopologyClass16 = "temporal_invalidation";
|
|
697
717
|
/**
|
|
698
718
|
* The precise chronological coordinate terminating the truth value (Graphiti valid_to).
|
|
699
719
|
*/
|
|
@@ -701,7 +721,7 @@ export type InvalidationTimestamp = number;
|
|
|
701
721
|
/**
|
|
702
722
|
* Discriminator type for empirical falsification contract.
|
|
703
723
|
*/
|
|
704
|
-
export type
|
|
724
|
+
export type TopologyClass17 = "empirical_falsification_contract";
|
|
705
725
|
/**
|
|
706
726
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this falsification test to the Merkle-DAG.
|
|
707
727
|
*/
|
|
@@ -718,12 +738,12 @@ export type RequiredToolName = string | null;
|
|
|
718
738
|
* The expected data schema or regex pattern that, if returned by the tool, kills the hypothesis.
|
|
719
739
|
*/
|
|
720
740
|
export type FalsifyingObservationSignature = string;
|
|
721
|
-
export type
|
|
741
|
+
export type TopologyClass18 = "falsification_contract";
|
|
722
742
|
/**
|
|
723
743
|
* The constraint oracle tasked with finding a counter-model.
|
|
724
744
|
*/
|
|
725
745
|
export type FalsificationSolver = "clingo" | "z3";
|
|
726
|
-
export type
|
|
746
|
+
export type TopologyClass19 = "ontological_crosswalk";
|
|
727
747
|
export type TargetGraphCid = string;
|
|
728
748
|
/**
|
|
729
749
|
* The ungrounded natural language concepts extracted by the LLM.
|
|
@@ -744,7 +764,7 @@ export type MinimumIsometryThreshold = number;
|
|
|
744
764
|
/**
|
|
745
765
|
* The discriminative topological boundary for read-only informational handoffs.
|
|
746
766
|
*/
|
|
747
|
-
export type
|
|
767
|
+
export type TopologyClass20 = "informational";
|
|
748
768
|
/**
|
|
749
769
|
* The context or summary to display to the human operator.
|
|
750
770
|
*/
|
|
@@ -756,7 +776,7 @@ export type TimeoutAction1 = "rollback" | "proceed_default" | "terminate";
|
|
|
756
776
|
/**
|
|
757
777
|
* Discriminator for requesting specific missing context from a human.
|
|
758
778
|
*/
|
|
759
|
-
export type
|
|
779
|
+
export type TopologyClass21 = "drafting";
|
|
760
780
|
/**
|
|
761
781
|
* The prompt explaining what information the swarm is missing.
|
|
762
782
|
*/
|
|
@@ -766,21 +786,29 @@ export type ContextPrompt = string;
|
|
|
766
786
|
*/
|
|
767
787
|
export type TimeoutAction2 = "rollback" | "proceed_default" | "terminate";
|
|
768
788
|
/**
|
|
769
|
-
* Discriminator for
|
|
789
|
+
* Discriminator for Forge-to-Claw epistemic deficit escalations.
|
|
770
790
|
*/
|
|
771
|
-
export type
|
|
791
|
+
export type TopologyClass22 = "escalation";
|
|
772
792
|
/**
|
|
773
|
-
* The
|
|
793
|
+
* The fully qualified URN of the heuristic solver capability to which the deficit is being escalated.
|
|
774
794
|
*/
|
|
775
|
-
export type
|
|
795
|
+
export type TargetSolverUrn = string;
|
|
796
|
+
/**
|
|
797
|
+
* A structured natural-language description of the deterministic logic that failed, including the specific AST node, formal solver, or constraint that could not be satisfied.
|
|
798
|
+
*/
|
|
799
|
+
export type EpistemicDeficitDescription = string;
|
|
800
|
+
/**
|
|
801
|
+
* An ordered list of Content Identifiers (CIDs) representing the code artifacts, Merkle-DAG fragments, and contextual state required by the Claw agent to resolve the deficit.
|
|
802
|
+
*/
|
|
803
|
+
export type ContextWindowCids = string[];
|
|
776
804
|
/**
|
|
777
|
-
* The
|
|
805
|
+
* The maximum number of tokens the Sovereign LLM Proxy is authorized to burn for this escalation before triggering the thermodynamic circuit breaker (HTTP 429).
|
|
778
806
|
*/
|
|
779
|
-
export type
|
|
807
|
+
export type ThermodynamicBudget = number;
|
|
780
808
|
/**
|
|
781
809
|
* Discriminator for geometric boundary of latent tool discovery.
|
|
782
810
|
*/
|
|
783
|
-
export type
|
|
811
|
+
export type TopologyClass23 = "semantic_discovery";
|
|
784
812
|
/**
|
|
785
813
|
* The minimum cosine similarity required to authorize a capability mount.
|
|
786
814
|
*/
|
|
@@ -794,7 +822,7 @@ export type RequiredStructuralTypes = string[];
|
|
|
794
822
|
/**
|
|
795
823
|
* Strict discriminator for dynamic UI regrouping.
|
|
796
824
|
*/
|
|
797
|
-
export type
|
|
825
|
+
export type TopologyClass24 = "taxonomic_restructure";
|
|
798
826
|
/**
|
|
799
827
|
* The SOTA mathematical heuristic used to project the new manifold.
|
|
800
828
|
*/
|
|
@@ -897,7 +925,7 @@ export type CompiledShaderCid = string | null;
|
|
|
897
925
|
/**
|
|
898
926
|
* Discriminator for RAG projection intent.
|
|
899
927
|
*/
|
|
900
|
-
export type
|
|
928
|
+
export type TopologyClass25 = "latent_projection";
|
|
901
929
|
/**
|
|
902
930
|
* The maximum number of nodes to extract from the index.
|
|
903
931
|
*/
|
|
@@ -942,7 +970,7 @@ export type ParentMergeThreshold = number | null;
|
|
|
942
970
|
/**
|
|
943
971
|
* Discriminator for unstructured payload schema deduction.
|
|
944
972
|
*/
|
|
945
|
-
export type
|
|
973
|
+
export type TopologyClass26 = "latent_schema_inference";
|
|
946
974
|
/**
|
|
947
975
|
* The CID pointing to the TerminalBufferState or raw intercepted byte stream.
|
|
948
976
|
*/
|
|
@@ -962,7 +990,7 @@ export type RequireStrictValidation = boolean;
|
|
|
962
990
|
/**
|
|
963
991
|
* Discriminator type for a human directive.
|
|
964
992
|
*/
|
|
965
|
-
export type
|
|
993
|
+
export type TopologyClass27 = "human_directive";
|
|
966
994
|
/**
|
|
967
995
|
* The raw, unstructured human objective.
|
|
968
996
|
*/
|
|
@@ -974,7 +1002,7 @@ export type AllocatedBudgetMagnitude = number;
|
|
|
974
1002
|
/**
|
|
975
1003
|
* Discriminator for contextual semantic resolution.
|
|
976
1004
|
*/
|
|
977
|
-
export type
|
|
1005
|
+
export type TopologyClass28 = "contextual_semantic_resolution";
|
|
978
1006
|
/**
|
|
979
1007
|
* An explicit cryptographic pointer to the raw SemanticRelationalVectorState pending resolution.
|
|
980
1008
|
*/
|
|
@@ -998,7 +1026,7 @@ export type MinimumIsometryThreshold1 = number;
|
|
|
998
1026
|
/**
|
|
999
1027
|
* Discriminator for external ontology polling.
|
|
1000
1028
|
*/
|
|
1001
|
-
export type
|
|
1029
|
+
export type TopologyClass29 = "ontology_discovery";
|
|
1002
1030
|
/**
|
|
1003
1031
|
* JSON-RPC version.
|
|
1004
1032
|
*/
|
|
@@ -1034,7 +1062,7 @@ export type ExpectedResponseSchema = {
|
|
|
1034
1062
|
/**
|
|
1035
1063
|
* Discriminator for semantic heuristic proposals.
|
|
1036
1064
|
*/
|
|
1037
|
-
export type
|
|
1065
|
+
export type TopologyClass30 = "semantic_mapping_proposal";
|
|
1038
1066
|
/**
|
|
1039
1067
|
* The cryptographic Merkle-DAG anchor for the proposal.
|
|
1040
1068
|
*/
|
|
@@ -1060,7 +1088,7 @@ export type JustificationEvidenceCids = [NodeCIDState, ...NodeCIDState[]];
|
|
|
1060
1088
|
/**
|
|
1061
1089
|
* The discriminative topological boundary for spatial mutation intents.
|
|
1062
1090
|
*/
|
|
1063
|
-
export type
|
|
1091
|
+
export type TopologyClass31 = "continuous_spatial_mutation";
|
|
1064
1092
|
/**
|
|
1065
1093
|
* The SpatialReferenceFrameManifest CID this coordinate is relative to, anchoring it to a physical or virtual room.
|
|
1066
1094
|
*/
|
|
@@ -1136,7 +1164,7 @@ export type LamportClock = number;
|
|
|
1136
1164
|
/**
|
|
1137
1165
|
* The discriminative topological boundary for compute provisioning intents.
|
|
1138
1166
|
*/
|
|
1139
|
-
export type
|
|
1167
|
+
export type TopologyClass32 = "compute_provisioning";
|
|
1140
1168
|
/**
|
|
1141
1169
|
* The maximum atomic cost budget allowable for the provisioned compute.
|
|
1142
1170
|
*/
|
|
@@ -1150,7 +1178,7 @@ export type RequiredCapabilities = string[];
|
|
|
1150
1178
|
/**
|
|
1151
1179
|
* The discriminative topological boundary for task announcement intents.
|
|
1152
1180
|
*/
|
|
1153
|
-
export type
|
|
1181
|
+
export type TopologyClass33 = "task_announcement";
|
|
1154
1182
|
/**
|
|
1155
1183
|
* Unique identifier for the required task.
|
|
1156
1184
|
*/
|
|
@@ -1166,7 +1194,7 @@ export type MaxBudgetMagnitude = number;
|
|
|
1166
1194
|
/**
|
|
1167
1195
|
* The type of the resilience payload.
|
|
1168
1196
|
*/
|
|
1169
|
-
export type
|
|
1197
|
+
export type TopologyClass34 = "quarantine_intent";
|
|
1170
1198
|
/**
|
|
1171
1199
|
* The deterministic causal justification for the structural quarantine.
|
|
1172
1200
|
*/
|
|
@@ -1174,7 +1202,7 @@ export type Reason = string;
|
|
|
1174
1202
|
/**
|
|
1175
1203
|
* The type of the intervention payload.
|
|
1176
1204
|
*/
|
|
1177
|
-
export type
|
|
1205
|
+
export type TopologyClass35 = "request";
|
|
1178
1206
|
/**
|
|
1179
1207
|
* The explicit whitelist of top-level JSON pointers mathematically open to mutation.
|
|
1180
1208
|
*
|
|
@@ -1188,7 +1216,7 @@ export type TimeoutSeconds = number;
|
|
|
1188
1216
|
/**
|
|
1189
1217
|
* The action to take when the timeout expires.
|
|
1190
1218
|
*/
|
|
1191
|
-
export type
|
|
1219
|
+
export type TimeoutAction3 = "fail_safe" | "proceed_with_defaults" | "escalate";
|
|
1192
1220
|
/**
|
|
1193
1221
|
* A summary of the context requiring intervention.
|
|
1194
1222
|
*/
|
|
@@ -1230,15 +1258,15 @@ export type LoopsExhausted = number;
|
|
|
1230
1258
|
/**
|
|
1231
1259
|
* Discriminator for an FYI intent.
|
|
1232
1260
|
*/
|
|
1233
|
-
export type
|
|
1261
|
+
export type TopologyClass36 = "fyi";
|
|
1234
1262
|
/**
|
|
1235
1263
|
* The type of the resilience payload.
|
|
1236
1264
|
*/
|
|
1237
|
-
export type
|
|
1265
|
+
export type TopologyClass37 = "fallback_intent";
|
|
1238
1266
|
/**
|
|
1239
1267
|
* The type of the intervention payload.
|
|
1240
1268
|
*/
|
|
1241
|
-
export type
|
|
1269
|
+
export type TopologyClass38 = "override";
|
|
1242
1270
|
/**
|
|
1243
1271
|
* Cryptographic audit justification for bypassing algorithmic consensus.
|
|
1244
1272
|
*/
|
|
@@ -1246,7 +1274,7 @@ export type Justification = string;
|
|
|
1246
1274
|
/**
|
|
1247
1275
|
* The strict discriminator for this intervention payload.
|
|
1248
1276
|
*/
|
|
1249
|
-
export type
|
|
1277
|
+
export type TopologyClass39 = "constitutional_amendment";
|
|
1250
1278
|
/**
|
|
1251
1279
|
* The globally unique decentralized identifier (DID) anchoring the NormativeDriftEvent that justified triggering this proposal.
|
|
1252
1280
|
*/
|
|
@@ -1258,7 +1286,7 @@ export type Justification1 = string;
|
|
|
1258
1286
|
/**
|
|
1259
1287
|
* Discriminator for a spatial kinematic action.
|
|
1260
1288
|
*/
|
|
1261
|
-
export type
|
|
1289
|
+
export type TopologyClass40 = "spatial_kinematic";
|
|
1262
1290
|
/**
|
|
1263
1291
|
* The specific kinematic interaction paradigm.
|
|
1264
1292
|
*/
|
|
@@ -1278,7 +1306,7 @@ export type ExpectedVisualConcept = string | null;
|
|
|
1278
1306
|
/**
|
|
1279
1307
|
* Discriminator type for System2RemediationIntent.
|
|
1280
1308
|
*/
|
|
1281
|
-
export type
|
|
1309
|
+
export type TopologyClass41 = "system_2_remediation";
|
|
1282
1310
|
/**
|
|
1283
1311
|
* A cryptographic Lineage Watermark (CID) tracking this specific dimensional collapse.
|
|
1284
1312
|
*/
|
|
@@ -1320,8 +1348,8 @@ export type SupportsLazyHydration = boolean;
|
|
|
1320
1348
|
/**
|
|
1321
1349
|
* Discriminator type for substrate hydration.
|
|
1322
1350
|
*/
|
|
1323
|
-
export type
|
|
1324
|
-
export type
|
|
1351
|
+
export type TopologyClass42 = "substrate_hydration";
|
|
1352
|
+
export type TopologyClass43 = "neurosymbolic_inference";
|
|
1325
1353
|
/**
|
|
1326
1354
|
* The continuous normalized float measuring the mathematical density of the contextual semantic envelope.
|
|
1327
1355
|
*/
|
|
@@ -1363,14 +1391,14 @@ export type RequiredGroundingDensity = "sparse" | "dense" | "exhaustive";
|
|
|
1363
1391
|
*/
|
|
1364
1392
|
export type MinimumFidelityThreshold = number;
|
|
1365
1393
|
export type ProvenanceTraceCid = string | null;
|
|
1366
|
-
export type
|
|
1394
|
+
export type TopologyClass44 = "topological_projection";
|
|
1367
1395
|
export type ProjectionCid = string;
|
|
1368
1396
|
export type SourceSuperpositionCid = string;
|
|
1369
1397
|
export type TargetTopologyProfile = "N_DIMENSIONAL_TENSOR" | "MARKOV_BLANKET" | "ACYCLIC_DIRECTED_GRAPH" | "ALGEBRAIC_RING";
|
|
1370
1398
|
export type IsomorphismConfidence = number;
|
|
1371
1399
|
export type LossyTranslationDivergence = string[];
|
|
1372
1400
|
export type EpistemicStatus1 = "pending_deterministic_collapse";
|
|
1373
|
-
export type
|
|
1401
|
+
export type TopologyClass45 = "formal_logic_premise";
|
|
1374
1402
|
/**
|
|
1375
1403
|
* The URN identifying the specific formal dialect or solver (e.g., 'urn:coreason:dialect:lean4', 'urn:coreason:dialect:clingo').
|
|
1376
1404
|
*/
|
|
@@ -1383,7 +1411,7 @@ export type FormalStatement = string;
|
|
|
1383
1411
|
* Optional auxiliary scripts required for verification, such as Lean 4 tactic proofs or Prolog ephemeral facts.
|
|
1384
1412
|
*/
|
|
1385
1413
|
export type VerificationScript = string | null;
|
|
1386
|
-
export type
|
|
1414
|
+
export type TopologyClass46 = "causal_propagation";
|
|
1387
1415
|
export type TargetGraphCid1 = string;
|
|
1388
1416
|
export type TaskCid3 = string;
|
|
1389
1417
|
export type MinimumNliEntailmentScore = number;
|
|
@@ -1466,7 +1494,7 @@ export type PublicationTimestamp = number | null;
|
|
|
1466
1494
|
*/
|
|
1467
1495
|
export type SupportingCitations = EvidentiaryCitationState[];
|
|
1468
1496
|
export type UnverifiedEdges = CausalDirectedEdgeState[];
|
|
1469
|
-
export type
|
|
1497
|
+
export type TopologyClass47 = "rdf_serialization";
|
|
1470
1498
|
export type ExportCid = string;
|
|
1471
1499
|
export type TargetGraphCid2 = string;
|
|
1472
1500
|
export type TargetFormat = "turtle" | "xml" | "json-ld" | "ntriples";
|
|
@@ -1475,8 +1503,8 @@ export type ShaclShapeGraphUri = string;
|
|
|
1475
1503
|
export type ViolationAction = "DROP_GRAPH" | "STRIP_TRIPLES" | "HALT_EXECUTION";
|
|
1476
1504
|
export type QueryString = string;
|
|
1477
1505
|
export type TargetEndpoint = string;
|
|
1478
|
-
export type
|
|
1479
|
-
export type
|
|
1506
|
+
export type TopologyClass48 = "sparql_query";
|
|
1507
|
+
export type TopologyClass49 = "bounded_json_rpc_intent";
|
|
1480
1508
|
/**
|
|
1481
1509
|
* JSON-RPC version.
|
|
1482
1510
|
*/
|
|
@@ -1495,7 +1523,7 @@ export type Params1 = {
|
|
|
1495
1523
|
* Unique request identifier.
|
|
1496
1524
|
*/
|
|
1497
1525
|
export type Id1 = string | number | null;
|
|
1498
|
-
export type
|
|
1526
|
+
export type TopologyClass50 = "chaos_experiment_task";
|
|
1499
1527
|
/**
|
|
1500
1528
|
* The unique identifier for the chaos experiment.
|
|
1501
1529
|
*/
|
|
@@ -1539,7 +1567,7 @@ export type Timestamp2 = number;
|
|
|
1539
1567
|
/**
|
|
1540
1568
|
* Discriminator type for an exogenous event.
|
|
1541
1569
|
*/
|
|
1542
|
-
export type
|
|
1570
|
+
export type TopologyClass51 = "exogenous_event";
|
|
1543
1571
|
/**
|
|
1544
1572
|
* Cryptographic identifier for the Black Swan event.
|
|
1545
1573
|
*/
|
|
@@ -1560,7 +1588,7 @@ export type LockedMagnitude = number;
|
|
|
1560
1588
|
* The declarative array of exogenous Black Swan events injected into the topology.
|
|
1561
1589
|
*/
|
|
1562
1590
|
export type Shocks = ExogenousEpistemicEvent[];
|
|
1563
|
-
export type
|
|
1591
|
+
export type TopologyClass52 = "epistemic_transmutation_task";
|
|
1564
1592
|
/**
|
|
1565
1593
|
* Unique identifier for this specific multimodal extraction intervention.
|
|
1566
1594
|
*/
|
|
@@ -1605,7 +1633,7 @@ export type TableStructureRecognition = boolean;
|
|
|
1605
1633
|
* Optional maximum economic expenditure authorized to run this VLM transmutation.
|
|
1606
1634
|
*/
|
|
1607
1635
|
export type ExecutionCostBudgetMagnitude1 = number | null;
|
|
1608
|
-
export type
|
|
1636
|
+
export type TopologyClass53 = "epistemic_upsampling_task";
|
|
1609
1637
|
/**
|
|
1610
1638
|
* The explicitly declared target node classification or structural grain.
|
|
1611
1639
|
*/
|
|
@@ -1621,7 +1649,7 @@ export type UpsamplingConfidenceThreshold = number;
|
|
|
1621
1649
|
* @maxItems 1000
|
|
1622
1650
|
*/
|
|
1623
1651
|
export type JustificationVectors = [string, ...string[]];
|
|
1624
|
-
export type
|
|
1652
|
+
export type TopologyClass54 = "interventional_causal_task";
|
|
1625
1653
|
/**
|
|
1626
1654
|
* Unique identifier for this causal intervention.
|
|
1627
1655
|
*/
|
|
@@ -1646,7 +1674,7 @@ export type ExpectedCausalInformationGain = number;
|
|
|
1646
1674
|
* The maximum economic expenditure authorized to run this specific causal intervention.
|
|
1647
1675
|
*/
|
|
1648
1676
|
export type ExecutionCostBudgetMagnitude2 = number;
|
|
1649
|
-
export type
|
|
1677
|
+
export type TopologyClass55 = "mcp_client_intent";
|
|
1650
1678
|
/**
|
|
1651
1679
|
* JSON-RPC version.
|
|
1652
1680
|
*/
|
|
@@ -1668,7 +1696,7 @@ export type Id2 = string | number | null;
|
|
|
1668
1696
|
/**
|
|
1669
1697
|
* Discriminator for the dynamic manifold projection.
|
|
1670
1698
|
*/
|
|
1671
|
-
export type
|
|
1699
|
+
export type TopologyClass56 = "dynamic_manifold";
|
|
1672
1700
|
/**
|
|
1673
1701
|
* Unique identifier for this projection.
|
|
1674
1702
|
*/
|
|
@@ -1684,7 +1712,7 @@ export type PanelCid = string;
|
|
|
1684
1712
|
/**
|
|
1685
1713
|
* Discriminator for Grammar of Graphics charts.
|
|
1686
1714
|
*/
|
|
1687
|
-
export type
|
|
1715
|
+
export type TopologyClass57 = "grammar";
|
|
1688
1716
|
/**
|
|
1689
1717
|
* The declarative semantic anchor summarizing the underlying visual grammar.
|
|
1690
1718
|
*/
|
|
@@ -1724,7 +1752,7 @@ export type Field = string;
|
|
|
1724
1752
|
/**
|
|
1725
1753
|
* The strictly typed mathematical mapping function distorting metrics into Euclidean pixel space.
|
|
1726
1754
|
*/
|
|
1727
|
-
export type
|
|
1755
|
+
export type TopologyClass58 = "linear" | "log" | "time" | "ordinal" | "nominal";
|
|
1728
1756
|
/**
|
|
1729
1757
|
* The optional minimum bound of the scale domain.
|
|
1730
1758
|
*/
|
|
@@ -1752,7 +1780,7 @@ export type PanelCid1 = string;
|
|
|
1752
1780
|
/**
|
|
1753
1781
|
* Discriminator for markdown insight cards.
|
|
1754
1782
|
*/
|
|
1755
|
-
export type
|
|
1783
|
+
export type TopologyClass59 = "insight_card";
|
|
1756
1784
|
/**
|
|
1757
1785
|
* The declarative semantic anchor summarizing the underlying matrix or markdown projection.
|
|
1758
1786
|
*/
|
|
@@ -1773,7 +1801,7 @@ export type MesoDistanceThreshold = number;
|
|
|
1773
1801
|
* The close-proximity boundary where full N-dimensional tensors and unstructured text blocks are mathematically hydrated into the observer's plane.
|
|
1774
1802
|
*/
|
|
1775
1803
|
export type MicroDistanceThreshold = number;
|
|
1776
|
-
export type
|
|
1804
|
+
export type TopologyClass60 = "rollback_intent";
|
|
1777
1805
|
/**
|
|
1778
1806
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark for the causal rollback operation.
|
|
1779
1807
|
*/
|
|
@@ -1786,7 +1814,7 @@ export type TargetEventCid = string;
|
|
|
1786
1814
|
* The strict array of nodes whose operational histories are causally tainted and must be flushed.
|
|
1787
1815
|
*/
|
|
1788
1816
|
export type InvalidatedNodeCids = string[];
|
|
1789
|
-
export type
|
|
1817
|
+
export type TopologyClass61 = "state_mutation_intent";
|
|
1790
1818
|
/**
|
|
1791
1819
|
* The JSON pointer indicating the exact state vector to mutate deterministically.
|
|
1792
1820
|
*/
|
|
@@ -1802,7 +1830,7 @@ export type ZeroTrustReceiptCid = string | null;
|
|
|
1802
1830
|
/**
|
|
1803
1831
|
* Discriminator for the FederatedDiscoveryIntent topology.
|
|
1804
1832
|
*/
|
|
1805
|
-
export type
|
|
1833
|
+
export type TopologyClass62 = "federated_discovery";
|
|
1806
1834
|
/**
|
|
1807
1835
|
* The bounded set of URN namespaces to interrogate during sovereign oracle discovery.
|
|
1808
1836
|
*
|
|
@@ -1824,7 +1852,7 @@ export type RequiredSecurityClearance = "PUBLIC" | "CONFIDENTIAL" | "RESTRICTED"
|
|
|
1824
1852
|
/**
|
|
1825
1853
|
* Discriminator for the OntologicalNormalizationIntent topology.
|
|
1826
1854
|
*/
|
|
1827
|
-
export type
|
|
1855
|
+
export type TopologyClass63 = "ontological_normalization";
|
|
1828
1856
|
/**
|
|
1829
1857
|
* The Content Identifier (CID) of the raw ingested data artifact.
|
|
1830
1858
|
*/
|
|
@@ -1886,7 +1914,7 @@ export type Description3 = string;
|
|
|
1886
1914
|
/**
|
|
1887
1915
|
* Discriminator for an Agent node.
|
|
1888
1916
|
*/
|
|
1889
|
-
export type
|
|
1917
|
+
export type TopologyClass64 = "agent";
|
|
1890
1918
|
/**
|
|
1891
1919
|
* The discrete architectural boundary of the node.
|
|
1892
1920
|
*/
|
|
@@ -2314,7 +2342,7 @@ export type DomainExtensions1 = {
|
|
|
2314
2342
|
/**
|
|
2315
2343
|
* Discriminator for a Human node.
|
|
2316
2344
|
*/
|
|
2317
|
-
export type
|
|
2345
|
+
export type TopologyClass65 = "human";
|
|
2318
2346
|
/**
|
|
2319
2347
|
* The mandatory cryptographic attestation URN required to verify the human operator's identity.
|
|
2320
2348
|
*/
|
|
@@ -2344,7 +2372,7 @@ export type DomainExtensions2 = {
|
|
|
2344
2372
|
/**
|
|
2345
2373
|
* Discriminator for a System node.
|
|
2346
2374
|
*/
|
|
2347
|
-
export type
|
|
2375
|
+
export type TopologyClass66 = "system";
|
|
2348
2376
|
/**
|
|
2349
2377
|
* The semantic boundary defining the objective function or computational perimeter of the execution node.
|
|
2350
2378
|
*/
|
|
@@ -2370,7 +2398,7 @@ export type DomainExtensions3 = {
|
|
|
2370
2398
|
/**
|
|
2371
2399
|
* Discriminator for a Composite node.
|
|
2372
2400
|
*/
|
|
2373
|
-
export type
|
|
2401
|
+
export type TopologyClass67 = "composite";
|
|
2374
2402
|
/**
|
|
2375
2403
|
* Entropy Penalty applied per edge traversal during a defeasible cascade.
|
|
2376
2404
|
*/
|
|
@@ -2590,7 +2618,7 @@ export type FoveatedPrivacyEpsilon = number | null;
|
|
|
2590
2618
|
/**
|
|
2591
2619
|
* Discriminator for a DAG topology.
|
|
2592
2620
|
*/
|
|
2593
|
-
export type
|
|
2621
|
+
export type TopologyClass68 = "dag";
|
|
2594
2622
|
/**
|
|
2595
2623
|
* The strict, topologically bounded matrix of directed causal edges.
|
|
2596
2624
|
*/
|
|
@@ -2674,7 +2702,7 @@ export type Justification7 = string | null;
|
|
|
2674
2702
|
/**
|
|
2675
2703
|
* Discriminator for a Council topology.
|
|
2676
2704
|
*/
|
|
2677
|
-
export type
|
|
2705
|
+
export type TopologyClass69 = "council";
|
|
2678
2706
|
/**
|
|
2679
2707
|
* The minimum number of adversarial or 'Devil's Advocate' roles required to prevent groupthink.
|
|
2680
2708
|
*/
|
|
@@ -2746,7 +2774,7 @@ export type Justification8 = string | null;
|
|
|
2746
2774
|
/**
|
|
2747
2775
|
* Discriminator for a Swarm topology.
|
|
2748
2776
|
*/
|
|
2749
|
-
export type
|
|
2777
|
+
export type TopologyClass70 = "swarm";
|
|
2750
2778
|
/**
|
|
2751
2779
|
* Threshold limit for dynamic spawning of additional nodes.
|
|
2752
2780
|
*/
|
|
@@ -2828,7 +2856,7 @@ export type Justification9 = string | null;
|
|
|
2828
2856
|
/**
|
|
2829
2857
|
* Discriminator for an Evolutionary topology.
|
|
2830
2858
|
*/
|
|
2831
|
-
export type
|
|
2859
|
+
export type TopologyClass71 = "evolutionary";
|
|
2832
2860
|
/**
|
|
2833
2861
|
* The absolute limit on evolutionary breeding cycles.
|
|
2834
2862
|
*/
|
|
@@ -2888,7 +2916,7 @@ export type Justification10 = string | null;
|
|
|
2888
2916
|
/**
|
|
2889
2917
|
* Discriminator for SMPC Topology.
|
|
2890
2918
|
*/
|
|
2891
|
-
export type
|
|
2919
|
+
export type TopologyClass72 = "smpc";
|
|
2892
2920
|
/**
|
|
2893
2921
|
* The exact cryptographic P2P protocol the nodes must use to evaluate the function.
|
|
2894
2922
|
*/
|
|
@@ -2918,7 +2946,7 @@ export type Justification11 = string | null;
|
|
|
2918
2946
|
/**
|
|
2919
2947
|
* Discriminator for an Evaluator-Optimizer loop.
|
|
2920
2948
|
*/
|
|
2921
|
-
export type
|
|
2949
|
+
export type TopologyClass73 = "evaluator_optimizer";
|
|
2922
2950
|
/**
|
|
2923
2951
|
* The absolute limit on Actor-Critic cycles to prevent infinite compute burn.
|
|
2924
2952
|
*/
|
|
@@ -2942,7 +2970,7 @@ export type Justification12 = string | null;
|
|
|
2942
2970
|
/**
|
|
2943
2971
|
* Discriminator for a Digital Twin topology.
|
|
2944
2972
|
*/
|
|
2945
|
-
export type
|
|
2973
|
+
export type TopologyClass74 = "digital_twin";
|
|
2946
2974
|
/**
|
|
2947
2975
|
* The identifier (expected to be a W3C DID) pointing to the real-world topology it is cloning.
|
|
2948
2976
|
*/
|
|
@@ -2962,7 +2990,7 @@ export type EnforceNoSideEffects = boolean;
|
|
|
2962
2990
|
/**
|
|
2963
2991
|
* Discriminator for federation macro.
|
|
2964
2992
|
*/
|
|
2965
|
-
export type
|
|
2993
|
+
export type TopologyClass75 = "macro_federation";
|
|
2966
2994
|
/**
|
|
2967
2995
|
* The nodes forming the PBFT ring.
|
|
2968
2996
|
*
|
|
@@ -2984,7 +3012,7 @@ export type Justification13 = string | null;
|
|
|
2984
3012
|
/**
|
|
2985
3013
|
* Discriminator for forge macro.
|
|
2986
3014
|
*/
|
|
2987
|
-
export type
|
|
3015
|
+
export type TopologyClass76 = "macro_forge";
|
|
2988
3016
|
/**
|
|
2989
3017
|
* The structural 128-char DID boundary pointing to the foundational semantic deficit vector.
|
|
2990
3018
|
*/
|
|
@@ -3012,7 +3040,7 @@ export type Justification14 = string | null;
|
|
|
3012
3040
|
/**
|
|
3013
3041
|
* Discriminator for the elicitation macro.
|
|
3014
3042
|
*/
|
|
3015
|
-
export type
|
|
3043
|
+
export type TopologyClass77 = "macro_elicitation";
|
|
3016
3044
|
/**
|
|
3017
3045
|
* The anchor to the initial, unstructured MultimodalArtifactReceipt uploaded by the human.
|
|
3018
3046
|
*/
|
|
@@ -3036,7 +3064,7 @@ export type Justification15 = string | null;
|
|
|
3036
3064
|
/**
|
|
3037
3065
|
* Discriminator for the ingestion macro.
|
|
3038
3066
|
*/
|
|
3039
|
-
export type
|
|
3067
|
+
export type TopologyClass78 = "macro_ingestion";
|
|
3040
3068
|
/**
|
|
3041
3069
|
* Target serialization format.
|
|
3042
3070
|
*/
|
|
@@ -3056,7 +3084,7 @@ export type Justification16 = string | null;
|
|
|
3056
3084
|
/**
|
|
3057
3085
|
* Discriminator for a macro neurosymbolic loop.
|
|
3058
3086
|
*/
|
|
3059
|
-
export type
|
|
3087
|
+
export type TopologyClass79 = "macro_neurosymbolic";
|
|
3060
3088
|
/**
|
|
3061
3089
|
* The connectionist agent generating hypotheses.
|
|
3062
3090
|
*/
|
|
@@ -3076,7 +3104,7 @@ export type CritiqueSchemaCid = string | null;
|
|
|
3076
3104
|
/**
|
|
3077
3105
|
* Discriminator for a discourse tree topology.
|
|
3078
3106
|
*/
|
|
3079
|
-
export type
|
|
3107
|
+
export type TopologyClass80 = "discourse_tree";
|
|
3080
3108
|
/**
|
|
3081
3109
|
* Cryptographic identifier for this topology.
|
|
3082
3110
|
*/
|
|
@@ -3089,7 +3117,7 @@ export type DiscourseType = "preamble" | "methodology" | "argumentation" | "find
|
|
|
3089
3117
|
* Explicit pointers linking this discourse block to the specific AtomicPropositionState nodes extracted from its text.
|
|
3090
3118
|
*/
|
|
3091
3119
|
export type ContainedPropositions = NodeCIDState[];
|
|
3092
|
-
export type
|
|
3120
|
+
export type TopologyClass81 = "document_knowledge_graph";
|
|
3093
3121
|
export type GraphCid = string;
|
|
3094
3122
|
export type SourceArtifactCid2 = string;
|
|
3095
3123
|
/**
|
|
@@ -3153,7 +3181,7 @@ export type CiphertextBlob = string;
|
|
|
3153
3181
|
/**
|
|
3154
3182
|
* Discriminator for manifold mapping.
|
|
3155
3183
|
*/
|
|
3156
|
-
export type
|
|
3184
|
+
export type TopologyClass82 = "manifold_mapping";
|
|
3157
3185
|
/**
|
|
3158
3186
|
* Calculated geometric alignment between the semantic embedding and spatial tensor.
|
|
3159
3187
|
*/
|
|
@@ -3171,7 +3199,7 @@ export type Nodes12 = SemanticNodeState[];
|
|
|
3171
3199
|
*/
|
|
3172
3200
|
export type CausalEdges = CausalDirectedEdgeState[];
|
|
3173
3201
|
export type IsomorphismHash = string;
|
|
3174
|
-
export type
|
|
3202
|
+
export type TopologyClass83 = "hierarchical_dom";
|
|
3175
3203
|
export type DomCid = string;
|
|
3176
3204
|
export type RootBlockCid = string;
|
|
3177
3205
|
/**
|
|
@@ -3263,7 +3291,7 @@ export type DomainExtensions4 = {
|
|
|
3263
3291
|
/**
|
|
3264
3292
|
* Discriminator for a Memoized node.
|
|
3265
3293
|
*/
|
|
3266
|
-
export type
|
|
3294
|
+
export type TopologyClass84 = "memoized";
|
|
3267
3295
|
/**
|
|
3268
3296
|
* A discriminated union of presentation UI panels.
|
|
3269
3297
|
*/
|
|
@@ -3276,7 +3304,7 @@ export type AnyStateEvent = TemporalGraphCRDTManifest | MCPToolDefinition | Cros
|
|
|
3276
3304
|
/**
|
|
3277
3305
|
* Discriminator for temporal graph crdt.
|
|
3278
3306
|
*/
|
|
3279
|
-
export type
|
|
3307
|
+
export type TopologyClass85 = "temporal_graph_crdt";
|
|
3280
3308
|
/**
|
|
3281
3309
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark.
|
|
3282
3310
|
*/
|
|
@@ -3297,7 +3325,7 @@ export type AddSet = NodeCIDState[];
|
|
|
3297
3325
|
* The set of non-monotonic timeline caps.
|
|
3298
3326
|
*/
|
|
3299
3327
|
export type TerminateSet = TemporalEdgeInvalidationIntent[];
|
|
3300
|
-
export type
|
|
3328
|
+
export type TopologyClass86 = "mcp_tool_definition";
|
|
3301
3329
|
/**
|
|
3302
3330
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
3303
3331
|
*/
|
|
@@ -3312,7 +3340,7 @@ export type Description9 = string;
|
|
|
3312
3340
|
export type EventCid4 = string;
|
|
3313
3341
|
export type PriorEventHash4 = string | null;
|
|
3314
3342
|
export type Timestamp4 = number;
|
|
3315
|
-
export type
|
|
3343
|
+
export type TopologyClass87 = "crosswalk_resolution";
|
|
3316
3344
|
export type ReceiptCid1 = string;
|
|
3317
3345
|
export type TargetGraphCid3 = string;
|
|
3318
3346
|
/**
|
|
@@ -3330,7 +3358,7 @@ export type Timestamp5 = number;
|
|
|
3330
3358
|
/**
|
|
3331
3359
|
* Discriminator for a zero-trust receipt.
|
|
3332
3360
|
*/
|
|
3333
|
-
export type
|
|
3361
|
+
export type TopologyClass88 = "zero_trust_receipt";
|
|
3334
3362
|
/**
|
|
3335
3363
|
* Pointer to the originating EpistemicZeroTrustContract.
|
|
3336
3364
|
*/
|
|
@@ -3366,7 +3394,7 @@ export type Timestamp6 = number;
|
|
|
3366
3394
|
/**
|
|
3367
3395
|
* Discriminator type for an observation event.
|
|
3368
3396
|
*/
|
|
3369
|
-
export type
|
|
3397
|
+
export type TopologyClass89 = "observation";
|
|
3370
3398
|
/**
|
|
3371
3399
|
* The URN representing the physical silicon architecture generating the root-of-trust quote (e.g., 'urn:coreason:enclave:intel_tdx').
|
|
3372
3400
|
*/
|
|
@@ -3386,7 +3414,7 @@ export type AnyToolchainState = BrowserDOMState | TerminalBufferState;
|
|
|
3386
3414
|
/**
|
|
3387
3415
|
* Discriminator for Causal Actuators representing structural shifts.
|
|
3388
3416
|
*/
|
|
3389
|
-
export type
|
|
3417
|
+
export type TopologyClass90 = "browser";
|
|
3390
3418
|
/**
|
|
3391
3419
|
* Spatial Execution Bounds where the agent interacts.
|
|
3392
3420
|
*/
|
|
@@ -3413,7 +3441,7 @@ export type ScreenshotCid = string | null;
|
|
|
3413
3441
|
/**
|
|
3414
3442
|
* Discriminator for Causal Actuators on structural buffers.
|
|
3415
3443
|
*/
|
|
3416
|
-
export type
|
|
3444
|
+
export type TopologyClass91 = "terminal";
|
|
3417
3445
|
/**
|
|
3418
3446
|
* Capability Perimeters defining context bounds.
|
|
3419
3447
|
*/
|
|
@@ -3511,7 +3539,7 @@ export type Timestamp7 = number;
|
|
|
3511
3539
|
/**
|
|
3512
3540
|
* Discriminator type for a Belief Assertion event.
|
|
3513
3541
|
*/
|
|
3514
|
-
export type
|
|
3542
|
+
export type TopologyClass92 = "belief_mutation";
|
|
3515
3543
|
/**
|
|
3516
3544
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the source event in the Merkle-DAG.
|
|
3517
3545
|
*/
|
|
@@ -3563,8 +3591,8 @@ export type Timestamp8 = number;
|
|
|
3563
3591
|
/**
|
|
3564
3592
|
* Discriminator type for a system fault event.
|
|
3565
3593
|
*/
|
|
3566
|
-
export type
|
|
3567
|
-
export type
|
|
3594
|
+
export type TopologyClass93 = "system_fault";
|
|
3595
|
+
export type TopologyClass94 = "atomic_proposition";
|
|
3568
3596
|
/**
|
|
3569
3597
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
3570
3598
|
*/
|
|
@@ -3621,7 +3649,7 @@ export type UpperBound = number | null;
|
|
|
3621
3649
|
* Explicit mathematical boundaries extracted from the text that empirically limit the certainty or scope of the proposition.
|
|
3622
3650
|
*/
|
|
3623
3651
|
export type StatisticalQualifiers = EmpiricalStatisticalProfile[];
|
|
3624
|
-
export type
|
|
3652
|
+
export type TopologyClass95 = "post_coordinated_concept";
|
|
3625
3653
|
/**
|
|
3626
3654
|
* Cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
3627
3655
|
*/
|
|
@@ -3649,7 +3677,7 @@ export type IsometryScore = number;
|
|
|
3649
3677
|
export type EventCid11 = string;
|
|
3650
3678
|
export type PriorEventHash11 = string | null;
|
|
3651
3679
|
export type Timestamp11 = number;
|
|
3652
|
-
export type
|
|
3680
|
+
export type TopologyClass96 = "artifact_corruption";
|
|
3653
3681
|
/**
|
|
3654
3682
|
* The genesis artifact that caused the ingestion engine to crash.
|
|
3655
3683
|
*/
|
|
@@ -3671,7 +3699,7 @@ export type Timestamp12 = number;
|
|
|
3671
3699
|
/**
|
|
3672
3700
|
* Discriminator for a hypothesis generation event.
|
|
3673
3701
|
*/
|
|
3674
|
-
export type
|
|
3702
|
+
export type TopologyClass97 = "hypothesis";
|
|
3675
3703
|
/**
|
|
3676
3704
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this abductive leap to the Merkle-DAG.
|
|
3677
3705
|
*/
|
|
@@ -3725,7 +3753,7 @@ export type Timestamp13 = number;
|
|
|
3725
3753
|
/**
|
|
3726
3754
|
* Discriminator type for a barge-in interruption event.
|
|
3727
3755
|
*/
|
|
3728
|
-
export type
|
|
3756
|
+
export type TopologyClass98 = "barge_in";
|
|
3729
3757
|
/**
|
|
3730
3758
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the active node generation cycle that was killed in the Merkle-DAG.
|
|
3731
3759
|
*/
|
|
@@ -3755,7 +3783,7 @@ export type Timestamp14 = number;
|
|
|
3755
3783
|
/**
|
|
3756
3784
|
* Discriminator type for a counterfactual regret event.
|
|
3757
3785
|
*/
|
|
3758
|
-
export type
|
|
3786
|
+
export type TopologyClass99 = "counterfactual_regret";
|
|
3759
3787
|
/**
|
|
3760
3788
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the specific historical state node where the agent mathematically diverged to simulate an alternative path.
|
|
3761
3789
|
*/
|
|
@@ -3791,7 +3819,7 @@ export type Timestamp15 = number;
|
|
|
3791
3819
|
/**
|
|
3792
3820
|
* Discriminator type for a tool invocation event.
|
|
3793
3821
|
*/
|
|
3794
|
-
export type
|
|
3822
|
+
export type TopologyClass100 = "tool_invocation";
|
|
3795
3823
|
/**
|
|
3796
3824
|
* The exact tool targeted in the CognitiveActionSpaceManifest.
|
|
3797
3825
|
*/
|
|
@@ -3815,7 +3843,7 @@ export type Timestamp16 = number;
|
|
|
3815
3843
|
/**
|
|
3816
3844
|
* Discriminator type for an epistemic promotion event.
|
|
3817
3845
|
*/
|
|
3818
|
-
export type
|
|
3846
|
+
export type TopologyClass101 = "epistemic_promotion";
|
|
3819
3847
|
/**
|
|
3820
3848
|
* The strict array of CIDs (Content Identifiers) representing the raw logs being compressed and archived.
|
|
3821
3849
|
*/
|
|
@@ -3843,11 +3871,11 @@ export type Timestamp17 = number;
|
|
|
3843
3871
|
/**
|
|
3844
3872
|
* Discriminator type for a normative drift event.
|
|
3845
3873
|
*/
|
|
3846
|
-
export type
|
|
3874
|
+
export type TopologyClass102 = "normative_drift";
|
|
3847
3875
|
/**
|
|
3848
3876
|
* The Content Identifier (CID) of the specific ConstitutionalPolicy causing logical friction.
|
|
3849
3877
|
*/
|
|
3850
|
-
export type
|
|
3878
|
+
export type TrippedRuleCid = string;
|
|
3851
3879
|
/**
|
|
3852
3880
|
* The calculated probabilistic delta showing how far the swarm's observed reality is diverging from the static rule.
|
|
3853
3881
|
*/
|
|
@@ -3871,7 +3899,7 @@ export type Timestamp18 = number;
|
|
|
3871
3899
|
/**
|
|
3872
3900
|
* Discriminator type for a persistence commit receipt.
|
|
3873
3901
|
*/
|
|
3874
|
-
export type
|
|
3902
|
+
export type TopologyClass103 = "persistence_commit";
|
|
3875
3903
|
/**
|
|
3876
3904
|
* The external cryptographic receipt generated by Iceberg/Delta.
|
|
3877
3905
|
*/
|
|
@@ -3899,7 +3927,7 @@ export type Timestamp19 = number;
|
|
|
3899
3927
|
/**
|
|
3900
3928
|
* Discriminator type for a token burn receipt.
|
|
3901
3929
|
*/
|
|
3902
|
-
export type
|
|
3930
|
+
export type TopologyClass104 = "token_burn";
|
|
3903
3931
|
/**
|
|
3904
3932
|
* A string linking this burn back to the specific ToolInvocationEvent CID.
|
|
3905
3933
|
*/
|
|
@@ -3931,7 +3959,7 @@ export type Timestamp20 = number;
|
|
|
3931
3959
|
/**
|
|
3932
3960
|
* Discriminator type for a budget exhaustion event.
|
|
3933
3961
|
*/
|
|
3934
|
-
export type
|
|
3962
|
+
export type TopologyClass105 = "budget_exhaustion";
|
|
3935
3963
|
/**
|
|
3936
3964
|
* A string representing the original escrow boundary breached.
|
|
3937
3965
|
*/
|
|
@@ -3955,7 +3983,7 @@ export type Timestamp21 = number;
|
|
|
3955
3983
|
/**
|
|
3956
3984
|
* Discriminator type for telemetry events.
|
|
3957
3985
|
*/
|
|
3958
|
-
export type
|
|
3986
|
+
export type TopologyClass106 = "epistemic_telemetry";
|
|
3959
3987
|
/**
|
|
3960
3988
|
* The exact topological action the human operator performed on the projected manifold.
|
|
3961
3989
|
*/
|
|
@@ -3980,7 +4008,7 @@ export type PriorEventHash22 = string | null;
|
|
|
3980
4008
|
* Causal Ancestry markers required to resolve decentralized event ordering.
|
|
3981
4009
|
*/
|
|
3982
4010
|
export type Timestamp22 = number;
|
|
3983
|
-
export type
|
|
4011
|
+
export type TopologyClass107 = "cognitive_prediction";
|
|
3984
4012
|
export type SourceChainCid = string;
|
|
3985
4013
|
export type TargetSourceConcept = string;
|
|
3986
4014
|
/**
|
|
@@ -3999,7 +4027,7 @@ export type PriorEventHash23 = string | null;
|
|
|
3999
4027
|
* Causal Ancestry markers required to resolve decentralized event ordering.
|
|
4000
4028
|
*/
|
|
4001
4029
|
export type Timestamp23 = number;
|
|
4002
|
-
export type
|
|
4030
|
+
export type TopologyClass108 = "epistemic_axiom_verification";
|
|
4003
4031
|
export type SourcePredictionCid = string;
|
|
4004
4032
|
export type SequenceSimilarityScore = number;
|
|
4005
4033
|
export type FactScorePassed = boolean;
|
|
@@ -4019,7 +4047,7 @@ export type PriorEventHash24 = string | null;
|
|
|
4019
4047
|
* Causal Ancestry markers required to resolve decentralized event ordering.
|
|
4020
4048
|
*/
|
|
4021
4049
|
export type Timestamp24 = number;
|
|
4022
|
-
export type
|
|
4050
|
+
export type TopologyClass109 = "cognitive_reward_evaluation";
|
|
4023
4051
|
/**
|
|
4024
4052
|
* The globally unique decentralized identifier (DID) anchoring the LLM's raw generated text trajectory.
|
|
4025
4053
|
*/
|
|
@@ -4060,7 +4088,7 @@ export type PriorEventHash25 = string | null;
|
|
|
4060
4088
|
* Causal Ancestry markers required to resolve decentralized event ordering.
|
|
4061
4089
|
*/
|
|
4062
4090
|
export type Timestamp25 = number;
|
|
4063
|
-
export type
|
|
4091
|
+
export type TopologyClass110 = "epistemic_flow_state";
|
|
4064
4092
|
/**
|
|
4065
4093
|
* The globally unique decentralized identifier (DID) anchoring the partial CognitiveReasoningTraceState.
|
|
4066
4094
|
*/
|
|
@@ -4088,7 +4116,7 @@ export type Timestamp26 = number;
|
|
|
4088
4116
|
/**
|
|
4089
4117
|
* Discriminator type for a causal explanation event.
|
|
4090
4118
|
*/
|
|
4091
|
-
export type
|
|
4119
|
+
export type TopologyClass111 = "causal_explanation";
|
|
4092
4120
|
/**
|
|
4093
4121
|
* The globally unique decentralized identifier (DID) anchoring the collective outcome being explained.
|
|
4094
4122
|
*/
|
|
@@ -4140,7 +4168,7 @@ export type Timestamp27 = number;
|
|
|
4140
4168
|
/**
|
|
4141
4169
|
* Discriminator type for an intent classification receipt.
|
|
4142
4170
|
*/
|
|
4143
|
-
export type
|
|
4171
|
+
export type TopologyClass112 = "intent_classification";
|
|
4144
4172
|
/**
|
|
4145
4173
|
* The raw, unparsed human natural language instruction.
|
|
4146
4174
|
*/
|
|
@@ -4157,7 +4185,7 @@ export type ConfidenceScore1 = number;
|
|
|
4157
4185
|
* The TaxonomicRoutingPolicy CID that governed this classification.
|
|
4158
4186
|
*/
|
|
4159
4187
|
export type RoutingPolicyCid = string | null;
|
|
4160
|
-
export type
|
|
4188
|
+
export type TopologyClass113 = "semantic_relational_record";
|
|
4161
4189
|
/**
|
|
4162
4190
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
4163
4191
|
*/
|
|
@@ -4181,7 +4209,7 @@ export type FormalSchemaUrn1 = string | null;
|
|
|
4181
4209
|
/**
|
|
4182
4210
|
* Discriminator for the reification receipt.
|
|
4183
4211
|
*/
|
|
4184
|
-
export type
|
|
4212
|
+
export type TopologyClass114 = "ontological_reification";
|
|
4185
4213
|
/**
|
|
4186
4214
|
* Cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
4187
4215
|
*/
|
|
@@ -4225,7 +4253,7 @@ export type Timestamp30 = number;
|
|
|
4225
4253
|
/**
|
|
4226
4254
|
* The type of the resilience payload.
|
|
4227
4255
|
*/
|
|
4228
|
-
export type
|
|
4256
|
+
export type TopologyClass115 = "circuit_breaker_event";
|
|
4229
4257
|
/**
|
|
4230
4258
|
* Signature or summary of the error causing the trip.
|
|
4231
4259
|
*/
|
|
@@ -4241,7 +4269,7 @@ export type PriorEventHash31 = string | null;
|
|
|
4241
4269
|
/**
|
|
4242
4270
|
* Discriminator type for a log event.
|
|
4243
4271
|
*/
|
|
4244
|
-
export type
|
|
4272
|
+
export type TopologyClass116 = "epistemic_log";
|
|
4245
4273
|
/**
|
|
4246
4274
|
* The UNIX timestamp of the log event.
|
|
4247
4275
|
*/
|
|
@@ -4258,7 +4286,7 @@ export type TelemetryScalarState = string | number | boolean | null;
|
|
|
4258
4286
|
/**
|
|
4259
4287
|
* The type of the intervention payload.
|
|
4260
4288
|
*/
|
|
4261
|
-
export type
|
|
4289
|
+
export type TopologyClass117 = "verdict";
|
|
4262
4290
|
/**
|
|
4263
4291
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
4264
4292
|
*/
|
|
@@ -4315,7 +4343,7 @@ export type PriorEventHash33 = string | null;
|
|
|
4315
4343
|
* Causal Ancestry markers required to resolve decentralized event ordering.
|
|
4316
4344
|
*/
|
|
4317
4345
|
export type Timestamp33 = number;
|
|
4318
|
-
export type
|
|
4346
|
+
export type TopologyClass118 = "custody_receipt";
|
|
4319
4347
|
/**
|
|
4320
4348
|
* Unique identifier for this chain-of-custody entry.
|
|
4321
4349
|
*/
|
|
@@ -4352,7 +4380,7 @@ export type PriorEventHash34 = string | null;
|
|
|
4352
4380
|
* Causal Ancestry markers required to resolve decentralized event ordering.
|
|
4353
4381
|
*/
|
|
4354
4382
|
export type Timestamp34 = number;
|
|
4355
|
-
export type
|
|
4383
|
+
export type TopologyClass119 = "defeasible_attack";
|
|
4356
4384
|
/**
|
|
4357
4385
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark for this directed attack edge.
|
|
4358
4386
|
*/
|
|
@@ -4377,7 +4405,7 @@ export type PriorEventHash35 = string | null;
|
|
|
4377
4405
|
* The precise temporal coordinate of the event realization.
|
|
4378
4406
|
*/
|
|
4379
4407
|
export type Timestamp35 = number;
|
|
4380
|
-
export type
|
|
4408
|
+
export type TopologyClass120 = "formal_verification_receipt";
|
|
4381
4409
|
/**
|
|
4382
4410
|
* The definitive Boolean evaluating whether the proof succeeded, the program is satisfiable, or the deduction holds true.
|
|
4383
4411
|
*/
|
|
@@ -4396,7 +4424,7 @@ export type FailingContext = string | null;
|
|
|
4396
4424
|
export type ExtractedBindings = {
|
|
4397
4425
|
[k: string]: JsonPrimitiveState;
|
|
4398
4426
|
}[];
|
|
4399
|
-
export type
|
|
4427
|
+
export type TopologyClass121 = "belief_modulation";
|
|
4400
4428
|
export type ReceiptCid2 = string;
|
|
4401
4429
|
/**
|
|
4402
4430
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
@@ -4412,7 +4440,7 @@ export type PriorEventHash36 = string | null;
|
|
|
4412
4440
|
export type Timestamp36 = number;
|
|
4413
4441
|
export type TargetGraphCid4 = string;
|
|
4414
4442
|
export type SeveredEdgeCids = string[];
|
|
4415
|
-
export type
|
|
4443
|
+
export type TopologyClass122 = "rdf_export_receipt";
|
|
4416
4444
|
export type ExportCid1 = string;
|
|
4417
4445
|
/**
|
|
4418
4446
|
* A Content Identifier (CID) acting as a cryptographic Lineage Watermark binding this node to the Merkle-DAG.
|
|
@@ -4432,7 +4460,7 @@ export type Sha256GraphHash = string;
|
|
|
4432
4460
|
export type EventCid38 = string;
|
|
4433
4461
|
export type PriorEventHash38 = string | null;
|
|
4434
4462
|
export type Timestamp38 = number;
|
|
4435
|
-
export type
|
|
4463
|
+
export type TopologyClass123 = "epistemic_starvation";
|
|
4436
4464
|
/**
|
|
4437
4465
|
* The cryptographic pointer to the specific edge that failed empirical grounding.
|
|
4438
4466
|
*/
|
|
@@ -4448,7 +4476,7 @@ export type DiagnosticReason = string;
|
|
|
4448
4476
|
export type EventCid39 = string;
|
|
4449
4477
|
export type PriorEventHash39 = string | null;
|
|
4450
4478
|
export type Timestamp39 = number;
|
|
4451
|
-
export type
|
|
4479
|
+
export type TopologyClass124 = "sparql_query_result";
|
|
4452
4480
|
/**
|
|
4453
4481
|
* A pointer back to the SPARQLQueryIntent that authorized this execution.
|
|
4454
4482
|
*/
|
|
@@ -4460,27 +4488,23 @@ export type ExecutionTimeMs = number;
|
|
|
4460
4488
|
/**
|
|
4461
4489
|
* Discriminator for the OracleExecutionReceipt topology.
|
|
4462
4490
|
*/
|
|
4463
|
-
export type
|
|
4491
|
+
export type TopologyClass125 = "oracle_execution_receipt";
|
|
4464
4492
|
/**
|
|
4465
|
-
*
|
|
4493
|
+
* The SHA-256 hash of the complete execution payload, providing undeniable cryptographic provenance for the Merkle-DAG audit trail.
|
|
4466
4494
|
*/
|
|
4467
|
-
export type
|
|
4495
|
+
export type ExecutionHash = string;
|
|
4468
4496
|
/**
|
|
4469
|
-
* The
|
|
4497
|
+
* The fully qualified URN of the solver agent that performed the execution.
|
|
4470
4498
|
*/
|
|
4471
|
-
export type
|
|
4499
|
+
export type SolverUrn = string;
|
|
4472
4500
|
/**
|
|
4473
|
-
*
|
|
4501
|
+
* The total number of tokens consumed during this execution, settled by the Thermodynamic Quota Manager.
|
|
4474
4502
|
*/
|
|
4475
|
-
export type
|
|
4503
|
+
export type TokensBurned = number;
|
|
4476
4504
|
/**
|
|
4477
|
-
*
|
|
4505
|
+
* An optional cryptographic signature from a Human-in-the-Loop (HITL) operator attesting to the correctness of the execution result. Populated only when the Temporal workflow escalates to manual review.
|
|
4478
4506
|
*/
|
|
4479
|
-
export type
|
|
4480
|
-
/**
|
|
4481
|
-
* An immutable local deployment pointer identifying the specific VPC action space.
|
|
4482
|
-
*/
|
|
4483
|
-
export type ActionSpaceCid1 = string;
|
|
4507
|
+
export type HumanAttestationSignature = string | null;
|
|
4484
4508
|
/**
|
|
4485
4509
|
* A discriminated union of workflow topologies.
|
|
4486
4510
|
*/
|
|
@@ -4489,7 +4513,7 @@ export type AnyTransitionEdge = TransitionEdgeProfile | CyclicEdgeProfile;
|
|
|
4489
4513
|
/**
|
|
4490
4514
|
* Discriminator type for an acyclic edge.
|
|
4491
4515
|
*/
|
|
4492
|
-
export type
|
|
4516
|
+
export type TopologyClass126 = "acyclic";
|
|
4493
4517
|
/**
|
|
4494
4518
|
* The coinductive pointer to the destination capability.
|
|
4495
4519
|
*/
|
|
@@ -4521,7 +4545,7 @@ export type ComputeWeightMagnitude = number;
|
|
|
4521
4545
|
/**
|
|
4522
4546
|
* Discriminator type for a cyclic edge.
|
|
4523
4547
|
*/
|
|
4524
|
-
export type
|
|
4548
|
+
export type TopologyClass127 = "cyclic";
|
|
4525
4549
|
/**
|
|
4526
4550
|
* The coinductive pointer to the destination capability.
|
|
4527
4551
|
*/
|
|
@@ -4595,7 +4619,7 @@ export type CapabilityPointerState = string;
|
|
|
4595
4619
|
/**
|
|
4596
4620
|
* The unique identifier for this curated environment of tools.
|
|
4597
4621
|
*/
|
|
4598
|
-
export type
|
|
4622
|
+
export type ActionSpaceCid1 = string;
|
|
4599
4623
|
/**
|
|
4600
4624
|
* Defines the initial state (S_0) of the MDP.
|
|
4601
4625
|
*/
|
|
@@ -4857,6 +4881,10 @@ export type ExpirationTimestamp = number;
|
|
|
4857
4881
|
* A base64 string proving the cryptographic delegation.
|
|
4858
4882
|
*/
|
|
4859
4883
|
export type CryptographicSignature = string;
|
|
4884
|
+
/**
|
|
4885
|
+
* The unconstrained Chain-of-Thought reasoning trace generated by the Frontier model with the Sovereign LLM Proxy's XGrammar AOT FSM bitmask DISABLED. This field captures the full computational runway — scratchpad blocks, intermediate calculations, and heuristic explorations — that the model requires to maximize logical accuracy without suffering the Format Restriction Penalty.
|
|
4886
|
+
*/
|
|
4887
|
+
export type DeliberationTrace = string;
|
|
4860
4888
|
export type ConstraintCid = string;
|
|
4861
4889
|
/**
|
|
4862
4890
|
* The formal SMT-LIB or Lean4 language representation of the symbolic rule.
|
|
@@ -5262,7 +5290,7 @@ export type FaultCategoryProfile = "context_overload" | "incorrect_context" | "f
|
|
|
5262
5290
|
/**
|
|
5263
5291
|
* Discriminator for fetching assets via CID.
|
|
5264
5292
|
*/
|
|
5265
|
-
export type
|
|
5293
|
+
export type TopologyClass128 = "cid_fetch";
|
|
5266
5294
|
/**
|
|
5267
5295
|
* Network timeout in milliseconds.
|
|
5268
5296
|
*/
|
|
@@ -5853,6 +5881,7 @@ export interface CoReasonSharedKernelOntology {
|
|
|
5853
5881
|
DefeasibleAttackEvent?: DefeasibleAttackEvent;
|
|
5854
5882
|
DefeasibleCascadeEvent?: DefeasibleCascadeEvent;
|
|
5855
5883
|
DelegatedCapabilityManifest?: DelegatedCapabilityManifest;
|
|
5884
|
+
DeliberativeEnvelope?: DeliberativeEnvelope;
|
|
5856
5885
|
DempsterShaferBeliefVector?: DempsterShaferBeliefVector;
|
|
5857
5886
|
DerivationModeProfile?: DerivationModeProfile;
|
|
5858
5887
|
DifferentiableLogicPolicy?: DifferentiableLogicPolicy;
|
|
@@ -6105,6 +6134,7 @@ export interface CoReasonSharedKernelOntology {
|
|
|
6105
6134
|
SteadyStateHypothesisState?: SteadyStateHypothesisState1;
|
|
6106
6135
|
StochasticNodeState?: StochasticNodeState;
|
|
6107
6136
|
StochasticTopologyManifest?: StochasticTopologyManifest;
|
|
6137
|
+
StrategicThoughtNodeIntent?: StrategicThoughtNodeIntent;
|
|
6108
6138
|
StreamingDisfluencyContract?: StreamingDisfluencyContract;
|
|
6109
6139
|
StructuralCausalGraphProfile?: StructuralCausalGraphProfile;
|
|
6110
6140
|
SubstrateHydrationManifest?: SubstrateHydrationManifest;
|
|
@@ -7057,6 +7087,24 @@ export interface HypothesisSuperpositionState {
|
|
|
7057
7087
|
export interface CompetingManifolds {
|
|
7058
7088
|
[k: string]: number;
|
|
7059
7089
|
}
|
|
7090
|
+
/**
|
|
7091
|
+
* CoReason Shared Kernel Ontology
|
|
7092
|
+
*
|
|
7093
|
+
* AGENT INSTRUCTION: Instantiates a single discrete node within a Monte Carlo Tree Search (MCTS) topology for long-horizon strategic planning. Emitted by the Claw Code agent during deliberation within the unconstrained `<deliberation>` envelope. The `urn:coreason:oracle:strategic_mcts` MCP evaluates these nodes via the UCT formula and returns expansion or pruning directives.
|
|
7094
|
+
*
|
|
7095
|
+
* CAUSAL AFFORDANCE: Connects discrete logic Premises into a fully verifiable proof tree managed by the Strategic MCTS Oracle. The `parent_node_hash` establishes the Merkle-DAG lineage to the parent thought, enabling deterministic traversal and rollback of rejected reasoning paths. The `heuristic_confidence` feeds directly into the UCT exploration-exploitation calculation.
|
|
7096
|
+
*
|
|
7097
|
+
* EPISTEMIC BOUNDS: The `parent_node_hash` is strictly bounded to exactly 64 hexadecimal characters (SHA-256), establishing a cryptographic chain of custody. The `heuristic_confidence` is bounded to `[0.0, 1.0]` representing a self-evaluated probability of success. The `proposed_action` and `rationale` are bounded to 10,000 characters each to prevent context window exhaustion.
|
|
7098
|
+
*
|
|
7099
|
+
* MCP ROUTING TRIGGERS: Monte Carlo Tree Search, UCT Formula, Strategic Planning, Claw Code Deliberation, Test-Time Compute, Thought Node, Tree of Thoughts
|
|
7100
|
+
*/
|
|
7101
|
+
export interface StrategicThoughtNodeIntent {
|
|
7102
|
+
topology_class?: TopologyClass15;
|
|
7103
|
+
parent_node_hash: ParentNodeHash;
|
|
7104
|
+
proposed_action: ProposedAction;
|
|
7105
|
+
rationale: Rationale;
|
|
7106
|
+
heuristic_confidence: HeuristicConfidence;
|
|
7107
|
+
}
|
|
7060
7108
|
/**
|
|
7061
7109
|
* CoReason Shared Kernel Ontology
|
|
7062
7110
|
*
|
|
@@ -7066,7 +7114,7 @@ export interface CompetingManifolds {
|
|
|
7066
7114
|
* MCP ROUTING TRIGGERS: Graph CRDTs, Topological Retraction, Non-Monotonic Logic, Edge Invalidation
|
|
7067
7115
|
*/
|
|
7068
7116
|
export interface TemporalEdgeInvalidationIntent {
|
|
7069
|
-
topology_class?:
|
|
7117
|
+
topology_class?: TopologyClass16;
|
|
7070
7118
|
/**
|
|
7071
7119
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
7072
7120
|
*/
|
|
@@ -7089,7 +7137,7 @@ export interface TemporalEdgeInvalidationIntent {
|
|
|
7089
7137
|
* MCP ROUTING TRIGGERS: Popperian Falsification, Null Hypothesis, Defeasible Logic, Empirical Falsifiability, Structural Boundary
|
|
7090
7138
|
*/
|
|
7091
7139
|
export interface EmpiricalFalsificationContract {
|
|
7092
|
-
topology_class?:
|
|
7140
|
+
topology_class?: TopologyClass17;
|
|
7093
7141
|
condition_cid: ConditionCid;
|
|
7094
7142
|
description: Description2;
|
|
7095
7143
|
required_tool_name?: RequiredToolName;
|
|
@@ -7101,7 +7149,7 @@ export interface EmpiricalFalsificationContract {
|
|
|
7101
7149
|
* AGENT INSTRUCTION: A contract deploying constraint oracles to hunt for counter-models to falsify a hypothesis.
|
|
7102
7150
|
*/
|
|
7103
7151
|
export interface FalsificationContract {
|
|
7104
|
-
topology_class?:
|
|
7152
|
+
topology_class?: TopologyClass18;
|
|
7105
7153
|
falsification_solver?: FalsificationSolver;
|
|
7106
7154
|
/**
|
|
7107
7155
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
@@ -7124,7 +7172,7 @@ export interface FalsificationContract {
|
|
|
7124
7172
|
* MCP ROUTING TRIGGERS: Bipartite Ontological Mapping, Grounding Oracle, CURIE Resolution, Isometry Thresholding, Semantic Crosswalk
|
|
7125
7173
|
*/
|
|
7126
7174
|
export interface OntologicalCrosswalkIntent {
|
|
7127
|
-
topology_class?:
|
|
7175
|
+
topology_class?: TopologyClass19;
|
|
7128
7176
|
target_graph_cid: TargetGraphCid;
|
|
7129
7177
|
source_strings: SourceStrings;
|
|
7130
7178
|
target_ontology_registries: TargetOntologyRegistries;
|
|
@@ -7142,7 +7190,7 @@ export interface OntologicalCrosswalkIntent {
|
|
|
7142
7190
|
* MCP ROUTING TRIGGERS: Synchronous Epistemic Signaling, Mixed-Initiative Control, Finite State Machine, Oracle Projection, Halting Problem
|
|
7143
7191
|
*/
|
|
7144
7192
|
export interface SemanticIntent {
|
|
7145
|
-
topology_class?:
|
|
7193
|
+
topology_class?: TopologyClass20;
|
|
7146
7194
|
message: Message;
|
|
7147
7195
|
timeout_action: TimeoutAction1;
|
|
7148
7196
|
}
|
|
@@ -7158,7 +7206,7 @@ export interface SemanticIntent {
|
|
|
7158
7206
|
* MCP ROUTING TRIGGERS: Active Inference, Expected Free Energy, Shannon Entropy Reduction, Zero-Shot Elicitation, Epistemic Gap
|
|
7159
7207
|
*/
|
|
7160
7208
|
export interface DraftingIntent {
|
|
7161
|
-
topology_class?:
|
|
7209
|
+
topology_class?: TopologyClass21;
|
|
7162
7210
|
context_prompt: ContextPrompt;
|
|
7163
7211
|
resolution_schema: ResolutionSchema1;
|
|
7164
7212
|
timeout_action: TimeoutAction2;
|
|
@@ -7172,25 +7220,20 @@ export interface ResolutionSchema1 {
|
|
|
7172
7220
|
/**
|
|
7173
7221
|
* CoReason Shared Kernel Ontology
|
|
7174
7222
|
*
|
|
7175
|
-
* AGENT INSTRUCTION:
|
|
7223
|
+
* AGENT INSTRUCTION: Emitted when the deterministic Forge encounters an epistemic deficit it cannot resolve via rigid AST manipulation or formal solvers, triggering an escalation to the heuristic Claw Swarm via the Sovereign LLM Proxy. Do not instantiate for security overrides; use `InterventionIntent` instead.
|
|
7176
7224
|
*
|
|
7177
|
-
* CAUSAL AFFORDANCE:
|
|
7225
|
+
* CAUSAL AFFORDANCE: Unlocks the Forge-to-Claw handoff by packaging the precise epistemic deficit, the contextual Merkle-DAG fragments required for the Claw agent's context window, and the thermodynamic budget ceiling that the Sovereign LLM Proxy will enforce via its circuit breaker.
|
|
7178
7226
|
*
|
|
7179
|
-
* EPISTEMIC BOUNDS: The `
|
|
7227
|
+
* EPISTEMIC BOUNDS: The `target_solver_urn` is strictly anchored to the `urn:coreason:solver:` namespace prefix. The `context_window_cids` array is canonically sorted to guarantee RFC 8785 deterministic hashing. The `thermodynamic_budget` is bounded to `[1, 10_000_000]` tokens to prevent unbounded token burn.
|
|
7180
7228
|
*
|
|
7181
|
-
* MCP ROUTING TRIGGERS:
|
|
7229
|
+
* MCP ROUTING TRIGGERS: Epistemic Deficit Escalation, Forge-to-Claw Handoff, Sovereign LLM Proxy, Thermodynamic Circuit Breaker, MCTS Delegation
|
|
7182
7230
|
*/
|
|
7183
7231
|
export interface EscalationIntent {
|
|
7184
|
-
topology_class?:
|
|
7185
|
-
|
|
7186
|
-
|
|
7187
|
-
|
|
7188
|
-
|
|
7189
|
-
/**
|
|
7190
|
-
* The strict JSON Schema requiring an explicit cryptographic sign-off or justification string to bypass the breaker. AGENT INSTRUCTION: Payload volume is strictly limited to an absolute $O(N)$ limit of 10,000 nodes and a maximum recursion depth of 10 to prevent VRAM exhaustion.
|
|
7191
|
-
*/
|
|
7192
|
-
export interface ResolutionSchema2 {
|
|
7193
|
-
[k: string]: JsonPrimitiveState;
|
|
7232
|
+
topology_class?: TopologyClass22;
|
|
7233
|
+
target_solver_urn: TargetSolverUrn;
|
|
7234
|
+
epistemic_deficit_description: EpistemicDeficitDescription;
|
|
7235
|
+
context_window_cids: ContextWindowCids;
|
|
7236
|
+
thermodynamic_budget: ThermodynamicBudget;
|
|
7194
7237
|
}
|
|
7195
7238
|
/**
|
|
7196
7239
|
* CoReason Shared Kernel Ontology
|
|
@@ -7204,7 +7247,7 @@ export interface ResolutionSchema2 {
|
|
|
7204
7247
|
* MCP ROUTING TRIGGERS: Zero-Shot Tool Discovery, Capability Routing, Dense Vector Embedding, Epistemic Deficit Resolution
|
|
7205
7248
|
*/
|
|
7206
7249
|
export interface SemanticDiscoveryIntent {
|
|
7207
|
-
topology_class?:
|
|
7250
|
+
topology_class?: TopologyClass23;
|
|
7208
7251
|
query_vector: VectorEmbeddingState1;
|
|
7209
7252
|
min_isometry_score: MinIsometryScore;
|
|
7210
7253
|
required_structural_types: RequiredStructuralTypes;
|
|
@@ -7250,7 +7293,7 @@ export interface VectorEmbeddingState1 {
|
|
|
7250
7293
|
* MCP ROUTING TRIGGERS: Graph Isomorphism, UI State Mutation, Heuristic Regrouping, Dynamic Manifold, Spatial Reorganization
|
|
7251
7294
|
*/
|
|
7252
7295
|
export interface TaxonomicRestructureIntent {
|
|
7253
|
-
topology_class?:
|
|
7296
|
+
topology_class?: TopologyClass24;
|
|
7254
7297
|
restructure_heuristic: RestructureHeuristic;
|
|
7255
7298
|
target_taxonomy: GenerativeTaxonomyManifest;
|
|
7256
7299
|
}
|
|
@@ -7407,7 +7450,7 @@ export interface SpatialRenderMaterial {
|
|
|
7407
7450
|
* MCP ROUTING TRIGGERS: Maximum Inner Product Search, k-Nearest Neighbors, Latent Manifold Projection, Retrieval-Augmented Generation
|
|
7408
7451
|
*/
|
|
7409
7452
|
export interface LatentProjectionIntent {
|
|
7410
|
-
topology_class?:
|
|
7453
|
+
topology_class?: TopologyClass25;
|
|
7411
7454
|
synthetic_target_vector: VectorEmbeddingState2;
|
|
7412
7455
|
top_k_candidates: TopKCandidates;
|
|
7413
7456
|
min_isometry_score: MinIsometryScore1;
|
|
@@ -7512,7 +7555,7 @@ export interface ContextExpansionPolicy {
|
|
|
7512
7555
|
* MCP ROUTING TRIGGERS: Schema Inference, Memory Heap Parsing, Abductive Reasoning, XHR Interception, Unstructured Transmutation
|
|
7513
7556
|
*/
|
|
7514
7557
|
export interface LatentSchemaInferenceIntent {
|
|
7515
|
-
topology_class?:
|
|
7558
|
+
topology_class?: TopologyClass26;
|
|
7516
7559
|
target_buffer_cid: TargetBufferCid;
|
|
7517
7560
|
max_schema_depth: MaxSchemaDepth;
|
|
7518
7561
|
max_properties: MaxProperties;
|
|
@@ -7530,7 +7573,7 @@ export interface LatentSchemaInferenceIntent {
|
|
|
7530
7573
|
* MCP ROUTING TRIGGERS: Human-in-the-Loop, Intent Translation, Agentic Forge, Objective Setting, Budget Allocation
|
|
7531
7574
|
*/
|
|
7532
7575
|
export interface HumanDirectiveIntent {
|
|
7533
|
-
topology_class?:
|
|
7576
|
+
topology_class?: TopologyClass27;
|
|
7534
7577
|
natural_language_goal: NaturalLanguageGoal;
|
|
7535
7578
|
allocated_budget_magnitude: AllocatedBudgetMagnitude;
|
|
7536
7579
|
/**
|
|
@@ -7550,7 +7593,7 @@ export interface HumanDirectiveIntent {
|
|
|
7550
7593
|
* MCP ROUTING TRIGGERS: Semantic Resolution, Optimal Transport, ETL Bypass, Dynamic Ontology
|
|
7551
7594
|
*/
|
|
7552
7595
|
export interface ContextualSemanticResolutionIntent {
|
|
7553
|
-
topology_class?:
|
|
7596
|
+
topology_class?: TopologyClass28;
|
|
7554
7597
|
source_record_cid: SourceRecordCid;
|
|
7555
7598
|
target_ontology_graph_cid: TargetOntologyGraphCid;
|
|
7556
7599
|
encoding_profile: TabularEncodingProfile;
|
|
@@ -7563,7 +7606,7 @@ export interface ContextualSemanticResolutionIntent {
|
|
|
7563
7606
|
* AGENT INSTRUCTION: Authorizes a Semantic Watchdog Agent to perform strict out-of-band polling against external semantic registries to monitor for ontological deprecation or semantic drift.
|
|
7564
7607
|
*/
|
|
7565
7608
|
export interface OntologyDiscoveryIntent {
|
|
7566
|
-
topology_class?:
|
|
7609
|
+
topology_class?: TopologyClass29;
|
|
7567
7610
|
jsonrpc: Jsonrpc;
|
|
7568
7611
|
method: Method;
|
|
7569
7612
|
params?: Params;
|
|
@@ -7584,7 +7627,7 @@ export interface OntologyDiscoveryIntent {
|
|
|
7584
7627
|
* MCP ROUTING TRIGGERS: Semantic Mapping, Heuristic Injection, Cryptographic Petition, Swarm Logic
|
|
7585
7628
|
*/
|
|
7586
7629
|
export interface SemanticMappingHeuristicIntent {
|
|
7587
|
-
topology_class?:
|
|
7630
|
+
topology_class?: TopologyClass30;
|
|
7588
7631
|
proposal_cid: ProposalCid;
|
|
7589
7632
|
source_ontology_namespace: SourceOntologyNamespace;
|
|
7590
7633
|
target_ontology_namespace: TargetOntologyNamespace;
|
|
@@ -7603,7 +7646,7 @@ export interface SemanticMappingHeuristicIntent {
|
|
|
7603
7646
|
* MCP ROUTING TRIGGERS: Optimistic Locking, Affine CRDT, Spherical Linear Interpolation, Continuous Reconciliation, Kinematic Drag
|
|
7604
7647
|
*/
|
|
7605
7648
|
export interface ContinuousSpatialMutationIntent {
|
|
7606
|
-
topology_class?:
|
|
7649
|
+
topology_class?: TopologyClass31;
|
|
7607
7650
|
/**
|
|
7608
7651
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
7609
7652
|
*/
|
|
@@ -7659,7 +7702,7 @@ export interface KinematicDerivativeProfile {
|
|
|
7659
7702
|
* MCP ROUTING TRIGGERS: Knapsack Optimization, Semantic Load Shedding, Spot Compute Bidding, QoS Classification, Resource Provisioning
|
|
7660
7703
|
*/
|
|
7661
7704
|
export interface ComputeProvisioningIntent {
|
|
7662
|
-
topology_class?:
|
|
7705
|
+
topology_class?: TopologyClass32;
|
|
7663
7706
|
max_budget: MaxBudget;
|
|
7664
7707
|
required_capabilities: RequiredCapabilities;
|
|
7665
7708
|
/**
|
|
@@ -7679,7 +7722,7 @@ export interface ComputeProvisioningIntent {
|
|
|
7679
7722
|
* MCP ROUTING TRIGGERS: Decentralized Spot Market, Request for Proposal, Thermodynamic Compute Allocation, Algorithmic Mechanism Design, Kinetic Execution Trigger
|
|
7680
7723
|
*/
|
|
7681
7724
|
export interface TaskAnnouncementIntent {
|
|
7682
|
-
topology_class?:
|
|
7725
|
+
topology_class?: TopologyClass33;
|
|
7683
7726
|
task_cid: TaskCid2;
|
|
7684
7727
|
required_action_space_cid?: RequiredActionSpaceCid;
|
|
7685
7728
|
max_budget_magnitude: MaxBudgetMagnitude;
|
|
@@ -7696,7 +7739,7 @@ export interface TaskAnnouncementIntent {
|
|
|
7696
7739
|
* MCP ROUTING TRIGGERS: Spectral Graph Partitioning, Byzantine Fault Isolation, Epistemic Contagion, Defeasible Logic, Algebraic Connectivity
|
|
7697
7740
|
*/
|
|
7698
7741
|
export interface QuarantineIntent {
|
|
7699
|
-
topology_class?:
|
|
7742
|
+
topology_class?: TopologyClass34;
|
|
7700
7743
|
/**
|
|
7701
7744
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
7702
7745
|
*/
|
|
@@ -7715,7 +7758,7 @@ export interface QuarantineIntent {
|
|
|
7715
7758
|
* MCP ROUTING TRIGGERS: Supervisory Control Theory, Mixed-Initiative System, Discrete-Event System, Bounded Delay, Pearlian Intervention
|
|
7716
7759
|
*/
|
|
7717
7760
|
export interface InterventionIntent {
|
|
7718
|
-
topology_class?:
|
|
7761
|
+
topology_class?: TopologyClass35;
|
|
7719
7762
|
/**
|
|
7720
7763
|
* The scope constraints bounding the intervention.
|
|
7721
7764
|
*/
|
|
@@ -7729,7 +7772,7 @@ export interface InterventionIntent {
|
|
|
7729
7772
|
*/
|
|
7730
7773
|
target_node_cid: string;
|
|
7731
7774
|
context_summary: ContextSummary;
|
|
7732
|
-
proposed_action:
|
|
7775
|
+
proposed_action: ProposedAction1;
|
|
7733
7776
|
adjudication_deadline: AdjudicationDeadline;
|
|
7734
7777
|
/**
|
|
7735
7778
|
* Packages the exact contextual state at the moment of computational failure.
|
|
@@ -7786,7 +7829,7 @@ export interface JsonSchemaWhitelist {
|
|
|
7786
7829
|
*/
|
|
7787
7830
|
export interface FallbackSLA {
|
|
7788
7831
|
timeout_seconds: TimeoutSeconds;
|
|
7789
|
-
timeout_action:
|
|
7832
|
+
timeout_action: TimeoutAction3;
|
|
7790
7833
|
/**
|
|
7791
7834
|
* The specific NodeCIDState to route the execution to if the escalate action is triggered.
|
|
7792
7835
|
*/
|
|
@@ -7795,7 +7838,7 @@ export interface FallbackSLA {
|
|
|
7795
7838
|
/**
|
|
7796
7839
|
* The action proposed by the agent that requires approval.
|
|
7797
7840
|
*/
|
|
7798
|
-
export interface
|
|
7841
|
+
export interface ProposedAction1 {
|
|
7799
7842
|
[k: string]: JsonPrimitiveState;
|
|
7800
7843
|
}
|
|
7801
7844
|
/**
|
|
@@ -7853,7 +7896,7 @@ export interface CognitiveCritiqueProfile {
|
|
|
7853
7896
|
* Projection, Human-in-the-Loop
|
|
7854
7897
|
*/
|
|
7855
7898
|
export interface FYIIntent {
|
|
7856
|
-
topology_class?:
|
|
7899
|
+
topology_class?: TopologyClass36;
|
|
7857
7900
|
}
|
|
7858
7901
|
/**
|
|
7859
7902
|
* CoReason Shared Kernel Ontology
|
|
@@ -7867,7 +7910,7 @@ export interface FYIIntent {
|
|
|
7867
7910
|
* MCP ROUTING TRIGGERS: Markov Decision Process, Absorbing State, Graceful Degradation, Control-Flow Override, Policy Intervention
|
|
7868
7911
|
*/
|
|
7869
7912
|
export interface FallbackIntent {
|
|
7870
|
-
topology_class?:
|
|
7913
|
+
topology_class?: TopologyClass37;
|
|
7871
7914
|
/**
|
|
7872
7915
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
7873
7916
|
*/
|
|
@@ -7889,7 +7932,7 @@ export interface FallbackIntent {
|
|
|
7889
7932
|
* MCP ROUTING TRIGGERS: Dictatorial Override, Byzantine Fault Resolution, Pearlian Intervention, Causal Shattering, Zero-Trust Override
|
|
7890
7933
|
*/
|
|
7891
7934
|
export interface OverrideIntent {
|
|
7892
|
-
topology_class?:
|
|
7935
|
+
topology_class?: TopologyClass38;
|
|
7893
7936
|
/**
|
|
7894
7937
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
7895
7938
|
*/
|
|
@@ -7919,7 +7962,7 @@ export interface OverrideAction {
|
|
|
7919
7962
|
* MCP ROUTING TRIGGERS: Defeasible Logic, Non-Monotonic Revision, Out-of-Distribution Adaptation, Normative Drift Resolution, Pearlian Intervention
|
|
7920
7963
|
*/
|
|
7921
7964
|
export interface ConstitutionalAmendmentIntent {
|
|
7922
|
-
topology_class?:
|
|
7965
|
+
topology_class?: TopologyClass39;
|
|
7923
7966
|
drift_event_cid: DriftEventCid;
|
|
7924
7967
|
proposed_patch: ProposedPatch;
|
|
7925
7968
|
justification: Justification1;
|
|
@@ -7942,7 +7985,7 @@ export interface ProposedPatch {
|
|
|
7942
7985
|
* MCP ROUTING TRIGGERS: Mathematical Kinematics, Bezier Geometry, Fitts's Law, OS-Level Actuation, Non-Linear Trajectory
|
|
7943
7986
|
*/
|
|
7944
7987
|
export interface SpatialKinematicActionIntent {
|
|
7945
|
-
topology_class?:
|
|
7988
|
+
topology_class?: TopologyClass40;
|
|
7946
7989
|
action_class: ActionClass;
|
|
7947
7990
|
/**
|
|
7948
7991
|
* The primary spatial terminus for clicks or hovers.
|
|
@@ -7991,7 +8034,7 @@ export interface SE3TransformProfile1 {
|
|
|
7991
8034
|
* MCP ROUTING TRIGGERS: Dual-Process Theory, Non-Monotonic Revision, System 2 Remediation, Backtracking Search, Abstract Syntax Tree
|
|
7992
8035
|
*/
|
|
7993
8036
|
export interface System2RemediationIntent {
|
|
7994
|
-
topology_class?:
|
|
8037
|
+
topology_class?: TopologyClass41;
|
|
7995
8038
|
fault_cid: FaultCid;
|
|
7996
8039
|
/**
|
|
7997
8040
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
@@ -8036,7 +8079,7 @@ export interface SubstrateHydrationManifest {
|
|
|
8036
8079
|
*/
|
|
8037
8080
|
target_node_cid: string;
|
|
8038
8081
|
substrate_profile: ExecutionSubstrateProfile;
|
|
8039
|
-
topology_class?:
|
|
8082
|
+
topology_class?: TopologyClass42;
|
|
8040
8083
|
cryptographic_checksums?: CryptographicChecksums;
|
|
8041
8084
|
}
|
|
8042
8085
|
/**
|
|
@@ -8066,7 +8109,7 @@ export interface CryptographicChecksums {
|
|
|
8066
8109
|
* MCP ROUTING TRIGGERS: Pre-Inference Gate, Neurosymbolic Request, Probability Envelope, SLA Enforcement, Inference Termination
|
|
8067
8110
|
*/
|
|
8068
8111
|
export interface NeurosymbolicInferenceIntent {
|
|
8069
|
-
topology_class?:
|
|
8112
|
+
topology_class?: TopologyClass43;
|
|
8070
8113
|
source_entity: ContextualizedSourceState1;
|
|
8071
8114
|
fidelity_receipt: TopologicalFidelityReceipt;
|
|
8072
8115
|
uncertainty_profile: CognitiveUncertaintyProfile;
|
|
@@ -8118,7 +8161,7 @@ export interface EpistemicCompressionSLA {
|
|
|
8118
8161
|
*/
|
|
8119
8162
|
export interface TopologicalProjectionIntent {
|
|
8120
8163
|
provenance_trace_cid?: ProvenanceTraceCid;
|
|
8121
|
-
topology_class?:
|
|
8164
|
+
topology_class?: TopologyClass44;
|
|
8122
8165
|
projection_cid: ProjectionCid;
|
|
8123
8166
|
source_superposition_cid: SourceSuperpositionCid;
|
|
8124
8167
|
target_topology: TargetTopologyProfile;
|
|
@@ -8138,7 +8181,7 @@ export interface TopologicalProjectionIntent {
|
|
|
8138
8181
|
* MCP ROUTING TRIGGERS: Automated Theorem Proving, Constraint Satisfaction, Logic Programming, Substrate Oracle
|
|
8139
8182
|
*/
|
|
8140
8183
|
export interface FormalLogicPremise {
|
|
8141
|
-
topology_class?:
|
|
8184
|
+
topology_class?: TopologyClass45;
|
|
8142
8185
|
dialect_urn: DialectUrn;
|
|
8143
8186
|
formal_statement: FormalStatement;
|
|
8144
8187
|
verification_script?: VerificationScript;
|
|
@@ -8147,7 +8190,7 @@ export interface FormalLogicPremise {
|
|
|
8147
8190
|
* CoReason Shared Kernel Ontology
|
|
8148
8191
|
*/
|
|
8149
8192
|
export interface CausalPropagationIntent {
|
|
8150
|
-
topology_class?:
|
|
8193
|
+
topology_class?: TopologyClass46;
|
|
8151
8194
|
target_graph_cid: TargetGraphCid1;
|
|
8152
8195
|
task_cid: TaskCid3;
|
|
8153
8196
|
grounding_sla: EvidentiaryGroundingSLA;
|
|
@@ -8257,7 +8300,7 @@ export interface EvidentiaryCitationState {
|
|
|
8257
8300
|
* CoReason Shared Kernel Ontology
|
|
8258
8301
|
*/
|
|
8259
8302
|
export interface RDFSerializationIntent {
|
|
8260
|
-
topology_class?:
|
|
8303
|
+
topology_class?: TopologyClass47;
|
|
8261
8304
|
export_cid: ExportCid;
|
|
8262
8305
|
target_graph_cid: TargetGraphCid2;
|
|
8263
8306
|
target_format?: TargetFormat;
|
|
@@ -8296,13 +8339,13 @@ export interface SHACLValidationSLA {
|
|
|
8296
8339
|
export interface SPARQLQueryIntent {
|
|
8297
8340
|
query_string: QueryString;
|
|
8298
8341
|
target_endpoint: TargetEndpoint;
|
|
8299
|
-
topology_class?:
|
|
8342
|
+
topology_class?: TopologyClass48;
|
|
8300
8343
|
}
|
|
8301
8344
|
/**
|
|
8302
8345
|
* CoReason Shared Kernel Ontology
|
|
8303
8346
|
*/
|
|
8304
8347
|
export interface BoundedJSONRPCIntent {
|
|
8305
|
-
topology_class?:
|
|
8348
|
+
topology_class?: TopologyClass49;
|
|
8306
8349
|
jsonrpc: Jsonrpc1;
|
|
8307
8350
|
method: Method1;
|
|
8308
8351
|
params?: Params1;
|
|
@@ -8312,7 +8355,7 @@ export interface BoundedJSONRPCIntent {
|
|
|
8312
8355
|
* CoReason Shared Kernel Ontology
|
|
8313
8356
|
*/
|
|
8314
8357
|
export interface ChaosExperimentTask {
|
|
8315
|
-
topology_class?:
|
|
8358
|
+
topology_class?: TopologyClass50;
|
|
8316
8359
|
experiment_cid: ExperimentCid;
|
|
8317
8360
|
hypothesis: SteadyStateHypothesisState;
|
|
8318
8361
|
faults: Faults;
|
|
@@ -8377,7 +8420,7 @@ export interface ExogenousEpistemicEvent {
|
|
|
8377
8420
|
event_cid: EventCid2;
|
|
8378
8421
|
prior_event_hash?: PriorEventHash2;
|
|
8379
8422
|
timestamp: Timestamp2;
|
|
8380
|
-
topology_class?:
|
|
8423
|
+
topology_class?: TopologyClass51;
|
|
8381
8424
|
shock_cid: ShockCid;
|
|
8382
8425
|
target_node_hash: TargetNodeHash;
|
|
8383
8426
|
bayesian_surprise_score: BayesianSurpriseScore;
|
|
@@ -8400,7 +8443,7 @@ export interface SimulationEscrowContract {
|
|
|
8400
8443
|
* CoReason Shared Kernel Ontology
|
|
8401
8444
|
*/
|
|
8402
8445
|
export interface EpistemicTransmutationTask {
|
|
8403
|
-
topology_class?:
|
|
8446
|
+
topology_class?: TopologyClass52;
|
|
8404
8447
|
task_cid: TaskCid4;
|
|
8405
8448
|
artifact_event_cid: ArtifactEventCid;
|
|
8406
8449
|
target_modalities: TargetModalities;
|
|
@@ -8458,7 +8501,7 @@ export interface OpticalParsingSLA {
|
|
|
8458
8501
|
* CoReason Shared Kernel Ontology
|
|
8459
8502
|
*/
|
|
8460
8503
|
export interface EpistemicUpsamplingTask {
|
|
8461
|
-
topology_class?:
|
|
8504
|
+
topology_class?: TopologyClass53;
|
|
8462
8505
|
source_entity: ContextualizedSourceState2;
|
|
8463
8506
|
target_ontological_granularity: TargetOntologicalGranularity;
|
|
8464
8507
|
upsampling_confidence_threshold: UpsamplingConfidenceThreshold;
|
|
@@ -8476,7 +8519,7 @@ export interface ContextualizedSourceState2 {
|
|
|
8476
8519
|
* CoReason Shared Kernel Ontology
|
|
8477
8520
|
*/
|
|
8478
8521
|
export interface InterventionalCausalTask {
|
|
8479
|
-
topology_class?:
|
|
8522
|
+
topology_class?: TopologyClass54;
|
|
8480
8523
|
task_cid: TaskCid5;
|
|
8481
8524
|
target_hypothesis_cid: TargetHypothesisCid1;
|
|
8482
8525
|
intervention_variable: InterventionVariable;
|
|
@@ -8488,7 +8531,7 @@ export interface InterventionalCausalTask {
|
|
|
8488
8531
|
* CoReason Shared Kernel Ontology
|
|
8489
8532
|
*/
|
|
8490
8533
|
export interface MCPClientIntent {
|
|
8491
|
-
topology_class?:
|
|
8534
|
+
topology_class?: TopologyClass55;
|
|
8492
8535
|
jsonrpc: Jsonrpc2;
|
|
8493
8536
|
method: Method2;
|
|
8494
8537
|
params?: Params2;
|
|
@@ -8499,7 +8542,7 @@ export interface MCPClientIntent {
|
|
|
8499
8542
|
* The mathematically pre-calculated view manifold tailored to the observer's frustum.
|
|
8500
8543
|
*/
|
|
8501
8544
|
export interface DynamicManifoldProjectionManifest {
|
|
8502
|
-
topology_class?:
|
|
8545
|
+
topology_class?: TopologyClass56;
|
|
8503
8546
|
manifest_cid: ManifestCid1;
|
|
8504
8547
|
active_forge_cid: ActiveForgeCid;
|
|
8505
8548
|
ast_gradient_visual_mapping: GrammarPanelProfile;
|
|
@@ -8514,7 +8557,7 @@ export interface DynamicManifoldProjectionManifest {
|
|
|
8514
8557
|
*/
|
|
8515
8558
|
export interface GrammarPanelProfile {
|
|
8516
8559
|
panel_cid: PanelCid;
|
|
8517
|
-
topology_class?:
|
|
8560
|
+
topology_class?: TopologyClass57;
|
|
8518
8561
|
title: Title;
|
|
8519
8562
|
ledger_source_cid: LedgerSourceCid;
|
|
8520
8563
|
/**
|
|
@@ -8580,7 +8623,7 @@ export interface VisualEncodingProfile {
|
|
|
8580
8623
|
* MCP ROUTING TRIGGERS: Grammar of Graphics, Metric Tensor Distortion, Levels of Measurement, Scale Projection, FSM Literal
|
|
8581
8624
|
*/
|
|
8582
8625
|
export interface ScalePolicy {
|
|
8583
|
-
topology_class:
|
|
8626
|
+
topology_class: TopologyClass58;
|
|
8584
8627
|
domain_min?: DomainMin;
|
|
8585
8628
|
domain_max?: DomainMax;
|
|
8586
8629
|
}
|
|
@@ -8612,7 +8655,7 @@ export interface FacetMatrixProfile {
|
|
|
8612
8655
|
*/
|
|
8613
8656
|
export interface GrammarPanelProfile1 {
|
|
8614
8657
|
panel_cid: PanelCid;
|
|
8615
|
-
topology_class?:
|
|
8658
|
+
topology_class?: TopologyClass57;
|
|
8616
8659
|
title: Title;
|
|
8617
8660
|
ledger_source_cid: LedgerSourceCid;
|
|
8618
8661
|
/**
|
|
@@ -8639,7 +8682,7 @@ export interface GrammarPanelProfile1 {
|
|
|
8639
8682
|
*/
|
|
8640
8683
|
export interface InsightCardProfile {
|
|
8641
8684
|
panel_cid: PanelCid1;
|
|
8642
|
-
topology_class?:
|
|
8685
|
+
topology_class?: TopologyClass59;
|
|
8643
8686
|
title: Title1;
|
|
8644
8687
|
markdown_content: MarkdownContent;
|
|
8645
8688
|
/**
|
|
@@ -8659,7 +8702,7 @@ export interface SemanticZoomProfile {
|
|
|
8659
8702
|
* CoReason Shared Kernel Ontology
|
|
8660
8703
|
*/
|
|
8661
8704
|
export interface RollbackIntent {
|
|
8662
|
-
topology_class?:
|
|
8705
|
+
topology_class?: TopologyClass60;
|
|
8663
8706
|
request_cid: RequestCid;
|
|
8664
8707
|
target_event_cid: TargetEventCid;
|
|
8665
8708
|
invalidated_node_cids?: InvalidatedNodeCids;
|
|
@@ -8668,7 +8711,7 @@ export interface RollbackIntent {
|
|
|
8668
8711
|
* CoReason Shared Kernel Ontology
|
|
8669
8712
|
*/
|
|
8670
8713
|
export interface StateMutationIntent {
|
|
8671
|
-
topology_class?:
|
|
8714
|
+
topology_class?: TopologyClass61;
|
|
8672
8715
|
/**
|
|
8673
8716
|
* The strict RFC 6902 JSON Patch operation, acting as a deterministic state vector mutation.
|
|
8674
8717
|
*/
|
|
@@ -8693,7 +8736,7 @@ export interface StateMutationIntent {
|
|
|
8693
8736
|
* MCP ROUTING TRIGGERS: Federated Discovery, Service Mesh, Capability Registry, Substrate Interrogation
|
|
8694
8737
|
*/
|
|
8695
8738
|
export interface FederatedDiscoveryIntent {
|
|
8696
|
-
topology_class?:
|
|
8739
|
+
topology_class?: TopologyClass62;
|
|
8697
8740
|
domain_filter: DomainFilter;
|
|
8698
8741
|
/**
|
|
8699
8742
|
* The content-addressed hash of the capability being searched for via P2P mesh.
|
|
@@ -8714,7 +8757,7 @@ export interface FederatedDiscoveryIntent {
|
|
|
8714
8757
|
* MCP ROUTING TRIGGERS: Semantic Crosswalk, ETL Pipeline, Data Normalization, Knowledge Graph Extraction
|
|
8715
8758
|
*/
|
|
8716
8759
|
export interface OntologicalNormalizationIntent {
|
|
8717
|
-
topology_class?:
|
|
8760
|
+
topology_class?: TopologyClass63;
|
|
8718
8761
|
source_artifact_cid: SourceArtifactCid1;
|
|
8719
8762
|
target_ontology_urn: TargetOntologyUrn;
|
|
8720
8763
|
}
|
|
@@ -8747,7 +8790,7 @@ export interface CognitiveAgentNodeProfile {
|
|
|
8747
8790
|
*/
|
|
8748
8791
|
render_material?: SpatialRenderMaterial | null;
|
|
8749
8792
|
description: Description3;
|
|
8750
|
-
topology_class?:
|
|
8793
|
+
topology_class?: TopologyClass64;
|
|
8751
8794
|
hardware?: SpatialHardwareProfile;
|
|
8752
8795
|
security?: EpistemicSecurityProfile;
|
|
8753
8796
|
/**
|
|
@@ -9397,7 +9440,7 @@ export interface CognitiveHumanNodeProfile {
|
|
|
9397
9440
|
* The physics-agnostic visual identity or shader governing the spatial rendering of this node.
|
|
9398
9441
|
*/
|
|
9399
9442
|
render_material?: SpatialRenderMaterial | null;
|
|
9400
|
-
topology_class?:
|
|
9443
|
+
topology_class?: TopologyClass65;
|
|
9401
9444
|
required_attestation: RequiredAttestation;
|
|
9402
9445
|
/**
|
|
9403
9446
|
* The continuous spatial vector representing the human operator's localized cognitive focus.
|
|
@@ -9445,7 +9488,7 @@ export interface CognitiveSystemNodeProfile {
|
|
|
9445
9488
|
* The mathematical functor blueprint authorizing the runtime to hydrate a specific open-source engine (e.g., SymbolicAI) for this node.
|
|
9446
9489
|
*/
|
|
9447
9490
|
execution_substrate?: ExecutionSubstrateProfile1 | null;
|
|
9448
|
-
topology_class?:
|
|
9491
|
+
topology_class?: TopologyClass66;
|
|
9449
9492
|
}
|
|
9450
9493
|
/**
|
|
9451
9494
|
* CoReason Shared Kernel Ontology
|
|
@@ -9493,7 +9536,7 @@ export interface CompositeNodeProfile {
|
|
|
9493
9536
|
* The physics-agnostic visual identity or shader governing the spatial rendering of this node.
|
|
9494
9537
|
*/
|
|
9495
9538
|
render_material?: SpatialRenderMaterial | null;
|
|
9496
|
-
topology_class?:
|
|
9539
|
+
topology_class?: TopologyClass67;
|
|
9497
9540
|
/**
|
|
9498
9541
|
* The encapsulated subgraph to execute.
|
|
9499
9542
|
*/
|
|
@@ -9533,7 +9576,7 @@ export interface DAGTopologyManifest {
|
|
|
9533
9576
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
9534
9577
|
*/
|
|
9535
9578
|
observability?: ObservabilityLODPolicy | null;
|
|
9536
|
-
topology_class?:
|
|
9579
|
+
topology_class?: TopologyClass68;
|
|
9537
9580
|
edges?: Edges;
|
|
9538
9581
|
allow_cycles?: AllowCycles;
|
|
9539
9582
|
/**
|
|
@@ -9943,7 +9986,7 @@ export interface CouncilTopologyManifest {
|
|
|
9943
9986
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
9944
9987
|
*/
|
|
9945
9988
|
observability?: ObservabilityLODPolicy | null;
|
|
9946
|
-
topology_class?:
|
|
9989
|
+
topology_class?: TopologyClass69;
|
|
9947
9990
|
/**
|
|
9948
9991
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
9949
9992
|
*/
|
|
@@ -10150,7 +10193,7 @@ export interface SwarmTopologyManifest {
|
|
|
10150
10193
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10151
10194
|
*/
|
|
10152
10195
|
observability?: ObservabilityLODPolicy | null;
|
|
10153
|
-
topology_class?:
|
|
10196
|
+
topology_class?: TopologyClass70;
|
|
10154
10197
|
spawning_threshold?: SpawningThreshold;
|
|
10155
10198
|
max_concurrent_agents?: MaxConcurrentAgents;
|
|
10156
10199
|
/**
|
|
@@ -10284,7 +10327,7 @@ export interface EvolutionaryTopologyManifest {
|
|
|
10284
10327
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10285
10328
|
*/
|
|
10286
10329
|
observability?: ObservabilityLODPolicy | null;
|
|
10287
|
-
topology_class?:
|
|
10330
|
+
topology_class?: TopologyClass71;
|
|
10288
10331
|
generations: Generations;
|
|
10289
10332
|
population_size: PopulationSize;
|
|
10290
10333
|
mutation: MutationPolicy;
|
|
@@ -10397,7 +10440,7 @@ export interface SMPCTopologyManifest {
|
|
|
10397
10440
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10398
10441
|
*/
|
|
10399
10442
|
observability?: ObservabilityLODPolicy | null;
|
|
10400
|
-
topology_class?:
|
|
10443
|
+
topology_class?: TopologyClass72;
|
|
10401
10444
|
smpc_protocol: SmpcProtocol;
|
|
10402
10445
|
joint_function_uri: JointFunctionUri;
|
|
10403
10446
|
participant_node_cids: ParticipantNodeCids;
|
|
@@ -10444,7 +10487,7 @@ export interface EvaluatorOptimizerTopologyManifest {
|
|
|
10444
10487
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10445
10488
|
*/
|
|
10446
10489
|
observability?: ObservabilityLODPolicy | null;
|
|
10447
|
-
topology_class?:
|
|
10490
|
+
topology_class?: TopologyClass73;
|
|
10448
10491
|
/**
|
|
10449
10492
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
10450
10493
|
*/
|
|
@@ -10494,7 +10537,7 @@ export interface DigitalTwinTopologyManifest {
|
|
|
10494
10537
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10495
10538
|
*/
|
|
10496
10539
|
observability?: ObservabilityLODPolicy | null;
|
|
10497
|
-
topology_class?:
|
|
10540
|
+
topology_class?: TopologyClass74;
|
|
10498
10541
|
target_topology_cid: TargetTopologyCid;
|
|
10499
10542
|
convergence_sla: SimulationConvergenceSLA;
|
|
10500
10543
|
enforce_no_side_effects?: EnforceNoSideEffects;
|
|
@@ -10524,7 +10567,7 @@ export interface SimulationConvergenceSLA {
|
|
|
10524
10567
|
* MCP ROUTING TRIGGERS: Practical Byzantine Fault Tolerance, pBFT, Distributed Consensus, Sybil Resistance, Macro Abstraction
|
|
10525
10568
|
*/
|
|
10526
10569
|
export interface ConsensusFederationTopologyManifest {
|
|
10527
|
-
topology_class?:
|
|
10570
|
+
topology_class?: TopologyClass75;
|
|
10528
10571
|
participant_cids: ParticipantCids;
|
|
10529
10572
|
/**
|
|
10530
10573
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
@@ -10589,7 +10632,7 @@ export interface CapabilityForgeTopologyManifest {
|
|
|
10589
10632
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10590
10633
|
*/
|
|
10591
10634
|
observability?: ObservabilityLODPolicy | null;
|
|
10592
|
-
topology_class?:
|
|
10635
|
+
topology_class?: TopologyClass76;
|
|
10593
10636
|
target_epistemic_deficit: SemanticDiscoveryIntent1;
|
|
10594
10637
|
/**
|
|
10595
10638
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
@@ -10630,7 +10673,7 @@ export interface Nodes8 {
|
|
|
10630
10673
|
* MCP ROUTING TRIGGERS: Zero-Shot Tool Discovery, Capability Routing, Dense Vector Embedding, Epistemic Deficit Resolution
|
|
10631
10674
|
*/
|
|
10632
10675
|
export interface SemanticDiscoveryIntent1 {
|
|
10633
|
-
topology_class?:
|
|
10676
|
+
topology_class?: TopologyClass23;
|
|
10634
10677
|
query_vector: VectorEmbeddingState1;
|
|
10635
10678
|
min_isometry_score: MinIsometryScore;
|
|
10636
10679
|
required_structural_types: RequiredStructuralTypes;
|
|
@@ -10743,7 +10786,7 @@ export interface IntentElicitationTopologyManifest {
|
|
|
10743
10786
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10744
10787
|
*/
|
|
10745
10788
|
observability?: ObservabilityLODPolicy | null;
|
|
10746
|
-
topology_class?:
|
|
10789
|
+
topology_class?: TopologyClass77;
|
|
10747
10790
|
raw_human_artifact_cid: RawHumanArtifactCid;
|
|
10748
10791
|
/**
|
|
10749
10792
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
@@ -10797,7 +10840,7 @@ export interface NeurosymbolicIngestionTopologyManifest {
|
|
|
10797
10840
|
* The dynamic Level of Detail physics bound to this graph.
|
|
10798
10841
|
*/
|
|
10799
10842
|
observability?: ObservabilityLODPolicy | null;
|
|
10800
|
-
topology_class?:
|
|
10843
|
+
topology_class?: TopologyClass78;
|
|
10801
10844
|
/**
|
|
10802
10845
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
10803
10846
|
*/
|
|
@@ -10858,7 +10901,7 @@ export interface NeurosymbolicVerificationTopologyManifest {
|
|
|
10858
10901
|
* The dynamic Level of Detail and Spectral Coarsening physics bound to this macroscopic execution graph.
|
|
10859
10902
|
*/
|
|
10860
10903
|
observability?: ObservabilityLODPolicy | null;
|
|
10861
|
-
topology_class?:
|
|
10904
|
+
topology_class?: TopologyClass79;
|
|
10862
10905
|
proposer_node_cid: ProposerNodeCid;
|
|
10863
10906
|
verifier_node_cid: VerifierNodeCid;
|
|
10864
10907
|
max_revision_loops: MaxRevisionLoops1;
|
|
@@ -10882,7 +10925,7 @@ export interface Nodes11 {
|
|
|
10882
10925
|
* MCP ROUTING TRIGGERS: Discourse Geometry, Rhetorical Flattening, Directed Acyclic Graph, Hierarchical Extraction
|
|
10883
10926
|
*/
|
|
10884
10927
|
export interface DiscourseTreeManifest {
|
|
10885
|
-
topology_class?:
|
|
10928
|
+
topology_class?: TopologyClass80;
|
|
10886
10929
|
manifest_cid: ManifestCid2;
|
|
10887
10930
|
/**
|
|
10888
10931
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
@@ -10923,7 +10966,7 @@ export interface DiscourseNodeState {
|
|
|
10923
10966
|
* CoReason Shared Kernel Ontology
|
|
10924
10967
|
*/
|
|
10925
10968
|
export interface DocumentKnowledgeGraphManifest {
|
|
10926
|
-
topology_class?:
|
|
10969
|
+
topology_class?: TopologyClass81;
|
|
10927
10970
|
graph_cid: GraphCid;
|
|
10928
10971
|
source_artifact_cid: SourceArtifactCid2;
|
|
10929
10972
|
nodes: Nodes12;
|
|
@@ -11071,7 +11114,7 @@ export interface HomomorphicEncryptionProfile {
|
|
|
11071
11114
|
* MCP ROUTING TRIGGERS: Cross-Modal Isomorphism, Semantic Fusion, Volumetric Projection, Profunctor Optics
|
|
11072
11115
|
*/
|
|
11073
11116
|
export interface ContinuousManifoldMappingContract {
|
|
11074
|
-
topology_class?:
|
|
11117
|
+
topology_class?: TopologyClass82;
|
|
11075
11118
|
/**
|
|
11076
11119
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
11077
11120
|
*/
|
|
@@ -11118,7 +11161,7 @@ export interface SE3TransformProfile4 {
|
|
|
11118
11161
|
* MCP ROUTING TRIGGERS: Spatial-Semantic Isomorphism, Document Object Model, Containment DAG, Visual Hierarchy, Rhetorical Bounding
|
|
11119
11162
|
*/
|
|
11120
11163
|
export interface HierarchicalDOMManifest {
|
|
11121
|
-
topology_class?:
|
|
11164
|
+
topology_class?: TopologyClass83;
|
|
11122
11165
|
dom_cid: DomCid;
|
|
11123
11166
|
root_block_cid: RootBlockCid;
|
|
11124
11167
|
blocks: Blocks;
|
|
@@ -11299,7 +11342,7 @@ export interface MemoizedNodeProfile {
|
|
|
11299
11342
|
* The physics-agnostic visual identity or shader governing the spatial rendering of this node.
|
|
11300
11343
|
*/
|
|
11301
11344
|
render_material?: SpatialRenderMaterial | null;
|
|
11302
|
-
topology_class?:
|
|
11345
|
+
topology_class?: TopologyClass84;
|
|
11303
11346
|
/**
|
|
11304
11347
|
* The exact SHA-256 fingerprint of the executed topology.
|
|
11305
11348
|
*/
|
|
@@ -11321,7 +11364,7 @@ export interface ExpectedOutputSchema {
|
|
|
11321
11364
|
* MCP ROUTING TRIGGERS: Conflict-Free Replicated Data Types, State-based Semilattice, Eventual Consistency, G-Set
|
|
11322
11365
|
*/
|
|
11323
11366
|
export interface TemporalGraphCRDTManifest {
|
|
11324
|
-
topology_class?:
|
|
11367
|
+
topology_class?: TopologyClass85;
|
|
11325
11368
|
diff_cid: DiffCid;
|
|
11326
11369
|
author_node_cid: AuthorNodeCid;
|
|
11327
11370
|
lamport_timestamp: LamportTimestamp;
|
|
@@ -11341,7 +11384,7 @@ export interface VectorClock {
|
|
|
11341
11384
|
* AGENT INSTRUCTION: A formal Substrate Projection representing an executable Model Context Protocol (MCP) tool.
|
|
11342
11385
|
*/
|
|
11343
11386
|
export interface MCPToolDefinition {
|
|
11344
|
-
topology_class?:
|
|
11387
|
+
topology_class?: TopologyClass86;
|
|
11345
11388
|
event_cid?: EventCid3;
|
|
11346
11389
|
prior_event_hash?: PriorEventHash3;
|
|
11347
11390
|
timestamp?: Timestamp3;
|
|
@@ -11370,7 +11413,7 @@ export interface CrosswalkResolutionReceipt {
|
|
|
11370
11413
|
event_cid: EventCid4;
|
|
11371
11414
|
prior_event_hash?: PriorEventHash4;
|
|
11372
11415
|
timestamp: Timestamp4;
|
|
11373
|
-
topology_class?:
|
|
11416
|
+
topology_class?: TopologyClass87;
|
|
11374
11417
|
receipt_cid: ReceiptCid1;
|
|
11375
11418
|
target_graph_cid: TargetGraphCid3;
|
|
11376
11419
|
resolved_curies: ResolvedCuries;
|
|
@@ -11415,7 +11458,7 @@ export interface EpistemicZeroTrustReceipt {
|
|
|
11415
11458
|
event_cid: EventCid5;
|
|
11416
11459
|
prior_event_hash?: PriorEventHash5;
|
|
11417
11460
|
timestamp: Timestamp5;
|
|
11418
|
-
topology_class?:
|
|
11461
|
+
topology_class?: TopologyClass88;
|
|
11419
11462
|
intent_reference_cid: IntentReferenceCid;
|
|
11420
11463
|
llm_blind_plan_hash: LlmBlindPlanHash;
|
|
11421
11464
|
firewall_breach_detected?: FirewallBreachDetected;
|
|
@@ -11437,7 +11480,7 @@ export interface ObservationEvent {
|
|
|
11437
11480
|
event_cid: EventCid6;
|
|
11438
11481
|
prior_event_hash?: PriorEventHash6;
|
|
11439
11482
|
timestamp: Timestamp6;
|
|
11440
|
-
topology_class?:
|
|
11483
|
+
topology_class?: TopologyClass89;
|
|
11441
11484
|
payload: Payload;
|
|
11442
11485
|
/**
|
|
11443
11486
|
* The specific topological node that appended this observation.
|
|
@@ -11507,7 +11550,7 @@ export interface HardwareEnclaveReceipt {
|
|
|
11507
11550
|
* MCP ROUTING TRIGGERS: Exogenous Perturbation, DOM Topography, Spatial Execution Bound, Accessibility Tree
|
|
11508
11551
|
*/
|
|
11509
11552
|
export interface BrowserDOMState {
|
|
11510
|
-
topology_class?:
|
|
11553
|
+
topology_class?: TopologyClass90;
|
|
11511
11554
|
current_url: CurrentUrl;
|
|
11512
11555
|
viewport_size: ViewportSize;
|
|
11513
11556
|
dom_hash: DomHash;
|
|
@@ -11526,7 +11569,7 @@ export interface BrowserDOMState {
|
|
|
11526
11569
|
* MCP ROUTING TRIGGERS: POSIX Environment, Exogenous Perturbation, TTY Buffer, Causal Actuator, Stream Crystallization
|
|
11527
11570
|
*/
|
|
11528
11571
|
export interface TerminalBufferState {
|
|
11529
|
-
topology_class?:
|
|
11572
|
+
topology_class?: TopologyClass91;
|
|
11530
11573
|
working_directory: WorkingDirectory;
|
|
11531
11574
|
stdout_hash: StdoutHash;
|
|
11532
11575
|
stderr_hash: StderrHash;
|
|
@@ -11641,7 +11684,7 @@ export interface BeliefMutationEvent {
|
|
|
11641
11684
|
event_cid: EventCid7;
|
|
11642
11685
|
prior_event_hash?: PriorEventHash7;
|
|
11643
11686
|
timestamp: Timestamp7;
|
|
11644
|
-
topology_class?:
|
|
11687
|
+
topology_class?: TopologyClass92;
|
|
11645
11688
|
payload: Payload1;
|
|
11646
11689
|
/**
|
|
11647
11690
|
* The specific topological node that synthesized this belief assertion.
|
|
@@ -11756,7 +11799,7 @@ export interface SystemFaultEvent {
|
|
|
11756
11799
|
event_cid: EventCid8;
|
|
11757
11800
|
prior_event_hash?: PriorEventHash8;
|
|
11758
11801
|
timestamp: Timestamp8;
|
|
11759
|
-
topology_class?:
|
|
11802
|
+
topology_class?: TopologyClass93;
|
|
11760
11803
|
}
|
|
11761
11804
|
/**
|
|
11762
11805
|
* CoReason Shared Kernel Ontology
|
|
@@ -11770,7 +11813,7 @@ export interface SystemFaultEvent {
|
|
|
11770
11813
|
* MCP ROUTING TRIGGERS: Atomic Proposition, Discourse Extraction, Labeled Property Graph, Verifiable Statement
|
|
11771
11814
|
*/
|
|
11772
11815
|
export interface AtomicPropositionState {
|
|
11773
|
-
topology_class?:
|
|
11816
|
+
topology_class?: TopologyClass94;
|
|
11774
11817
|
event_cid: EventCid9;
|
|
11775
11818
|
prior_event_hash?: PriorEventHash9;
|
|
11776
11819
|
timestamp: Timestamp9;
|
|
@@ -11811,7 +11854,7 @@ export interface EmpiricalStatisticalProfile {
|
|
|
11811
11854
|
* MCP ROUTING TRIGGERS: Post-Coordinated Semantics, Latent Manifold Alignment, Semantic Specificity, Entity Assembly
|
|
11812
11855
|
*/
|
|
11813
11856
|
export interface PostCoordinatedSemanticState {
|
|
11814
|
-
topology_class?:
|
|
11857
|
+
topology_class?: TopologyClass95;
|
|
11815
11858
|
event_cid: EventCid10;
|
|
11816
11859
|
prior_event_hash?: PriorEventHash10;
|
|
11817
11860
|
timestamp: Timestamp10;
|
|
@@ -11845,7 +11888,7 @@ export interface ArtifactCorruptionEvent {
|
|
|
11845
11888
|
event_cid: EventCid11;
|
|
11846
11889
|
prior_event_hash?: PriorEventHash11;
|
|
11847
11890
|
timestamp: Timestamp11;
|
|
11848
|
-
topology_class?:
|
|
11891
|
+
topology_class?: TopologyClass96;
|
|
11849
11892
|
artifact_cid: ArtifactCid;
|
|
11850
11893
|
corruption_class: CorruptionClass;
|
|
11851
11894
|
diagnostic_hash: DiagnosticHash;
|
|
@@ -11865,7 +11908,7 @@ export interface HypothesisGenerationEvent {
|
|
|
11865
11908
|
event_cid: EventCid12;
|
|
11866
11909
|
prior_event_hash?: PriorEventHash12;
|
|
11867
11910
|
timestamp: Timestamp12;
|
|
11868
|
-
topology_class?:
|
|
11911
|
+
topology_class?: TopologyClass97;
|
|
11869
11912
|
hypothesis_cid: HypothesisCid;
|
|
11870
11913
|
premise_text: PremiseText;
|
|
11871
11914
|
bayesian_prior: BayesianPrior;
|
|
@@ -11907,7 +11950,7 @@ export interface BargeInInterruptEvent {
|
|
|
11907
11950
|
event_cid: EventCid13;
|
|
11908
11951
|
prior_event_hash?: PriorEventHash13;
|
|
11909
11952
|
timestamp: Timestamp13;
|
|
11910
|
-
topology_class?:
|
|
11953
|
+
topology_class?: TopologyClass98;
|
|
11911
11954
|
target_event_cid: TargetEventCid1;
|
|
11912
11955
|
/**
|
|
11913
11956
|
* The continuous multimodal trigger (e.g., audio spike, user saying 'stop') that justified the interruption.
|
|
@@ -11931,7 +11974,7 @@ export interface CounterfactualRegretEvent {
|
|
|
11931
11974
|
event_cid: EventCid14;
|
|
11932
11975
|
prior_event_hash?: PriorEventHash14;
|
|
11933
11976
|
timestamp: Timestamp14;
|
|
11934
|
-
topology_class?:
|
|
11977
|
+
topology_class?: TopologyClass99;
|
|
11935
11978
|
historical_event_cid: HistoricalEventCid;
|
|
11936
11979
|
counterfactual_intervention: CounterfactualIntervention;
|
|
11937
11980
|
expected_utility_actual: ExpectedUtilityActual;
|
|
@@ -11960,7 +12003,7 @@ export interface ToolInvocationEvent {
|
|
|
11960
12003
|
event_cid: EventCid15;
|
|
11961
12004
|
prior_event_hash?: PriorEventHash15;
|
|
11962
12005
|
timestamp: Timestamp15;
|
|
11963
|
-
topology_class?:
|
|
12006
|
+
topology_class?: TopologyClass100;
|
|
11964
12007
|
tool_name: ToolName1;
|
|
11965
12008
|
parameters: Parameters;
|
|
11966
12009
|
authorized_budget_magnitude: AuthorizedBudgetMagnitude;
|
|
@@ -12026,7 +12069,7 @@ export interface EpistemicPromotionEvent {
|
|
|
12026
12069
|
event_cid: EventCid16;
|
|
12027
12070
|
prior_event_hash?: PriorEventHash16;
|
|
12028
12071
|
timestamp: Timestamp16;
|
|
12029
|
-
topology_class?:
|
|
12072
|
+
topology_class?: TopologyClass101;
|
|
12030
12073
|
source_episodic_event_cids: SourceEpisodicEventCids;
|
|
12031
12074
|
crystallized_semantic_node_cid: CrystallizedSemanticNodeCid;
|
|
12032
12075
|
compression_ratio: CompressionRatio;
|
|
@@ -12046,8 +12089,8 @@ export interface NormativeDriftEvent {
|
|
|
12046
12089
|
event_cid: EventCid17;
|
|
12047
12090
|
prior_event_hash?: PriorEventHash17;
|
|
12048
12091
|
timestamp: Timestamp17;
|
|
12049
|
-
topology_class?:
|
|
12050
|
-
tripped_rule_cid:
|
|
12092
|
+
topology_class?: TopologyClass102;
|
|
12093
|
+
tripped_rule_cid: TrippedRuleCid;
|
|
12051
12094
|
measured_semantic_drift: MeasuredSemanticDrift;
|
|
12052
12095
|
contradiction_proof_hash: ContradictionProofHash;
|
|
12053
12096
|
}
|
|
@@ -12066,7 +12109,7 @@ export interface PersistenceCommitReceipt {
|
|
|
12066
12109
|
event_cid: EventCid18;
|
|
12067
12110
|
prior_event_hash?: PriorEventHash18;
|
|
12068
12111
|
timestamp: Timestamp18;
|
|
12069
|
-
topology_class?:
|
|
12112
|
+
topology_class?: TopologyClass103;
|
|
12070
12113
|
lakehouse_snapshot_cid: LakehouseSnapshotCid;
|
|
12071
12114
|
committed_temporal_crdt_cid: CommittedTemporalCrdtCid;
|
|
12072
12115
|
target_table_uri: TargetTableUri;
|
|
@@ -12086,7 +12129,7 @@ export interface TokenBurnReceipt {
|
|
|
12086
12129
|
event_cid: EventCid19;
|
|
12087
12130
|
prior_event_hash?: PriorEventHash19;
|
|
12088
12131
|
timestamp: Timestamp19;
|
|
12089
|
-
topology_class?:
|
|
12132
|
+
topology_class?: TopologyClass104;
|
|
12090
12133
|
tool_invocation_cid: ToolInvocationCid;
|
|
12091
12134
|
input_tokens: InputTokens;
|
|
12092
12135
|
output_tokens: OutputTokens;
|
|
@@ -12107,7 +12150,7 @@ export interface BudgetExhaustionEvent {
|
|
|
12107
12150
|
event_cid: EventCid20;
|
|
12108
12151
|
prior_event_hash?: PriorEventHash20;
|
|
12109
12152
|
timestamp: Timestamp20;
|
|
12110
|
-
topology_class?:
|
|
12153
|
+
topology_class?: TopologyClass105;
|
|
12111
12154
|
exhausted_escrow_cid: ExhaustedEscrowCid;
|
|
12112
12155
|
final_burn_receipt_cid: FinalBurnReceiptCid;
|
|
12113
12156
|
}
|
|
@@ -12126,7 +12169,7 @@ export interface EpistemicTelemetryEvent {
|
|
|
12126
12169
|
event_cid: EventCid21;
|
|
12127
12170
|
prior_event_hash?: PriorEventHash21;
|
|
12128
12171
|
timestamp: Timestamp21;
|
|
12129
|
-
topology_class?:
|
|
12172
|
+
topology_class?: TopologyClass106;
|
|
12130
12173
|
interaction_modality: InteractionModality;
|
|
12131
12174
|
target_node_cid: TargetNodeCid2;
|
|
12132
12175
|
dwell_duration_ms?: DwellDurationMs;
|
|
@@ -12150,7 +12193,7 @@ export interface CognitivePredictionReceipt {
|
|
|
12150
12193
|
event_cid: EventCid22;
|
|
12151
12194
|
prior_event_hash?: PriorEventHash22;
|
|
12152
12195
|
timestamp: Timestamp22;
|
|
12153
|
-
topology_class?:
|
|
12196
|
+
topology_class?: TopologyClass107;
|
|
12154
12197
|
source_chain_cid: SourceChainCid;
|
|
12155
12198
|
target_source_concept: TargetSourceConcept;
|
|
12156
12199
|
predicted_top_k_tokens: PredictedTopKTokens;
|
|
@@ -12170,7 +12213,7 @@ export interface EpistemicAxiomVerificationReceipt {
|
|
|
12170
12213
|
event_cid: EventCid23;
|
|
12171
12214
|
prior_event_hash?: PriorEventHash23;
|
|
12172
12215
|
timestamp: Timestamp23;
|
|
12173
|
-
topology_class?:
|
|
12216
|
+
topology_class?: TopologyClass108;
|
|
12174
12217
|
source_prediction_cid: SourcePredictionCid;
|
|
12175
12218
|
sequence_similarity_score: SequenceSimilarityScore;
|
|
12176
12219
|
fact_score_passed: FactScorePassed;
|
|
@@ -12204,7 +12247,7 @@ export interface CognitiveRewardEvaluationReceipt {
|
|
|
12204
12247
|
event_cid: EventCid24;
|
|
12205
12248
|
prior_event_hash?: PriorEventHash24;
|
|
12206
12249
|
timestamp: Timestamp24;
|
|
12207
|
-
topology_class?:
|
|
12250
|
+
topology_class?: TopologyClass109;
|
|
12208
12251
|
source_generation_cid: SourceGenerationCid;
|
|
12209
12252
|
extracted_axioms?: ExtractedAxioms;
|
|
12210
12253
|
calculated_r_path: CalculatedRPath;
|
|
@@ -12250,7 +12293,7 @@ export interface EpistemicFlowStateReceipt {
|
|
|
12250
12293
|
event_cid: EventCid25;
|
|
12251
12294
|
prior_event_hash?: PriorEventHash25;
|
|
12252
12295
|
timestamp: Timestamp25;
|
|
12253
|
-
topology_class?:
|
|
12296
|
+
topology_class?: TopologyClass110;
|
|
12254
12297
|
source_trajectory_cid: SourceTrajectoryCid;
|
|
12255
12298
|
estimated_flow_value: EstimatedFlowValue;
|
|
12256
12299
|
terminal_reward_factorized: TerminalRewardFactorized;
|
|
@@ -12279,7 +12322,7 @@ export interface CausalExplanationEvent {
|
|
|
12279
12322
|
event_cid: EventCid26;
|
|
12280
12323
|
prior_event_hash?: PriorEventHash26;
|
|
12281
12324
|
timestamp: Timestamp26;
|
|
12282
|
-
topology_class?:
|
|
12325
|
+
topology_class?: TopologyClass111;
|
|
12283
12326
|
target_outcome_event_cid: TargetOutcomeEventCid;
|
|
12284
12327
|
collective_intelligence: CollectiveIntelligenceProfile;
|
|
12285
12328
|
agent_attributions: AgentAttributions;
|
|
@@ -12343,7 +12386,7 @@ export interface IntentClassificationReceipt {
|
|
|
12343
12386
|
event_cid: EventCid27;
|
|
12344
12387
|
prior_event_hash?: PriorEventHash27;
|
|
12345
12388
|
timestamp: Timestamp27;
|
|
12346
|
-
topology_class?:
|
|
12389
|
+
topology_class?: TopologyClass112;
|
|
12347
12390
|
raw_input_string: RawInputString;
|
|
12348
12391
|
classified_intent: ClassifiedIntent;
|
|
12349
12392
|
confidence_score: ConfidenceScore1;
|
|
@@ -12361,7 +12404,7 @@ export interface IntentClassificationReceipt {
|
|
|
12361
12404
|
* MCP ROUTING TRIGGERS: Semantic Relational Record, Payload Injection, Hardware Guillotine, Structured Telemetry
|
|
12362
12405
|
*/
|
|
12363
12406
|
export interface SemanticRelationalVectorState {
|
|
12364
|
-
topology_class?:
|
|
12407
|
+
topology_class?: TopologyClass113;
|
|
12365
12408
|
event_cid: EventCid28;
|
|
12366
12409
|
prior_event_hash?: PriorEventHash28;
|
|
12367
12410
|
timestamp: Timestamp28;
|
|
@@ -12406,7 +12449,7 @@ export interface PayloadInjectionZone {
|
|
|
12406
12449
|
* MCP ROUTING TRIGGERS: Ontological Reification, Bimodal Semantic Transformation, Epistemic Ledger, Traceability Collapse
|
|
12407
12450
|
*/
|
|
12408
12451
|
export interface OntologicalReificationReceipt {
|
|
12409
|
-
topology_class?:
|
|
12452
|
+
topology_class?: TopologyClass114;
|
|
12410
12453
|
event_cid: EventCid29;
|
|
12411
12454
|
prior_event_hash?: PriorEventHash29;
|
|
12412
12455
|
timestamp: Timestamp29;
|
|
@@ -12449,7 +12492,7 @@ export interface CircuitBreakerEvent {
|
|
|
12449
12492
|
event_cid: EventCid30;
|
|
12450
12493
|
prior_event_hash?: PriorEventHash30;
|
|
12451
12494
|
timestamp: Timestamp30;
|
|
12452
|
-
topology_class?:
|
|
12495
|
+
topology_class?: TopologyClass115;
|
|
12453
12496
|
/**
|
|
12454
12497
|
* A Decentralized Identifier (DID) representing a cryptographically accountable principal within the swarm.
|
|
12455
12498
|
*/
|
|
@@ -12470,7 +12513,7 @@ export interface CircuitBreakerEvent {
|
|
|
12470
12513
|
export interface EpistemicLogEvent {
|
|
12471
12514
|
event_cid: EventCid31;
|
|
12472
12515
|
prior_event_hash?: PriorEventHash31;
|
|
12473
|
-
topology_class?:
|
|
12516
|
+
topology_class?: TopologyClass116;
|
|
12474
12517
|
timestamp: Timestamp31;
|
|
12475
12518
|
level: Level;
|
|
12476
12519
|
message: Message1;
|
|
@@ -12501,7 +12544,7 @@ export interface TelemetryContextProfile {
|
|
|
12501
12544
|
* MCP ROUTING TRIGGERS: Cryptographic Nonce, State Resumption, Replay Attack Prevention, Wetware Attestation, Liveness Resolution
|
|
12502
12545
|
*/
|
|
12503
12546
|
export interface InterventionReceipt {
|
|
12504
|
-
topology_class?:
|
|
12547
|
+
topology_class?: TopologyClass117;
|
|
12505
12548
|
event_cid: EventCid32;
|
|
12506
12549
|
prior_event_hash?: PriorEventHash32;
|
|
12507
12550
|
timestamp: Timestamp32;
|
|
@@ -12562,7 +12605,7 @@ export interface CustodyReceipt {
|
|
|
12562
12605
|
event_cid: EventCid33;
|
|
12563
12606
|
prior_event_hash?: PriorEventHash33;
|
|
12564
12607
|
timestamp: Timestamp33;
|
|
12565
|
-
topology_class?:
|
|
12608
|
+
topology_class?: TopologyClass118;
|
|
12566
12609
|
custody_cid: CustodyCid;
|
|
12567
12610
|
source_node_cid: SourceNodeCid;
|
|
12568
12611
|
applied_policy_cid: AppliedPolicyCid;
|
|
@@ -12585,7 +12628,7 @@ export interface DefeasibleAttackEvent {
|
|
|
12585
12628
|
event_cid: EventCid34;
|
|
12586
12629
|
prior_event_hash?: PriorEventHash34;
|
|
12587
12630
|
timestamp: Timestamp34;
|
|
12588
|
-
topology_class?:
|
|
12631
|
+
topology_class?: TopologyClass119;
|
|
12589
12632
|
attack_cid: AttackCid;
|
|
12590
12633
|
source_claim_cid: SourceClaimCid;
|
|
12591
12634
|
target_claim_cid: TargetClaimCid;
|
|
@@ -12609,7 +12652,7 @@ export interface FormalVerificationReceipt {
|
|
|
12609
12652
|
event_cid: EventCid35;
|
|
12610
12653
|
prior_event_hash?: PriorEventHash35;
|
|
12611
12654
|
timestamp: Timestamp35;
|
|
12612
|
-
topology_class?:
|
|
12655
|
+
topology_class?: TopologyClass120;
|
|
12613
12656
|
/**
|
|
12614
12657
|
* Pointer to the specific node or intent that requested this formal verification.
|
|
12615
12658
|
*/
|
|
@@ -12623,7 +12666,7 @@ export interface FormalVerificationReceipt {
|
|
|
12623
12666
|
* CoReason Shared Kernel Ontology
|
|
12624
12667
|
*/
|
|
12625
12668
|
export interface BeliefModulationReceipt {
|
|
12626
|
-
topology_class?:
|
|
12669
|
+
topology_class?: TopologyClass121;
|
|
12627
12670
|
receipt_cid: ReceiptCid2;
|
|
12628
12671
|
event_cid: EventCid36;
|
|
12629
12672
|
prior_event_hash?: PriorEventHash36;
|
|
@@ -12639,7 +12682,7 @@ export interface GroundedEdges {
|
|
|
12639
12682
|
* CoReason Shared Kernel Ontology
|
|
12640
12683
|
*/
|
|
12641
12684
|
export interface RDFExportReceipt {
|
|
12642
|
-
topology_class?:
|
|
12685
|
+
topology_class?: TopologyClass122;
|
|
12643
12686
|
export_cid: ExportCid1;
|
|
12644
12687
|
event_cid: EventCid37;
|
|
12645
12688
|
prior_event_hash?: PriorEventHash37;
|
|
@@ -12663,7 +12706,7 @@ export interface EpistemicStarvationEvent {
|
|
|
12663
12706
|
event_cid: EventCid38;
|
|
12664
12707
|
prior_event_hash?: PriorEventHash38;
|
|
12665
12708
|
timestamp: Timestamp38;
|
|
12666
|
-
topology_class?:
|
|
12709
|
+
topology_class?: TopologyClass123;
|
|
12667
12710
|
starved_edge_cid: StarvedEdgeCid;
|
|
12668
12711
|
failed_citations: FailedCitations;
|
|
12669
12712
|
diagnostic_reason: DiagnosticReason;
|
|
@@ -12683,7 +12726,7 @@ export interface SPARQLQueryResultReceipt {
|
|
|
12683
12726
|
event_cid: EventCid39;
|
|
12684
12727
|
prior_event_hash?: PriorEventHash39;
|
|
12685
12728
|
timestamp: Timestamp39;
|
|
12686
|
-
topology_class?:
|
|
12729
|
+
topology_class?: TopologyClass124;
|
|
12687
12730
|
query_intent_cid: QueryIntentCid;
|
|
12688
12731
|
returned_bindings: ReturnedBindings;
|
|
12689
12732
|
execution_time_ms: ExecutionTimeMs;
|
|
@@ -12697,21 +12740,20 @@ export interface ReturnedBindings {
|
|
|
12697
12740
|
/**
|
|
12698
12741
|
* CoReason Shared Kernel Ontology
|
|
12699
12742
|
*
|
|
12700
|
-
* AGENT INSTRUCTION: A cryptographically frozen historical fact
|
|
12743
|
+
* AGENT INSTRUCTION: A cryptographically frozen historical fact attesting that a specific solver agent executed a task within the Claw Swarm. This receipt is immutable and logged in the Merkle-DAG chain of custody. Do not attempt to mutate this object.
|
|
12701
12744
|
*
|
|
12702
|
-
* CAUSAL AFFORDANCE: Unlocks downstream neurosymbolic synthesis by proving that external epistemic grounding was securely retrieved
|
|
12745
|
+
* CAUSAL AFFORDANCE: Unlocks downstream neurosymbolic synthesis by proving that external epistemic grounding was securely retrieved and executed by a validated solver. The `execution_hash` provides undeniable cryptographic provenance for audit trails. The `tokens_burned` enables the Thermodynamic Quota Manager to settle compute costs.
|
|
12703
12746
|
*
|
|
12704
|
-
* EPISTEMIC BOUNDS: The
|
|
12747
|
+
* EPISTEMIC BOUNDS: The `execution_hash` is strictly bounded to exactly 64 hexadecimal characters (SHA-256). The `solver_urn` is anchored to the `urn:coreason:solver:` namespace. The `tokens_burned` is bounded to `[0, 10_000_000]` to prevent integer overflow during thermodynamic tallying. The `human_attestation_signature` is optional and only populated when a Human-in-the-Loop (HITL) operator cryptographically signs off on the execution result.
|
|
12705
12748
|
*
|
|
12706
|
-
* MCP ROUTING TRIGGERS: Execution Audit, Oracle Telemetry,
|
|
12749
|
+
* MCP ROUTING TRIGGERS: Execution Audit, Merkle-DAG Provenance, Thermodynamic Accounting, Oracle Telemetry, Human-in-the-Loop Attestation, Cryptographic Receipt
|
|
12707
12750
|
*/
|
|
12708
12751
|
export interface OracleExecutionReceipt {
|
|
12709
|
-
topology_class?:
|
|
12710
|
-
|
|
12711
|
-
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
action_space_cid: ActionSpaceCid1;
|
|
12752
|
+
topology_class?: TopologyClass125;
|
|
12753
|
+
execution_hash: ExecutionHash;
|
|
12754
|
+
solver_urn: SolverUrn;
|
|
12755
|
+
tokens_burned: TokensBurned;
|
|
12756
|
+
human_attestation_signature?: HumanAttestationSignature;
|
|
12715
12757
|
}
|
|
12716
12758
|
/**
|
|
12717
12759
|
* CoReason Shared Kernel Ontology
|
|
@@ -12725,7 +12767,7 @@ export interface OracleExecutionReceipt {
|
|
|
12725
12767
|
* MCP ROUTING TRIGGERS: Markov Decision Process, Acyclic Edge, Stochastic Routing, Transition Probability, Directed Graph
|
|
12726
12768
|
*/
|
|
12727
12769
|
export interface TransitionEdgeProfile {
|
|
12728
|
-
topology_class?:
|
|
12770
|
+
topology_class?: TopologyClass126;
|
|
12729
12771
|
target_node_cid?: TargetNodeCid3;
|
|
12730
12772
|
/**
|
|
12731
12773
|
* Dynamic discovery intent for bridging nodes.
|
|
@@ -12769,7 +12811,7 @@ export interface EdgeMappingContract {
|
|
|
12769
12811
|
* MCP ROUTING TRIGGERS: Markov Decision Process, Cyclic Edge, Bellman Equation, Thermodynamic Discounting, Recursive Traversal
|
|
12770
12812
|
*/
|
|
12771
12813
|
export interface CyclicEdgeProfile {
|
|
12772
|
-
topology_class?:
|
|
12814
|
+
topology_class?: TopologyClass127;
|
|
12773
12815
|
target_node_cid?: TargetNodeCid4;
|
|
12774
12816
|
/**
|
|
12775
12817
|
* Dynamic discovery intent for bridging nodes.
|
|
@@ -12822,7 +12864,7 @@ export interface AuctionState {
|
|
|
12822
12864
|
* MCP ROUTING TRIGGERS: Decentralized Spot Market, Request for Proposal, Thermodynamic Compute Allocation, Algorithmic Mechanism Design, Kinetic Execution Trigger
|
|
12823
12865
|
*/
|
|
12824
12866
|
export interface TaskAnnouncementIntent1 {
|
|
12825
|
-
topology_class?:
|
|
12867
|
+
topology_class?: TopologyClass33;
|
|
12826
12868
|
task_cid: TaskCid2;
|
|
12827
12869
|
required_action_space_cid?: RequiredActionSpaceCid;
|
|
12828
12870
|
max_budget_magnitude: MaxBudgetMagnitude;
|
|
@@ -12896,7 +12938,7 @@ export interface BypassReceipt {
|
|
|
12896
12938
|
* MCP ROUTING TRIGGERS: Markov Decision Process, Action Space, Affordance Theory, State Transition Matrix, Directed Cyclic Graph
|
|
12897
12939
|
*/
|
|
12898
12940
|
export interface CognitiveActionSpaceManifest {
|
|
12899
|
-
action_space_cid:
|
|
12941
|
+
action_space_cid: ActionSpaceCid1;
|
|
12900
12942
|
capabilities: Capabilities;
|
|
12901
12943
|
transition_matrix: TransitionMatrix;
|
|
12902
12944
|
entry_point_cid: EntryPointCid;
|
|
@@ -13397,6 +13439,27 @@ export interface DelegatedCapabilityManifest {
|
|
|
13397
13439
|
expiration_timestamp: ExpirationTimestamp;
|
|
13398
13440
|
cryptographic_signature: CryptographicSignature;
|
|
13399
13441
|
}
|
|
13442
|
+
/**
|
|
13443
|
+
* CoReason Shared Kernel Ontology
|
|
13444
|
+
*
|
|
13445
|
+
* AGENT INSTRUCTION: A Generic two-stage generation wrapper that neutralizes the Format Restriction Penalty (Semantic Tax) during Constrained Decoding. The Sovereign LLM Proxy's XGrammar AOT FSM bitmask MUST be physically toggled between the two fields: DISABLED for `deliberation_trace`, then ENABLED for `payload`. This class models the architectural pattern documented in the Decoupled Reasoning and Formatting specification.
|
|
13446
|
+
*
|
|
13447
|
+
* CAUSAL AFFORDANCE: Unlocks the two-stage Thinker-Parser pipeline by providing a single serializable envelope that carries both the unconstrained Chain-of-Thought reasoning trace and the deterministic, schema-compliant structured payload. Enables the Claw Swarm to reason freely while the deterministic Forge receives only validated structural output.
|
|
13448
|
+
*
|
|
13449
|
+
* EPISTEMIC BOUNDS: The `deliberation_trace` has a maximum length of 100,000 characters to prevent context window exhaustion. The `payload` of type `T` is strictly validated against the target `CoreasonBaseState` subclass schema at deserialization time. The Generic parameter `T` must be a `CoreasonBaseState` descendant to guarantee RFC 8785 canonicalization.
|
|
13450
|
+
*
|
|
13451
|
+
* MCP ROUTING TRIGGERS: Semantic Tax Neutralization, Decoupled Reasoning Pipeline, XGrammar FSM Toggle, Constrained Decoding, Two-Stage Generation, Deliberation Envelope
|
|
13452
|
+
*/
|
|
13453
|
+
export interface DeliberativeEnvelope {
|
|
13454
|
+
deliberation_trace: DeliberationTrace;
|
|
13455
|
+
payload: Payload2;
|
|
13456
|
+
}
|
|
13457
|
+
/**
|
|
13458
|
+
* The deterministic, schema-compliant structured output generated by the Edge model (or the same model in a second pass) with the Sovereign LLM Proxy's XGrammar AOT FSM bitmask STRICTLY ENABLED. This field contains the validated structural result that maps directly to the target CoreasonBaseState subclass.
|
|
13459
|
+
*/
|
|
13460
|
+
export interface Payload2 {
|
|
13461
|
+
[k: string]: unknown;
|
|
13462
|
+
}
|
|
13400
13463
|
/**
|
|
13401
13464
|
* CoReason Shared Kernel Ontology
|
|
13402
13465
|
*
|
|
@@ -13523,7 +13586,7 @@ export interface DynamicLayoutManifest {
|
|
|
13523
13586
|
* MCP ROUTING TRIGGERS: Grammar of Graphics, Retinal Variables, UI Rendering, Semantic Zooming, Dynamic Manifold
|
|
13524
13587
|
*/
|
|
13525
13588
|
export interface DynamicManifoldProjectionManifest1 {
|
|
13526
|
-
topology_class?:
|
|
13589
|
+
topology_class?: TopologyClass56;
|
|
13527
13590
|
manifest_cid: ManifestCid1;
|
|
13528
13591
|
active_forge_cid: ActiveForgeCid;
|
|
13529
13592
|
ast_gradient_visual_mapping: GrammarPanelProfile;
|
|
@@ -14226,7 +14289,7 @@ export interface EpistemicTopologicalProofManifest1 {
|
|
|
14226
14289
|
export interface ExecutionEnvelopeState {
|
|
14227
14290
|
trace_context: TraceContextState;
|
|
14228
14291
|
state_vector: StateVectorProfile;
|
|
14229
|
-
payload:
|
|
14292
|
+
payload: Payload3;
|
|
14230
14293
|
}
|
|
14231
14294
|
/**
|
|
14232
14295
|
* Represents the Reader/Writer monad for causality and recursion.
|
|
@@ -14254,7 +14317,7 @@ export interface ImmutableMatrix {
|
|
|
14254
14317
|
/**
|
|
14255
14318
|
* Represents the pure value payload data structure, domain-specific.
|
|
14256
14319
|
*/
|
|
14257
|
-
export interface
|
|
14320
|
+
export interface Payload3 {
|
|
14258
14321
|
[k: string]: unknown;
|
|
14259
14322
|
}
|
|
14260
14323
|
/**
|
|
@@ -14381,7 +14444,7 @@ export interface FederatedBilateralSLA2 {
|
|
|
14381
14444
|
* MCP ROUTING TRIGGERS: Content Addressing, Zero-Copy Streaming, Decentralized Fetch, IPFS, FlatBuffers
|
|
14382
14445
|
*/
|
|
14383
14446
|
export interface FederatedCIDFetchIntent {
|
|
14384
|
-
topology_class?:
|
|
14447
|
+
topology_class?: TopologyClass128;
|
|
14385
14448
|
/**
|
|
14386
14449
|
* A content-addressed SHA-256 hash of a deterministic artifact bundle (e.g., an Action Space MCP server, an OHDSI Circe cohort definition JSON, or any RFC 8785 canonicalizable resource), enabling zero-trust verification and distributed exchangeability across federated boundaries.
|
|
14387
14450
|
*/
|