heal-cli 0.3.1

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
16
17
18
//! HEAL core: shared types, config, event-log rotation, and the
//! persisted Calibration schema.

pub mod accepted;
pub mod calibration;
pub mod config;
pub mod error;
pub mod finding;
pub mod findings_cache;
pub mod fs;
pub mod hash;
pub mod monorepo;
pub mod paths;
pub mod severity;
pub mod term;

pub use error::{Error, Result};
pub use paths::HealPaths;