oxios 1.5.2

Oxios Agent OS — Agent Operating System powered by oxi-sdk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Interactive CLI channel for Oxios (RFC-026: merged from channels/oxios-cli).
//!
//! Internal module of the oxios binary, feature-gated by the `cli` feature.

pub mod channel;
pub mod commands;
pub mod format;
pub mod interactive;
pub mod plugin;
pub mod session;

pub use channel::{CliChannel, CliChannelHandle};
pub use commands::MetaCommand;
pub use format::CliFormatter;
pub use interactive::InteractiveLoop;
pub use plugin::CliPlugin;
pub use session::Session;