Hi
First you need to add some plugin-like functionality to your theme
Next you have to add hook for static:app.load
You have to require templates.js
var templates = module.parent.require('templates.js');
And last thing you have to do inside of static:app.load hook
templates.registerHelper('superCoolHelper', function(data) {
// here your code
});