https://github.com/markmur/standup-cli
CLI app to keep track of what you've worked on
https://github.com/markmur/standup-cli
cli task todo
Last synced: 10 months ago
JSON representation
CLI app to keep track of what you've worked on
- Host: GitHub
- URL: https://github.com/markmur/standup-cli
- Owner: markmur
- Created: 2022-02-14T11:02:32.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-28T15:14:44.000Z (over 4 years ago)
- Last Synced: 2025-02-28T23:47:08.232Z (over 1 year ago)
- Topics: cli, task, todo
- Language: TypeScript
- Homepage:
- Size: 423 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# standup-cli
Manage standup entries from your terminal.

## Install
```bash
$ npm install --global standup-cli
```
## CLI
```
Usage
$ standup
Commands
list List standup tasks for today (default)
today Run "list" command (alias)
yesterday List standup stasks for yesterday
add Add a task for today
remove Remove task from today
clear Clear all tasks for today
Examples
$ standup
$ standup add "New task for today"
$ standup add "New feature" --pr "https://github.com/markmur/standup-cli/pulls/8"
$ standup list
$ standup today
$ standup yesterday
$ standup remove 1
$ standup clear
Flags
--noClear, -n Do not clear the console
--pr Add link to Github pull request
```