erichartline / tiger-slackbot

Node.js Slackbot to help with technical interviews
0 stars 0 forks source link

Create and build help command in index.js #4

Closed asteed21 closed 7 years ago

asteed21 commented 7 years ago

Need to configure on Express server, to be populated later with actual content.

asteed21 commented 7 years ago

Some details per the slack documentation:

https://api.slack.com/slash-commands

asteed21 commented 7 years ago

Looks like /help is a reserved word, so will shift nomenclature for now.

asteed21 commented 7 years ago

Some general info on slack slash commands:

https://api.slack.com/tutorials/slash-commands-style-guide

erichartline commented 7 years ago

Good catch on /help. It looks like we need to set up a general command for our bot so we can then add in stuff like help, daily, etc.

I guess that could tie in to a new name for our bot (currently Interview Bot). I set up the default command as interview but that can easily be changed.

Anyone have ideas on a new bot name and/or default command?

ermarie commented 7 years ago

Here's a little bit on the drop down menus I was telling y'all about: https://api.slack.com/docs/message-menus

ermarie commented 7 years ago

Buttons are also an option: https://api.slack.com/docs/message-buttons Though the drop down seems to be the preferred method from what I've read

erichartline commented 7 years ago

/tiger-help command with interactive messaging has been implemented.