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).
//! Print the location of an imp's Git-backed world knowledge repository.
//! Everything after discovery uses the normal Git CLI.
usecrate::util::BErr;pubfnrun(imp:&str)->Result<(), BErr>{crate::imp::require_imp(imp)?;println!("{}",crate::imp::knowledge::repo_path(imp)?.display());Ok(())}