fix: accidental regression on enabled_skills being empty = all

This commit is contained in:
2026-06-04 16:12:32 -06:00
parent 8d6e9bef32
commit b997e9493c
2 changed files with 4 additions and 8 deletions
+3 -1
View File
@@ -259,7 +259,9 @@ impl GraphValidator {
continue;
}
if let Err(e) = paths::validate_skill_name(name) {
result.error(ValidationError::new(format!(
result.error(ValidationError::with_node(
node_id,
format!(
"llm node 'enabled_skills' contains an invalid skill name: '{name}': {e}"
)));
continue;