Create triggers with MySQL procedures

I wrote some SQL procedures, which can create triggers. The main goal was to create triggers for mysql schema, but it is not possible for the following limitation of current version MySQL and MariaDB:
Facepalm. I don’t know about this limitation before. But somebody maybe finds this procedures useful for replicating other tables/schemas. It is released as Open Source and repository is available on github. Installation is simple:
git clone https://github.com/lhost/mysql-replicate-by-triggers
cd mysql-replicate-by-triggers
make install
This will create procedures in repl schema. Then you can create triggers with the following command:
It is workaround for another limitation: you can’t create trigger in procedure.