Skip to main content

humanize_cli_core/
lib.rs

1//! Humanize Core Library
2//!
3//! This library provides the core functionality for the Humanize Claude Code plugin,
4//! including state management, file operations, git interactions, and hook validation.
5
6pub mod state;
7pub mod fs;
8pub mod git;
9pub mod hooks;
10pub mod constants;
11pub mod codex;
12pub mod template;
13
14pub use state::State;
15pub use constants::*;