MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / run_manifest

Method run_manifest

atomic-cli/src/commands/agent/enable.rs:574–602  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

572 /// hooks. The hook definitions live in the integration repo, so this path
573 /// never needs the per-agent definitions baked into this binary.
574 fn run_manifest(&self, manifest: &std::path::Path) -> CliResult<()> {
575 use atomic_agent::hooks::manifest::install_from_manifest;
576
577 match install_from_manifest(manifest) {
578 Ok(outcome) => {
579 print_success(&format!(
580 "Installed hooks from {} → {}",
581 manifest.display(),
582 outcome.target.display(),
583 ));
584 let mut summary = format!("{} hook command(s) registered", outcome.added);
585 if outcome.removed > 0 {
586 summary.push_str(&format!(", {} stale entr(y/ies) replaced", outcome.removed));
587 }
588 println!(" {summary}");
589 println!();
590 println!("Each agent turn in a project with .atomic/ will be recorded");
591 println!("as an Atomic change with full AI provenance.");
592 }
593 Err(e) => {
594 print_error(&format!(
595 "Failed to install hooks from manifest {}: {}",
596 manifest.display(),
597 e,
598 ));
599 }
600 }
601 Ok(())
602 }
603
604 /// Install hooks globally to the agent's user-level settings.
605 ///

Callers 1

runMethod · 0.45

Calls 3

install_from_manifestFunction · 0.85
print_successFunction · 0.85
print_errorFunction · 0.85

Tested by

no test coverage detected