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.
22 lines
477 B
Rust
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};
|