tirea-agentos 0.4.0

Agent runtime with streaming LLM integration, sub-agent orchestration, and context window management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Plugin orchestration, sub-agent management, and lifecycle composition for AgentOS.
//!
//! - [`composition`]: agent definitions, builder, registries, and wiring.
//! - [`runtime`]: run preparation, execution, stop policies, and background tasks.
//! - [`extensions`]: feature-gated bridges to permission, reminder, skills, observability, and MCP.
#![allow(missing_docs)]

pub use tirea_contract as contracts;

pub mod composition;
pub mod engine;
pub mod extensions;
pub mod runtime;

// ── Top-level re-exports for common entry points ────────────────────────

pub use composition::{AgentDefinition, AgentOsBuilder, RegistrySet, ToolBehaviorBundle};
pub use runtime::{AgentOs, AgentOsRunError, PreparedRun, RunStream};