agent-id-cli 0.3.0

Portable identity registry for coding-agent sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use clap::Parser;

fn main() {
    if let Err(error) = run() {
        eprintln!("agent-id: {error:#}");
        std::process::exit(1);
    }
}

fn run() -> Result<()> {
    let cli = agent_id_cli::cli::Cli::parse();
    agent_id_cli::run(cli)
}