heal-cli 0.4.0

Hook-driven Evaluation & Autonomous Loop — code-health harness CLI for AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Test-feature `heal metrics` sections, gated behind `[features.test]`.

mod coverage;
mod hotspot;
mod skip_ratio;

use super::section::MetricSection;

pub(super) fn sections() -> Vec<Box<dyn MetricSection>> {
    vec![
        Box::new(coverage::CoveragePctSection),
        Box::new(skip_ratio::SkipRatioSection),
        Box::new(hotspot::TestHotspotSection),
    ]
}