pmat 3.26.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(coverage_nightly, coverage(off))]
//! Analysis command handlers using uniform contracts
//!
//! This module contains handlers that have been migrated to use the uniform contracts system
//! as part of Sprint 1 of the contract migration initiative.

pub mod code_quality;
pub mod complexity;
pub mod dependencies;
pub mod duplication;
pub mod ml_analysis;
pub mod technical_debt;

// Re-export the main handlers
pub use complexity::handle_complexity;