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