opencode-provider-manager 0.1.7-beta.4

TUI/CLI binary crate for managing OpenCode provider configs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! auth: Read-only access to OpenCode's auth.json for API key status display.
//!
//! OpenCode stores credentials in ~/.local/share/opencode/auth.json
//! with the format: { "provider_id": { "type": "api", "key": "sk-..." } }

pub mod error;
pub mod parser;
pub mod status;

pub use error::{AuthError, Result};
pub use status::ProviderAuthStatus;
pub use status::provider_env_var;