Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lts-beratung/standup-boy
A simple module for creating daily standup texts :clock10:
https://github.com/lts-beratung/standup-boy
agile cli cli-app daily-standup-texts node-js node-module scrum-cli standup-meetings xo
Last synced: 1 day ago
JSON representation
A simple module for creating daily standup texts :clock10:
- Host: GitHub
- URL: https://github.com/lts-beratung/standup-boy
- Owner: lts-beratung
- License: mit
- Created: 2018-12-14T09:51:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T04:28:42.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T21:06:38.153Z (12 days ago)
- Topics: agile, cli, cli-app, daily-standup-texts, node-js, node-module, scrum-cli, standup-meetings, xo
- Language: JavaScript
- Homepage:
- Size: 358 KB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
![Standup boy: Daily standup from the terminal](cover.png)
[![install size](https://flat.badgen.net/packagephobia/install/standup-boy)](https://packagephobia.now.sh/result?p=standup-boy) [![Build Status](https://flat.badgen.net/travis/vikepic/standup-boy)](https://travis-ci.org/vikepic/standup-boy) [![XO code style](https://flat.badgen.net/xo/status/standup-boy)](https://github.com/xojs/xo)
`standup-boy` helps you create daily standup texts fast and easy.
It prompts you the usual stuff for a daily standup, then outputs a nicely-formatted, emoji-ready text for you to use in whatever platform you desire.
Assumes markdown formatting.## Install
```
$ npm install --global standup-boy
``````
$ standup-boy --help
Usage
standup-boy [options]Options
--log [--from date] Get a log of the messages sent. Specify the date from wich to retrieve te messages on with --from date
--path -p Get the path to the configuration file (read-only).
--project projectName Specify the name of the project you want to send the message to.Examples
$ standup-boy
? What did I accomplish yesterday? Something!
? What will I do today? Something Else!
? What obstacles are impeding my progress? Any info I need or want to share? Not much...:triumph: **\`What did I accomplish yesterday\`**
Something!
:scream_cat: **\`What will I do today\`**
Something Else!
:cry: **\`What obstacles are impeding my progress? Any info I need or want to share?\`**
Not much...
Copied the result to the clipboard!$ standup-boy --log --from "Mon Oct 19 2019"
Mon Oct 21 2019 21:21:09 GMT+0200 (Central European Summer Time)
[
"Did some cool stuff!",
"Work on some awesome stuff!",
"The coffee machine has run out of coffee!"
]
```## Configuration
You can obtain the path to the configuration file by simply running `standup-boy --path` (read-only). Edit the resulting file to override the defaults.
Mind that this configuration only alters the final text that gets copied into your clipboard.
### Templates
One can configure `standup-boy` to replace the default templates for the resulting standup text.
An example of an alternative configuration, written in JSON format:
```json
{
"yesterday": "Hey, you! What did you do yesterday?","today": "Oh really? And what are you gonna do today?",
"obstacles": "Did you find any obstacles along the way, tho?"
}
```### Replace words
`standup-boy` can also be configured to search and replace certain keywords for, for example, automatically link to JIRA tasks. RegExp syntax is supported.
If you want to introduce the matched string into the replaced value, you can add the `%VAL%` keyword anywhere in your resulting text to interpolate the matched variable into it.
An example of an alternative configuration, written in JSON format:
```json
{
"replace" :
{
"JIRA-[0-9]*": "[%VAL%](https://your-jira.url/%VAL%)"
}
}
```This results in this text:
```
I completed JIRA-220 today!
```Being replaced by:
```
I completed [JIRA-220](https://your-jira.url/JIRA-220) today!
```If translated to markdown, a nice link appears in place of the old, lame, jira task name.
### Slack / Mattermost integration
This module can also be configured to automatically send the resulting message to your desired slack / mattermost channel once you've answered all the questions.
If your configuration is valid, a prompt should appear once your message has been written:
```
? Slack / Mattermost integration details found. Do you want to send the message? (Y/n)
```On confirmation, the message will be sent to the destination specified by your configuration.
An example of a valid configuration, written in JSON format:
```json
{
"username" : "vikepic",
"channel" : "daily-standup",
"url" : "https://your-slack-url"
}
```Alternatively, you can have more than one project on your configuration file:
```json
{
"projects" :
{
"project-turnip":
{
"username" : "vikepic",
"channel" : "daily-standup-turnip",
"url" : "https://your-slack-url"
},
"project-avocado":
{
"username" : "vikepic",
"channel" : "daily-standup-avocado",
"url" : "https://your-slack-url"
}
}
}
```If that is the case, you can specify with the `--project` flag which one will you send the message to. If not specified, the program will prompt to you which of the existing projects you want to use to send your message:
```
? Multiple projects found. Please, select the project you want to send the results to. (Use arrow keys)
❯ project-turnip
project-avocado
```Once selected, `standup-boy` will send the message to the project of your choice.
## License
MIT © [lts-beratung](https://www.lts-beratung.de/en.html)