define(['underscorish'], function (_) {define(['underscorish'], function (_) { robot.help("help", "list all available hackbot commands"); robot.respond(/help/i, function(msg) {
_.each(msg.robot.commands, function(command){
msg.send("\< "+ command.command +" \> - " + command.description)
});
}); robot.hear(/help/i, function(msg) {
_.each(msg.robot.commands, function(command){
msg.send("\< "+ command.command +" \> - " + command.description)
});
});
});