heartbeat-rs 0.5.3

Heartbeat pattern for persistent AI CLI sessions — stop hook (heartbeat-stop) and PTY launcher (heartbeat-launch)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! heartbeat-rs: Stop hook and PTY launcher for autonomous Claude Code agent loops.
//!
//! This library provides the core primitives used by the `heartbeat-stop` stop hook
//! binary, and the PTY spawn layer used by the `heartbeat-launch` binary (feature-gated
//! behind `--features launch`).

pub mod error;
pub use error::{HeartbeatError, Result};

pub mod hook;
pub mod in_flight;
pub mod inbox;
#[cfg(feature = "launch")]
pub mod pty;
pub mod recover;