api-key-manager 0.1.3

Agent-driven macOS Keychain CLI for API keys. Zero human friction.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::process::ExitCode;

mod audit;
mod cli;
mod commands;
mod envelope;
mod error;
mod exit;
mod keychain;
mod redact;
mod skill;

fn main() -> ExitCode {
    let exit_code = cli::run();
    ExitCode::from(exit_code)
}