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
//! Test-feature observer family. Gated behind `[features.test]`. Reads
//! externally-generated lcov files (`cargo llvm-cov`, `pytest-cov`,
//! `nyc`, `scoverage`) and surfaces low-coverage hotspots; the
//! `is_test_file` flag-tagging plumbing also lives here so the doc /
//! code observer families stay test-oblivious.
//!
//! HEAL never executes tests. Generation of the lcov file is the
//! user's contract — the binary is a read-only consumer.

pub mod coverage;
pub mod hotspot;
pub mod lcov;
pub mod skip_ratio;