I am giving hubot a go to be integrated with slack to act as a helpdesk.
The script (coffeescript) so far looks out for keywords, if the keywords don't exist then I need the hubot to return something like 'Sorry I can't find what you are looking for'.
Below is an example of the keyword query;
module.exports = (robot) ->
robot.hear /ansible/i, (res) ->
res.send "Hi, for all ansible related querys, please go to
www.github.com/ansible/ansiblehelp"
So for example is ansible is not in the question, the hubot needs to reply with 'Sorry I can't find what you are looking for'.
Is this possible?
Thanks