Overview

Command-line interfaces, terminal utilities, and developer tools

🎨

Beautiful UI

Colored output and progress bars

Fast

Optimized for speed

🔧

Easy CLI

Simple argument parsing

Packages

Quick Start Example

Get started with CLI Tools:

use avx_cli::{Cli, Arg};

let cli = Cli::new("myapp")
    .version("1.0.0")
    .arg(Arg::new("input").required())
    .arg(Arg::new("verbose").short('v'));

let matches = cli.parse();