icebox-gov 0.1.0

Runtime governance for autonomous offensive security — the single seam every human operator, REST client, and LLM agent must pass through before anything touches a target.
Documentation
1
2
3
4
5
6
7
8
9
//! Agent orchestration, Ollama client, and validation.

pub mod agent;
pub mod ollama;
pub mod orchestrator;
pub mod validator;

pub use orchestrator::{CampaignReport, Orchestrator, StaticPlanner};
pub use validator::{diff, run_validation, ValidationDiff, ValidationReport};