ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Agent configuration types and TOML parsing.
//!
//! This module provides types for loading and managing agent configurations
//! from TOML files, including support for global and per-project configs.

#[path = "config/file.rs"]
mod file;
#[path = "config/types.rs"]
mod types;

pub use file::{AgentConfigError, AgentsConfigFile, ConfigInitResult};
pub use types::{AgentConfig, AgentConfigBuilder, ConfigSource, DEFAULT_AGENTS_TOML};