A simple CLI based task tracker for tracking what you need to do, what you have done, and what you are currently working on.
- Add, Update, and Delete tasks
- Mark a task as in progress or done
- List all tasks
- List all tasks that are done
- List all tasks that are not done
- List all tasks that are in progress
go install github.com/TheRedScreen64/task-tracker@latest
You can download pre-built binaries for linux and windows from the latest release.
-
Make sure you have Go 1.22.6 or later installed
-
Clone the project
git clone https://github.com/TheRedScreen64/task-tracker.git
cd task-tracker
- Build the project
go build -o "bin/"
- Run the CLI
# Linux
./bin/task-tracker --help
# Windows
./bin/task-tracker.exe --help
For a list of all available commands
task-tracker --help
task-tracker add "Buy groceries"
task-tracker update 1 "Cook dinner"
task-tracker delete 1
task-tracker mark-in-progress 1
task-tracker mark-done 1
task-tracker list
task-tracker list todo
task-tracker list in-progress
task-tracker list done