Skip to content

Instantly share code, notes, and snippets.

@glucero
Last active December 16, 2015 01:49
Show Gist options
  • Save glucero/5358218 to your computer and use it in GitHub Desktop.
Save glucero/5358218 to your computer and use it in GitHub Desktop.
Example Smith Plugin
# Description
# Example Plugin
#
# Commands
# smith example
# smith repeat <words>
# smith roll die
module.exports = (robot) ->
robot.respond /example$/i, (msg) ->
msg.send "This is an example!"
robot.respond /repeat\s(.+)$/i, (msg) ->
msg.send "You said '#{msg.match[1]}'!"
robot.respond /roll die/i, (msg) ->
msg.send "You rolled a #{(Math.floor(Math.random() * 6) + 1}!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment