tincan-cli 0.1.0

Capture important decisions, their reasoning, and learnings from agent coding sessions in plain Markdown
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod cli;
mod commands;
mod git;
mod model;
mod skill;
mod store;
mod util;

fn main() {
    if let Err(error) = commands::run(cli::parse(std::env::args().skip(1).collect())) {
        eprintln!("tincan: {error}");
        std::process::exit(1);
    }
}