hubot scriptを作ってみました
coffee scriptを
hubotディレクトリ/scripts/
の下に *.coffee
と保存をすれば勝手に読み込んでくれます
$ vim scripts/my.coffee
module.exports = (robot) ->
robot.hear /おはよう/i, (msg) ->
msg.send "Good Morning"
ちゃんと反応してくれます
robot.hearだと文字に反応します
hubot/scripting.md at master · github/hubot
を読むとよさそうです