roboticus-cli 0.11.3

CLI commands and migration engine for the Roboticus agent runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # roboticus-cli
//!
//! CLI command handlers and migration engine for the Roboticus agent runtime.
//! This crate contains all `roboticus <subcommand>` implementations (status,
//! sessions, memory, wallet, update, admin, defrag, etc.) as well as the
//! Legacy ↔ Roboticus migration and skill import/export engine.

pub mod cli;
pub mod migrate;
pub mod state_hygiene;

#[cfg(test)]
pub mod test_support;