fossil-mcp 0.1.8

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
//! Rule engine for Fossil security analysis.
//!
//! Provides YAML-based rule loading, validation, and a built-in rule database.

pub mod database;
pub mod loader;
pub mod semgrep_converter;

pub use database::RuleDatabase;
pub use loader::RuleLoader;
pub use semgrep_converter::SemgrepConverter;