The trick is to add code to the trigger(s) that you want to control.
Context_Info() can be set to a hex value in your procedure and then read from the trigger. It is a sneaky way to pass a parameter to a trigger.
At the beginning of your trigger logic, add the following three lines
IF Context_Info() = 0x20220121 RETURN
Then in your procedure, just before you do your insert, update, or delete, add the following line
SET Context_Info 0x20220121
Note that the value 0x20220121 can be any hex value you choose. However, since it is global, I prefer to use a date for the numbers to avoid stepping on it with a later addition.
Also, initially, Context_Info() will return null until it has been set.
Remember to reset it after the insert, update, or delete
SET Context_Info 0x00000000