Install hooks from an integration-supplied manifest file. The manifest names its own target settings file and the hook commands to register; this merges them in idempotently, preserving any non-Atomic hooks. The hook definitions live in the integration repo, so this path never needs the per-agent definitions baked into this binary.
(&self, manifest: &std::path::Path)
| 277 | /// hooks. The hook definitions live in the integration repo, so this path |
| 278 | /// never needs the per-agent definitions baked into this binary. |
| 279 | fn run_manifest(&self, manifest: &std::path::Path) -> CliResult<()> { |
| 280 | use atomic_agent::hooks::manifest::install_from_manifest; |
| 281 | |
| 282 | match install_from_manifest(manifest) { |
| 283 | Ok(outcome) => { |
| 284 | print_success(&format!( |
| 285 | "Installed hooks from {} → {}", |
| 286 | manifest.display(), |
| 287 | outcome.target.display(), |
| 288 | )); |
| 289 | let mut summary = format!("{} hook command(s) registered", outcome.added); |
| 290 | if outcome.removed > 0 { |
| 291 | summary.push_str(&format!(", {} stale entr(y/ies) replaced", outcome.removed)); |
| 292 | } |
| 293 | println!(" {summary}"); |
| 294 | println!(); |
| 295 | println!("Each agent turn in a project with .atomic/ will be recorded"); |
| 296 | println!("as an Atomic change with full AI provenance."); |
| 297 | } |
| 298 | Err(e) => { |
| 299 | print_error(&format!( |
| 300 | "Failed to install hooks from manifest {}: {}", |
| 301 | manifest.display(), |
| 302 | e, |
| 303 | )); |
| 304 | } |
| 305 | } |
| 306 | Ok(()) |
| 307 | } |
| 308 | |
| 309 | /// Install hooks globally to the agent's user-level settings. |
| 310 | /// |
no test coverage detected