roboticus_cli/lib.rs
1//! # roboticus-cli
2//!
3//! CLI command handlers and migration engine for the Roboticus agent runtime.
4//! This crate contains all `roboticus <subcommand>` implementations (status,
5//! sessions, memory, wallet, update, admin, defrag, etc.) as well as the
6//! Legacy ↔ Roboticus migration and skill import/export engine.
7
8pub mod cli;
9pub mod migrate;
10pub mod state_hygiene;
11
12#[cfg(test)]
13pub mod test_support;