impyard 0.1.0

Rent the intelligence, own the governance — a control plane for imps: 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
17
//! The CLI surface of the `impyard` 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, imp, channel).

pub mod channel;
pub mod connections;
pub mod create;
pub mod gates;
pub mod imp;
pub mod init;
pub mod knowledge;
pub mod memory;
pub mod runs;
pub mod server;
pub mod task;
pub mod vault;