ralph-agent-loop 0.3.1

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
//! `ralph prompt ...` CLI facade.
//!
//! Responsibilities:
//! - Re-export clap argument types for prompt commands.
//! - Expose the prompt command handler while keeping parsing and routing separate.
//!
//! Not handled here:
//! - Prompt construction logic (see `crate::commands::prompt`).
//! - Queue persistence or runner execution.
//!
//! Invariants/assumptions:
//! - CLI parsing stays isolated from command implementation details.

mod args;
mod handle;

pub use args::{
    PromptArgs, PromptCommand, PromptDiffArgs, PromptExportArgs, PromptScanArgs, PromptShowArgs,
    PromptSyncArgs, PromptTaskBuilderArgs, PromptWorkerArgs, parse_phase,
};
pub use handle::handle_prompt;