lucy-cli 1.7.0

A small local JSONL agent harness
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::io;

fn main() {
    let args = std::env::args().skip(1).collect::<Vec<_>>();
    let exit_code = lucy::run_cli(
        &args,
        io::BufReader::new(io::stdin()),
        io::stdout().lock(),
        io::stderr().lock(),
    );
    if exit_code != 0 {
        std::process::exit(exit_code);
    }
}