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;
10mod types;
11
12pub use ralph_loop::*;
13pub use types::*;