tirea-contract 0.5.0

Agent runtime contracts: 8-phase plugin lifecycle, typed tool traits, and state scope system
Documentation
pub mod context;
pub mod executor;
pub mod gate;
pub mod lifecycle;
pub mod suspension;
pub mod tool;

pub use context::{
    ActivityContext, CallerContext, ToolCallContext, ToolCallProgressSink, ToolCallProgressState,
    ToolCallProgressStatus, ToolCallProgressUpdate, ToolProgressState,
    TOOL_CALL_PROGRESS_ACTIVITY_TYPE, TOOL_CALL_PROGRESS_SCHEMA, TOOL_CALL_PROGRESS_TYPE,
    TOOL_PROGRESS_ACTIVITY_TYPE, TOOL_PROGRESS_ACTIVITY_TYPE_LEGACY,
};
pub use executor::{
    DecisionReplayPolicy, ToolCallOutcome, ToolExecution, ToolExecutionRequest,
    ToolExecutionResult, ToolExecutor, ToolExecutorError,
};
pub use gate::{SuspendTicket, ToolCallAction, ToolGate};
pub use lifecycle::{
    suspended_calls_from_state, tool_call_states_from_state, PendingToolCall, ResumeDecisionAction,
    SuspendedCall, SuspendedCallAction, SuspendedCallState, ToolCallResume, ToolCallResumeMode,
    ToolCallState, ToolCallStateAction, ToolCallStatus,
};
pub use suspension::{Suspension, SuspensionResponse};
pub use tool::{
    validate_against_schema, Tool, ToolAccessGranter, ToolDescriptor, ToolError,
    ToolExecutionEffect, ToolResult, ToolStatus, TypedTool,
};