Add template variable injection for --include-prompt

Supports {{var}} syntax for variable substitution in included prompt files.

Currently supported variables:
- {{today}}: Current date in ISO format (YYYY-MM-DD)

Unknown variables trigger a warning and are left unchanged.

- Add template.rs module with process_template() function
- Integrate template processing into read_include_prompt()
- Add comprehensive tests for template processing
This commit is contained in:
Dhanji R. Prasanna
2026-01-20 21:34:15 +05:30
parent 9a0a2a2726
commit 1a1f149206
3 changed files with 166 additions and 1 deletions

View File

@@ -5,6 +5,8 @@
use std::path::Path;
use tracing::error;
use crate::template::process_template;
/// Read AGENTS.md configuration from the workspace directory.
/// Returns formatted content with emoji prefix, or None if not found.
pub fn read_agents_config(workspace_dir: &Path) -> Option<String> {
@@ -97,7 +99,10 @@ pub fn read_include_prompt(path: Option<&std::path::Path>) -> Option<String> {
}
match std::fs::read_to_string(path) {
Ok(content) => Some(format!("📎 Included Prompt (from {}):\n{}", path.display(), content)),
Ok(content) => {
let processed = process_template(&content);
Some(format!("📎 Included Prompt (from {}):\n{}", path.display(), processed))
}
Err(e) => {
tracing::error!("Failed to read include prompt file {}: {}", path.display(), e);
None
@@ -380,4 +385,23 @@ mod tests {
// Cleanup
let _ = std::fs::remove_file(&temp_file);
}
#[test]
fn test_read_include_prompt_with_template_variables() {
// Create a temp file with template variables
let temp_dir = std::env::temp_dir();
let temp_file = temp_dir.join("test_include_prompt_template.md");
std::fs::write(&temp_file, "Today is {{today}} and {{unknown}} stays").unwrap();
let result = read_include_prompt(Some(&temp_file));
assert!(result.is_some());
let content = result.unwrap();
// {{today}} should be replaced with a date, {{unknown}} should remain
assert!(!content.contains("{{today}}"));
assert!(content.contains("{{unknown}}"));
// Cleanup
let _ = std::fs::remove_file(&temp_file);
}
}