|
@@ -163,6 +163,7 @@ validate_component_paths() {
|
|
|
fi
|
|
fi
|
|
|
fi
|
|
fi
|
|
|
done <<< "$components"
|
|
done <<< "$components"
|
|
|
|
|
+ return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
suggest_fix() {
|
|
suggest_fix() {
|
|
@@ -287,6 +288,9 @@ check_dependency_exists() {
|
|
|
plugin)
|
|
plugin)
|
|
|
registry_category="plugins"
|
|
registry_category="plugins"
|
|
|
;;
|
|
;;
|
|
|
|
|
+ skill)
|
|
|
|
|
+ registry_category="skills"
|
|
|
|
|
+ ;;
|
|
|
context)
|
|
context)
|
|
|
registry_category="contexts"
|
|
registry_category="contexts"
|
|
|
;;
|
|
;;
|
|
@@ -380,7 +384,7 @@ validate_component_dependencies() {
|
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
local result
|
|
local result
|
|
|
- result=$(check_dependency_exists "$dep")
|
|
|
|
|
|
|
+ result=$(check_dependency_exists "$dep" || true)
|
|
|
|
|
|
|
|
case "$result" in
|
|
case "$result" in
|
|
|
found)
|
|
found)
|