@coreason-ai/coreason-manifest 0.50.2 → 0.50.9
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 +15 -15
- package/package.json +1 -1
package/dist/ontology.d.ts
CHANGED
|
@@ -121,7 +121,7 @@ export type JsonPrimitiveState = string | number | boolean | JsonPrimitiveState[
|
|
|
121
121
|
/**
|
|
122
122
|
* The deterministic UUID generated by the runtime to represent this field.
|
|
123
123
|
*/
|
|
124
|
-
export type
|
|
124
|
+
export type ProxyCid = string;
|
|
125
125
|
/**
|
|
126
126
|
* The abstract Python type representation (e.g., 'List[str]').
|
|
127
127
|
*/
|
|
@@ -617,7 +617,7 @@ export type TopologyClass12 = "zero_trust_contract";
|
|
|
617
617
|
/**
|
|
618
618
|
* UUIDv7 mapping to the ledger.
|
|
619
619
|
*/
|
|
620
|
-
export type
|
|
620
|
+
export type IntentCid = string;
|
|
621
621
|
/**
|
|
622
622
|
* The core semantic instruction for the blind LLM planner.
|
|
623
623
|
*/
|
|
@@ -3286,7 +3286,7 @@ export type TopologyClass87 = "zero_trust_receipt";
|
|
|
3286
3286
|
/**
|
|
3287
3287
|
* Pointer to the originating EpistemicZeroTrustContract.
|
|
3288
3288
|
*/
|
|
3289
|
-
export type
|
|
3289
|
+
export type IntentReferenceCid = string;
|
|
3290
3290
|
/**
|
|
3291
3291
|
* RFC 8785 hash of the proxy-only structural logic generated by the LLM.
|
|
3292
3292
|
*/
|
|
@@ -4432,7 +4432,7 @@ export type ExecutedUrn = string;
|
|
|
4432
4432
|
/**
|
|
4433
4433
|
* An immutable local deployment pointer identifying the specific VPC action space.
|
|
4434
4434
|
*/
|
|
4435
|
-
export type
|
|
4435
|
+
export type ActionSpaceCid1 = string;
|
|
4436
4436
|
/**
|
|
4437
4437
|
* A discriminated union of workflow topologies.
|
|
4438
4438
|
*/
|
|
@@ -4547,7 +4547,7 @@ export type CapabilityPointerState = string;
|
|
|
4547
4547
|
/**
|
|
4548
4548
|
* The unique identifier for this curated environment of tools.
|
|
4549
4549
|
*/
|
|
4550
|
-
export type
|
|
4550
|
+
export type ActionSpaceCid2 = string;
|
|
4551
4551
|
/**
|
|
4552
4552
|
* Defines the initial state (S_0) of the MDP.
|
|
4553
4553
|
*/
|
|
@@ -5023,7 +5023,7 @@ export type ActiveCascades = DefeasibleCascadeEvent[];
|
|
|
5023
5023
|
/**
|
|
5024
5024
|
* The deterministic UUID generated by the runtime to represent this field.
|
|
5025
5025
|
*/
|
|
5026
|
-
export type
|
|
5026
|
+
export type ProxyCid1 = string;
|
|
5027
5027
|
/**
|
|
5028
5028
|
* The abstract Python type representation (e.g., 'List[str]').
|
|
5029
5029
|
*/
|
|
@@ -6252,7 +6252,7 @@ export interface ResolutionSchema {
|
|
|
6252
6252
|
* CoReason Shared Kernel Ontology
|
|
6253
6253
|
*/
|
|
6254
6254
|
export interface EpistemicProxyStateAny {
|
|
6255
|
-
|
|
6255
|
+
proxy_cid: ProxyCid;
|
|
6256
6256
|
structural_type: StructuralType;
|
|
6257
6257
|
}
|
|
6258
6258
|
/**
|
|
@@ -6884,7 +6884,7 @@ export interface EphemeralNamespacePartitionState {
|
|
|
6884
6884
|
*/
|
|
6885
6885
|
export interface EpistemicZeroTrustContract {
|
|
6886
6886
|
topology_class?: TopologyClass12;
|
|
6887
|
-
|
|
6887
|
+
intent_cid: IntentCid;
|
|
6888
6888
|
semantic_planning_task: SemanticPlanningTask;
|
|
6889
6889
|
schema_blueprint_name: SchemaBlueprintName;
|
|
6890
6890
|
structural_pre_conditions?: StructuralPreConditions;
|
|
@@ -11317,7 +11317,7 @@ export interface EpistemicZeroTrustReceipt {
|
|
|
11317
11317
|
prior_event_hash?: PriorEventHash5;
|
|
11318
11318
|
timestamp: Timestamp5;
|
|
11319
11319
|
topology_class?: TopologyClass87;
|
|
11320
|
-
|
|
11320
|
+
intent_reference_cid: IntentReferenceCid;
|
|
11321
11321
|
llm_blind_plan_hash: LlmBlindPlanHash;
|
|
11322
11322
|
firewall_breach_detected?: FirewallBreachDetected;
|
|
11323
11323
|
remediation_epochs_consumed: RemediationEpochsConsumed;
|
|
@@ -12514,7 +12514,7 @@ export interface FormalVerificationReceipt {
|
|
|
12514
12514
|
/**
|
|
12515
12515
|
* Pointer to the specific node or intent that requested this formal verification.
|
|
12516
12516
|
*/
|
|
12517
|
-
|
|
12517
|
+
causal_provenance_cid?: NodeCIDState | null;
|
|
12518
12518
|
is_proved: IsProved;
|
|
12519
12519
|
satisfiability_state?: SatisfiabilityState;
|
|
12520
12520
|
failing_context?: FailingContext;
|
|
@@ -12602,7 +12602,7 @@ export interface ReturnedBindings {
|
|
|
12602
12602
|
*
|
|
12603
12603
|
* CAUSAL AFFORDANCE: Unlocks downstream neurosymbolic synthesis by proving that external epistemic grounding was securely retrieved from a validated action space.
|
|
12604
12604
|
*
|
|
12605
|
-
* EPISTEMIC BOUNDS: The
|
|
12605
|
+
* EPISTEMIC BOUNDS: The action_space_cid guarantees an immutable cryptographic pointer to the specific VPC deployment that serviced the URN. Volumetrically clamped to prevent dictionary bombing.
|
|
12606
12606
|
*
|
|
12607
12607
|
* MCP ROUTING TRIGGERS: Execution Audit, Oracle Telemetry, Provenance Ledger, Factual Assertion
|
|
12608
12608
|
*/
|
|
@@ -12612,7 +12612,7 @@ export interface OracleExecutionReceipt {
|
|
|
12612
12612
|
prior_event_hash?: PriorEventHash40;
|
|
12613
12613
|
timestamp: Timestamp40;
|
|
12614
12614
|
executed_urn: ExecutedUrn;
|
|
12615
|
-
|
|
12615
|
+
action_space_cid: ActionSpaceCid1;
|
|
12616
12616
|
}
|
|
12617
12617
|
/**
|
|
12618
12618
|
* CoReason Shared Kernel Ontology
|
|
@@ -12797,7 +12797,7 @@ export interface BypassReceipt {
|
|
|
12797
12797
|
* MCP ROUTING TRIGGERS: Markov Decision Process, Action Space, Affordance Theory, State Transition Matrix, Directed Cyclic Graph
|
|
12798
12798
|
*/
|
|
12799
12799
|
export interface CognitiveActionSpaceManifest {
|
|
12800
|
-
action_space_cid:
|
|
12800
|
+
action_space_cid: ActionSpaceCid2;
|
|
12801
12801
|
capabilities: Capabilities;
|
|
12802
12802
|
transition_matrix: TransitionMatrix;
|
|
12803
12803
|
entry_point_cid: EntryPointCid;
|
|
@@ -13846,12 +13846,12 @@ export interface TruthMaintenancePolicy1 {
|
|
|
13846
13846
|
*
|
|
13847
13847
|
* CAUSAL AFFORDANCE: Unlocks OpenSymbolicAI's Symbolic Firewall, allowing the orchestrator to perform zero-trust semantic planning without payload exposure.
|
|
13848
13848
|
*
|
|
13849
|
-
* EPISTEMIC BOUNDS: The `
|
|
13849
|
+
* EPISTEMIC BOUNDS: The `proxy_cid` is strictly bounded to a deterministic UUID string. The raw payload `T` is mathematically severed from serialization during prompt injection.
|
|
13850
13850
|
*
|
|
13851
13851
|
* MCP ROUTING TRIGGERS: Zero-Trust Isolation, Symbolic Firewall, Epistemic Quarantine, OpenSymbolicAI Projection
|
|
13852
13852
|
*/
|
|
13853
13853
|
export interface EpistemicProxyState {
|
|
13854
|
-
|
|
13854
|
+
proxy_cid: ProxyCid1;
|
|
13855
13855
|
structural_type: StructuralType1;
|
|
13856
13856
|
}
|
|
13857
13857
|
/**
|
package/package.json
CHANGED