从其他命令调用 hubot 帮助

Calling hubot help from other command

我正在尝试为 hubot 的未知命令调用 hubot 帮助。如何从 hubot test 等其他命令调用 hubot help。因为我正在使用来自外部脚本文件的 hubot 帮助。我无法在其中添加 robot.on 。我该怎么做?

我找不到确切的解决方案。但是以下使帮助命令起作用的解决方法

helpCommands = robot.helpCommands() + '';
test = helpCommands.split(',');
for j in test
    msg.send "#{j}"