Skip to main content

ctc_agents/
lib.rs

1//! # Autonomous Chronal Agents (`ctc-agents`)
2//!
3//! Lightweight non-deterministic sub-routines that live natively inside the
4//! Worldline DAG. Unlike standard threads, agents traverse temporal epochs
5//! \(\tau\) and parallel universe branches, scanning for impending paradoxes,
6//! resource deadlocks, or sub-optimal convergence — then proactively inject
7//! correction vectors into past execution frames via `ctc-signal`.
8
9mod agent;
10mod config;
11mod error;
12mod fleet;
13mod probe;
14
15pub use agent::{AgentId, AgentReport, AgentRole, ChronalAgent};
16pub use config::AgentConfig;
17pub use error::{AgentError, AgentResult};
18pub use fleet::{AgentFleet, FleetReport};
19pub use probe::{CorrectionVector, ProbeFinding, ProbeKind};