heartbeat-rs 0.3.3

Stop hook for autonomous Claude Code agent loops — drain a message inbox across turns without a persistent process
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! heartbeat-rs: Stop hook implementation for autonomous Claude Code agent loops.
//!
//! This library provides the core primitives used by the `heartbeat-stop` binary.
//! Expose them here for testing and potential reuse.

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

pub mod hook;
pub mod in_flight;
pub mod inbox;
pub mod recover;