KeiSeiKit-1.0/_primitives/_rust/kei-sage/src/lib.rs
Parfii-bot 0be354a920 KeiSeiKit-public — clean state
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.
2026-05-01 12:09:03 +08:00

22 lines
477 B
Rust

//! kei-sage — SQLite knowledge-vault with FTS5 + typed edges + BFS + PageRank.
//!
//! Port of LBM internal/sage. Constructor Pattern: one concept per file.
pub mod atom_cli;
pub mod atom_index;
pub mod atom_parse;
pub mod atoms;
pub mod bfs;
pub mod edges;
pub mod facet_query;
pub mod import;
pub mod lineage;
pub mod pagerank;
pub mod rule_index;
pub mod schema;
pub mod search;
pub mod store;
pub mod types;
pub use store::Store;
pub use types::{Edge, Related, Unit};