mitoxide_agent/lib.rs
1//! # Mitoxide Agent
2//!
3//! Core agent functionality for remote execution.
4
5#![warn(missing_docs)]
6
7/// Agent main loop and frame processing
8pub mod agent;
9
10/// Request handlers for different operation types
11pub mod handlers;
12
13/// Agent-side routing for multiplexed streams
14pub mod router;
15
16/// Agent bootstrap and platform detection
17pub mod bootstrap;