llman-core 0.0.77

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

pub mod env_safety;
pub mod fs_utils;
pub mod git_utils;
pub mod managed_block;
pub mod path_utils;
pub mod schema_utils;