oxios 1.10.1

Oxios Agent OS — Agent Operating System powered by oxi-sdk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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;
pub use interactive::InteractiveLoop;
pub use plugin::CliPlugin;