api-key-manager 0.3.0

Use macOS Keychain secrets in commands without copying their values.
1
2
3
4
5
6
7
8
9
10
11
/// Semantic exit codes (agent-cli-framework convention).
///
/// Agents read these to decide what to do without parsing stderr.
pub const SUCCESS: u8 = 0;
pub const TRANSIENT: u8 = 1;
#[allow(dead_code)]
pub const CONFIG: u8 = 2;
pub const BAD_INPUT: u8 = 3;
#[allow(dead_code)]
pub const RATE_LIMITED: u8 = 4;
pub const NOT_FOUND: u8 = 6;