koda-cli 0.2.15

A high-performance AI coding agent for macOS and Linux
Documentation
1
2
3
4
5
6
7
8
9
10
//! Koda 🐻 — binary entry point.
//!
//! All logic lives in [`koda_cli::run()`]. This file is intentionally thin
//! so that `koda-cli` can be tested as a library without pulling in the
//! binary's argument parsing context.

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