omamori 0.10.2

AI Agent's Omamori — protect your system from dangerous commands executed via AI CLI tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core command evaluation engine: hook pipeline, shim execution, and guards.
//!
//! Submodules:
//! - `hook`: Hook input parsing, command checking, protected file detection
//! - `shim`: PATH shim execution, command evaluation pipeline, hook integrity
//! - `exec`: `omamori exec` subcommand handler
//! - `guard`: AI environment guard for config-mutating operations

pub(crate) mod exec;
pub(crate) mod guard;
pub(crate) mod hook;
pub(crate) mod shim;