Home

Awesome

Agile Development tool for Slack.

Basically, "Standup meetings for Slack"

Slack Manager allows teams to monitor employees on a daily basis. You can start a meeting by inviting your bot to your current channel and just write "start meeting".

Advantages of Slack Manager from other services:

alt text

Create your Slack bot.

Copy the API token that Slack gives you. You'll need it in the next step.

Installation

Clone the repository by:

git clone https://github.com/anonrig/slack-manager

Install from NPM

npm install slack-manager --save

Create your settings file.

touch config/production.json

Mailer service uses nodemailer's transport methods. Therefore, for better understanding please read nodemailer's available transports .

For example for Gmail settings: change your settings file by:

{
    "token": "YOUR SLACK TOKEN HERE",
    "mailer": {
        "service": "Gmail",
        "email": "email@address.com",
        "pass": "mySuperFancyPassword"
    }
}

Configure your questions

Open default.json and add a questions field shown below.

slack-manager lets users to ask different questions to different channels. If you prefer a single question list then you will only need the default field of the questions object. If you want to ask different questions to different channels then you will need to add additional fields to the questions object. Fields of the questions object must be the names of the corresponding channels.

Note: If no questions that has the same name as the channel found then the default list will be asked.

"questions": {
    "default": [
        "What did you do yesterday?",
        "What are you going to do today?",
        "Did you encounter any problems?"
    ],
    "CHANNEL-NAME": [
        "How do you feel?"
    ],
    "ANOTHER-CHANNEL-NAME": [
        "Another question?",
        "Perhaps more?"
    ]
}

Usage

Install dependencies

npm install

Start your bot.

npm start

Commands

Tech

Slack-Manager uses a number of open source projects to work properly:

Development

Want to contribute? Great! Feel free to submit bugs, and open pull requests.

License

MIT