UNPKG

trellis

Version:

Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications

20 lines 615 B
/** * Core Ontology — Built-in structural type hierarchy * * These types are immutable and ship with the Trellis kernel. * They define the foundational type system that all system * and user ontologies extend. * * tier: 'core' — kernel rejects mutations to these schemas. */ import type { SchemaDefinition } from './types.js'; /** * All core structural type schemas. * Auto-loaded into the kernel at construction time. */ export declare const CORE_ONTOLOGY: SchemaDefinition[]; /** * Core ontology version. */ export declare const CORE_VERSION = "1.0.0"; //# sourceMappingURL=core-ontology.d.ts.map