digital-roster 0.3.2

Rent the intelligence, own the governance — a control plane for workers: software colleagues whose every action passes through a gateway you control (default-deny egress, injected credentials, budgets, approval gates, audit).
1
2
3
4
5
6
7
8
9
10
11
//! Credentials: stored (vault), acquired (connect), refreshed (providers,
//! registry) — and injected in transit by the gateway. Workers never see keys.

pub mod connect;
pub mod providers;
pub mod registry;
pub mod vault;

/// The providers whose credential lets a box call a model — the one
/// connection a deployment cannot work without.
pub const LLM_PROVIDERS: [&str; 2] = ["anthropic", "openai-codex"];