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.
16 lines
443 B
Rust
16 lines
443 B
Rust
//! kei-changelog — library surface.
|
|
//!
|
|
//! Public modules, re-exported for the binary and integration tests.
|
|
//! Constructor Pattern: one file = one concern; keep this root < 30 LOC.
|
|
|
|
pub mod commit;
|
|
pub mod group;
|
|
pub mod parse;
|
|
pub mod render;
|
|
pub mod walk;
|
|
|
|
pub use commit::{Commit, CommitKind};
|
|
pub use group::Grouped;
|
|
pub use parse::parse_subject;
|
|
pub use render::{render_markdown, RenderOpts};
|
|
pub use walk::{walk_range, WalkRange};
|