Missing keywords
By running robot --dryrun
on the files in the projects a set of issues has been identified.
Attached the stderr and stdout of the execution of the script below.
str=Keywords.robot;
for i in */*/*.robot ; do
[[ "$i" != *"$str"* ]] && \
(echo "++++ Dryrun $i" && \
robot --dryrun --output NONE --report NONE --log NONE $i || \
echo "++++ Issues in file $i");
done