rho-coding-agent 0.24.1

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
use clap::Parser;
use rho_coding_agent::{run, Cli};

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