digital-roster 0.3.1

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
//! Print the location of a worker's Git-backed world knowledge repository.
//! Everything after discovery uses the normal Git CLI.

use crate::util::BErr;

pub fn run(worker: &str) -> Result<(), BErr> {
    crate::worker::require_worker(worker)?;
    println!("{}", crate::worker::knowledge::repo_path(worker)?.display());
    Ok(())
}