rslph 0.1.1

CLI tool for LLM-powered autonomous task execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Build loop module for autonomous task execution.
//!
//! Provides the core build loop that iterates through a progress file,
//! spawning Claude subprocesses to complete tasks one at a time.

mod command;
mod iteration;
mod state;
pub mod tokens;

pub use command::run_build_command;
pub use state::{BuildContext, BuildState, DoneReason, IterationResult};
pub use tokens::{format_tokens, IterationTokens, TokenUsage};