ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
//! Template syntax validation.
//!
//! This module re-exports imperative validation code from the io boundary module.

pub fn validate_syntax(content: &str) -> Vec<super::template_types::ValidationError> {
    crate::prompts::io::validate_syntax(content)
}