llman_core/lib.rs
1//! llman-core: the foundation utility layer of llman.
2//!
3//! Members: `fs_utils` / `path_utils` / `managed_block` / `env_safety` /
4//! `git_utils` / `schema_utils`. These modules MUST NOT import llman feature
5//! modules (sdd/skills/tool/x) — the direction is locked by
6//! `tests/import_direction_tests.rs` on the facade side.
7//!
8//! The facade crate (`llman`) re-exports every member at its historical
9//! path (`llman::fs_utils`, `crate::fs_utils`, …), so importing code does
10//! not drift when this crate was split out (change src-cleanup-pre-split T11).
11
12pub mod env_safety;
13pub mod fs_utils;
14pub mod git_utils;
15pub mod managed_block;
16pub mod path_utils;
17pub mod schema_utils;