loregrep 0.6.0

Repository indexing library for AI coding assistants. Tree-sitter parsing, fast in-memory indexing, and tool APIs for LLM integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod python;
pub mod registry;
pub mod rust;
pub mod traits;
pub mod typescript;

pub use python::PythonAnalyzer;
pub use registry::{DefaultLanguageRegistry, LanguageAnalyzerRegistry, RegistryHandle};
pub use rust::RustAnalyzer;
pub use traits::LanguageAnalyzer;
pub use typescript::TypeScriptAnalyzer;