ai-usagebar 0.21.0

Waybar widget + TUI for tracking AI plan usage across multiple providers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Anthropic vendor — OAuth-based plan usage via the undocumented
//! `https://api.anthropic.com/api/oauth/usage` endpoint.
//!
//! Mirrors `~/Projects/claudebar/claudebar` line-for-line; see individual
//! submodule headers for the bash references.

pub mod cli_account;
pub mod creds;
pub mod desktop_creds;
pub mod fetch;
#[cfg(target_os = "macos")]
pub mod keychain;
pub mod oauth;
pub mod types;

pub use fetch::{FetchOutcome, fetch_snapshot};