Skip to main content

agentic_reality/
lib.rs

1//! AgenticReality — existential grounding system for AI agents.
2//!
3//! Gives AI agents awareness of deployment context, resources, reality layers,
4//! topology, time, stakes, and coherence. Sister #10 "The Ground" in the
5//! Agentra Labs ecosystem.
6
7pub mod bridges;
8pub mod cache;
9#[cfg(feature = "cli")]
10pub mod cli;
11pub mod engine;
12#[cfg(feature = "ffi")]
13pub mod ffi;
14#[cfg(feature = "format")]
15pub mod format;
16pub mod index;
17pub mod inventions;
18pub mod metrics;
19pub mod query;
20pub mod security;
21pub mod storage;
22pub mod types;
23pub mod validation;
24
25// Re-export commonly used types at the crate root
26pub use engine::{QueryEngine, RealityEngine, WriteEngine};
27pub use types::{
28    AnchorId, ContextId, DependencyId, EventId, IncarnationId, NeighborId, ObserverId,
29    RealityError, RealityResult, ServiceId, SnapshotId, TimelineId, TransitionId,
30};