agentoven-cli 0.6.0

CLI for AgentOven — bake production-ready AI agents from the terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! AgentOven CLI — bake production-ready AI agents from the terminal.
//!
//! 🏺 `agentoven` — the command-line interface for the AgentOven control plane.

mod commands;

use clap::Parser;
use commands::{execute, Cli};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let cli = Cli::parse();
    execute(cli).await
}