heal-cli 0.2.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
//! `MetricsSnapshot` schema.

pub mod calibration;
pub mod check_cache;
pub mod compaction;
pub mod config;
pub mod error;
pub mod eventlog;
pub mod finding;
pub mod fs;
pub mod hash;
pub mod paths;
pub mod severity;
pub mod snapshot;

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