heal-cli 0.1.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
//! HEAL core: shared types, config, event-log rotation, and state management.

pub mod config;
pub mod error;
pub mod eventlog;
pub mod paths;
pub mod snapshot;
pub mod state;

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