Skip to main content

codetether_agent/ralph/
mod.rs

1//! Ralph - Autonomous PRD-driven agent loop
2//!
3//! Implementation of Geoffrey Huntley's ralph pattern:
4//! `while :; do cat PROMPT.md | llm; done`
5//!
6//! Ralph iterates through PRD user stories, running quality gates after each,
7//! and uses RLM to compress progress when context gets too large.
8
9mod ralph_loop;
10pub mod state_store;
11pub mod store_http;
12pub mod store_memory;
13mod types;
14
15pub use ralph_loop::*;
16pub use state_store::{RalphRunState, RalphRunSummary, RalphStateStore, StoryResultEntry};
17pub use types::*;