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