tirea-contract 0.5.0

Agent runtime contracts: 8-phase plugin lifecycle, typed tool traits, and state scope system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Runtime input/output contracts and command DTOs.

pub mod decision;
pub mod decision_translation;
pub mod event;
pub mod input;

pub use decision::{ResumeDecisionAction, ToolCallDecision};
pub use decision_translation::suspension_response_to_decision;
pub use event::AgentEvent;
pub use event::AgentEvent as RuntimeOutput;
pub use input::{RunRequest, RuntimeInput};