clauth 0.7.1

Manage multiple Claude Code accounts, monitor 5h/7d usage with configurable auto-switch and delegation with an MCP plugin. CLI + TUI.
mod burn;
mod fetch;
mod scheduler;

pub(crate) use burn::compute_burn_rates_from_history;
#[allow(unused_imports)]
pub(crate) use fetch::{
    ANTHROPIC_ORIGIN, ExtraPeriod, ExtraUsage, LABEL_5H, LABEL_7D, PlanInfo, PlanTier,
    ScopedWindow, SpendInfo, UsageInfo, UsageWindow, WindowDollars, await_request_slot,
    epoch_secs_to_iso, expire_profile_ttl, http_agent, humanize_duration, ideal_pace_pct,
    iso_to_epoch_secs, now_epoch_secs, now_ms, parse_retry_after, window_avg_pace_per_day,
};
pub(crate) use scheduler::{
    ActivityStore, FetchStatus, LastFetchedAt, NextRefreshPerProfile, OpResult, OpResultReceiver,
    OpResultSender, PendingSwitch, PendingSwitchOff, ProfileActivity, RateLimitStreaks,
    RefetchQueue, StartupReceiver, StartupSender, StartupSignal, StatusStore,
    SuppressedGenericStore, ThirdPartyList, ThirdPartyStatusStore, ThirdPartyUsageStore,
    TokenEntry, TokenList, UsageStore, any_busy, bootstrap_fetch, bootstrap_third_party,
    clear_activity, collect_third_party_entries, is_idle, mark_activity, spawn_refresher,
};