Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
17 lines
594 B
Rust
17 lines
594 B
Rust
//! kei-refactor-engine — library surface.
|
|
//!
|
|
//! Consumes `kei-conflict-scan` JSON; produces a structured refactor plan
|
|
//! (markdown) and, optionally, an auto-resolve review markdown
|
|
//! (NOT a unified diff — see patch.rs header, v0.14.1 retraction).
|
|
//!
|
|
//! Zero-conflict guarantee: any conflict whose `auto_resolvable = false`
|
|
//! is included in the plan under "Requires human decision" and EXCLUDED
|
|
//! from the auto-resolve markdown.
|
|
|
|
pub mod input;
|
|
pub mod plan;
|
|
pub mod patch;
|
|
pub mod render;
|
|
|
|
pub use input::{read_conflicts, Conflict};
|
|
pub use plan::{Plan, PlanItem, Resolution};
|