- kei-conflict-scan: rules/hooks/blocks/orphans/CP detection (6 tests) - kei-refactor-engine: plan-mode + advisory patch format, zero-conflict guarantee (5 tests) - kei-graph-check: wikilinks/handoffs/block-refs validator (4 tests) - kei-store: trait + 5 backends (filesystem/github/forgejo/gitea prod, s3 stub) (8 tests) 1916 LOC Rust total; all files <200 LOC; 23/23 tests pass.
10 lines
348 B
Rust
10 lines
348 B
Rust
//! kei-graph-check — post-refactor reference-integrity gate.
|
|
//!
|
|
//! Inputs: a directory root + an optional patch file (advisory only — we
|
|
//! detect file deletions/renames declared in the patch header and warn).
|
|
//! Output: list of broken references with file:line.
|
|
|
|
pub mod graph;
|
|
pub mod patch_advisory;
|
|
|
|
pub use graph::{BrokenRef, Graph};
|