life-cli 0.3.1

Production agent deployment pipeline for Life Agent OS
Documentation
1
2
3
4
5
6
7
8
9
//! Life CLI — Agent Operating System.
//!
//! Run `life` with no arguments for the welcome screen,
//! or `life setup` for interactive onboarding.

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    life_cli::run().await
}