Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smhg/slack-scrumbot
A Slack bot that performs a scrum pre-standup checkin.
https://github.com/smhg/slack-scrumbot
Last synced: about 2 months ago
JSON representation
A Slack bot that performs a scrum pre-standup checkin.
- Host: GitHub
- URL: https://github.com/smhg/slack-scrumbot
- Owner: smhg
- License: mit
- Created: 2015-12-05T10:21:19.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T07:57:54.000Z (over 6 years ago)
- Last Synced: 2024-11-17T11:18:08.230Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 55.7 KB
- Stars: 7
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# slack-scrumbot
> A [Slack](https://www.slack.com/) bot that performs a scrum pre-standup checkin.## Installation
```bash
$ npm install slack-scrumbot
```## Usage
Add a bot in Slack's **Integrations** panel. Copy the token.
#### Start bot
```bash
$ SCRUMBOT_TOKEN=your_slack_token npm start
```
Invite the bot to a channel:
```
/invite botname
```#### Start a checkin
Write a message to the bot listing the users to do a checkin with:
```
@botname: checkin @username1 @username2 @username3
```
Or write a message to the channel to do a checkin with everyone:
```
@botname: checkin @channel
```#### Stop bot
```bash
$ npm stop
```## Development
```bash
$ DEBUG=slack-scrumbot* SLACK_LOG_LEVEL=debug SCRUMBOT_TOKEN=your_slack_token npm run watch
```