digital-roster 0.3.0

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
12
13
14
15
16
//! The CLI surface of the `roster` binary — thin typed handlers only: parse
//! arguments, call a functional block, print. The clap grammar lives in
//! main.rs; the machinery lives in the blocks (gateway, credential, action,
//! work, run, worker, channel).

pub mod approvals;
pub mod channel;
pub mod connections;
pub mod create;
pub mod init;
pub mod knowledge;
pub mod memory;
pub mod runs;
pub mod server;
pub mod task;
pub mod worker;