codetether-agent 4.0.0

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Ralph - Autonomous PRD-driven agent loop
//!
//! Implementation of Geoffrey Huntley's ralph pattern:
//! `while :; do cat PROMPT.md | llm; done`
//!
//! Ralph iterates through PRD user stories, running quality gates after each,
//! and uses RLM to compress progress when context gets too large.

mod ralph_loop;
pub mod state_store;
pub mod store_http;
pub mod store_memory;
mod types;

pub use ralph_loop::*;
pub use state_store::{RalphRunState, RalphRunSummary, RalphStateStore, StoryResultEntry};
pub use types::*;