project-examer 0.1.0

A fast system analysis tool for scanning codebases and building intelligent relationships between files using AST parsing and LLM analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod config;
pub mod file_discovery;
pub mod simple_parser;
pub mod dependency_graph;
pub mod llm;
pub mod analyzer;
pub mod reporter;

pub use config::Config;
pub use file_discovery::FileDiscovery;
pub use simple_parser::SimpleParser;
pub use dependency_graph::DependencyGraph;
pub use llm::LLMClient;
pub use analyzer::Analyzer;
pub use reporter::Reporter;

pub type Result<T> = anyhow::Result<T>;