brainwires-cognition 0.8.0

Unified intelligence layer — knowledge graphs, adaptive prompting, RAG, spectral math, and code analysis for the Brainwires Agent Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Git repository operations for semantic search over commit history
//!
//! Provides functionality to walk git repositories, extract commit information,
//! and chunk commits into searchable units for vector indexing.

/// Commit chunking for converting git commits into searchable text chunks
pub mod chunker;
/// Git repository walking and commit extraction
pub mod walker;

pub use chunker::CommitChunker;
pub use walker::GitWalker;