hubot-response v1.2.0
Hubot Response
Makes writing hubot scripts as easy as
{
"match": "Hello",
"description": "hello - finish hello world!",
"listener": "hear",
"response": [
"World!"
]
}TL;DR
Install
npm install --save hubot-responseRegister
In external-scripts.json add
"hubot-response"Make your own responses
Create a responses directory. Create mysweetresponse.json and add
{
"match": "Hello",
"description": "hello - finish hello world!",
"listener": "hear",
"response": [
"World!"
]
}Now when hubot hears Hello in the room, it replies back with World!. Run npm start to try it out!
Checkout more examples.
Environment Variables
HUBOT_RESPONSE_GLOB - Glob of where to look for responses. Defaults to responses/*.*
How to use
Hubot Response can read anything that can be reqire-ed as an object. So json, js, coffee files all work.
The file should export either an object for one response, or an array for multiple responses.
Each response object should consist of:
match- Either a string that is turned into a regex, or an actual instance ofRegExpthat the robot is listening for.description- Entry for hubot commands. Use this to display withhubot-help. See Commands for formatting.listener- Eitherhearorrespond.response- Can be aString,Functionthat is called, or anArraywhere an index is randomly selected.
Try before you buy
Clone this locally and run
npm install
npm startThis will run a local hubot-shell. You can interact with the examples.
Protip: Run hubot help for a list of available commands.
Don't we already have a way of doing this?
Yes, and the hubot-scripts org is awesome! But for simple hear and respond modules (animated gifs mostly) customization sucks...
Say you want to use this awesome business-cat script, but really want to add an image.
You have 3 options:
- Copy and paste the script into your hubot scripts folder and modify it there.
- Fork it and modify it. Then deal with merge conflicts.
- Submit a pull request, but maybe no one else want's your stupid cat picture?
None of these are really clean.
Solution
Since response files are just an object, we can extend however we want. You can see an example of this in the extension example.