fossil-mcp 0.1.2

Multi-language static analysis toolkit with MCP server. Detects dead code, code clones, and AI scaffolding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Dead code detection with entry point analysis and reachability.
//!
//! Provides:
//! - `Detector` — orchestrates entry point detection, reachability, and classification
//! - `EntryPointDetector` — identifies production and test entry points
//! - `ReachabilityAnalyzer` — BFS from entry points
//! - `DeadCodeClassifier` — classifies and scores dead code findings

pub mod classifier;
pub mod detector;
pub mod entry_points;
pub mod feature_flags;

pub use classifier::DeadCodeClassifier;
pub use detector::Detector;
pub use entry_points::EntryPointDetector;
pub use feature_flags::FeatureFlagDetector;