safe_chains/engine/mod.rs
1//! The behavioral capability model engine (`docs/design/behavioral-taxonomy-v1.4.md`).
2//!
3//! `facet` is the capability vocabulary (v1.4 §2), `level` the predicate language
4//! (§4.1), `authoring` compiles the level TOML, `resolve` turns a command into a
5//! profile, and `bridge` runs the engine AUTHORITATIVELY: `leaf_verdict` uses
6//! `engine_verdict(tokens).unwrap_or(legacy)`, so for every command the engine can
7//! resolve, its verdict wins — the legacy classifier is only the fallback. See the
8//! `behavioral-taxonomy-engine` annex.
9
10pub mod archetype;
11pub mod authoring;
12pub mod bridge;
13pub mod facet;
14pub mod level;
15pub mod resolve;
16
17#[cfg(test)]
18mod testgen;