[Stand-Up Aide] A lightweight 100% offline CLI App to help with the management of todos & tasks within the terminal, with the added functionality to output a stand-up style report.
It's very much in an early beta testing stage, so please raise an issue if you spot anything or have a feature request.
Under the hood this uses SQLite 3
for storage, (included in most MacOS
distributions). If your system doesn't have it installed you'll need to install
a recent version of it (this was developed on SQLite v3.28.0
).
| Command | Description |
| --------- | ------------------------------ |
| add
| Adds a new task |
| edit
| Edit a task |
| list
| Lists all tasks |
| remove
| Deletes a task |
| close
| Marks a task as closed |
| status
| Change the status of a task |
| standup
| Prints out the stand-up output |
There are two options for overwriting default settings for suaide: (in order of precedence)
SUAIDE_
~/.suaide/settings.yml
| Setting | Description | Default |
| --------------- | ----------------------------------------------------------------------- | ----------- |
| db_url
| The path to the suaide.sqlite
file used as the database for the tasks | ~/.suaide
|
| ticket_prefix
| A prefix that will be automatically applied to any ticket id if set | ""
|
yml
db_url: ~/code/todos
ticket_prefix: TASK-
SUAIDE_DB_URL="~/code/todos"