Looks like Supertool is really popular tool with growing user scripts amount.
Personally me have several specific for me only checker-scripts which checks different things in my DB. For example I am going develop one additional checker which will check ukrainian names according to some official names’ lists.
The idea is run all such custom checkers “in one click” periodically, say every month.
If the Supertool author and other Gramps users think that this feature makes sense, it would be great to have such ability.
Some update if anybody needs the same as me.
I’ve created such simple checker.sh script
#!/bin/bash
# This script allows package running of different custom Gramps checkers
# which are missing in the "Data Verify tool" addon.
# Get the current date and time
now=$(date +"%Y-%m-%d_%H-%M-%S")
echo "Run checker to verify Ukrainian first names"
gramps -O "Main Tree" -a tool -p name=SuperTool,script=scripts/checker_ua_name.script > "reports/checker_ua_name_${now}.log" 2>&1
echo "Run checker to verify a person Caste attribute"
gramps -O "Main Tree" -a tool -p name=SuperTool,script=scripts/checker_caste.script > "reports/checker_caste_${now}.log" 2>&1
echo "Run checker to verify twins attributes"
gramps -O "Main Tree" -a tool -p name=SuperTool,script=scripts/checker_twins.script > "reports/checker_twins_${now}.log" 2>&1