Makes writing hubot scripts as easy as
{
"match": "Hello",
"description": "hello - finish hello world!",
"listener": "hear",
"response": [
"World!"
]
}
Install
npm install --save hubot-response
Register
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.
HUBOT_RESPONSE_GLOB
- Glob
of where to look for responses. Defaults to responses/*.*
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 ofRegExp
that the robot is listening for.description
- Entry for hubot commands. Use this to display withhubot-help
. See Commands for formatting.listener
- Eitherhear
orrespond
.response
- Can be aString
,Function
that is called, or anArray
where an index is randomly selected.
Clone this locally and run
npm install
npm start
This 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.
Since response files are just an object, we can extend however we want. You can see an example of this in the extension example.