A feature-rich command line todo manager written in Go that stores tasks in Excel format (.xlsx).
- β Add, list, complete, and delete tasks
- π Due dates and priority levels
- π Excel file storage (easy to view/edit in spreadsheet apps)
- π Filter by category/priority
- π₯οΈ Colorful terminal output
- π¦ Single binary with no dependencies
# Clone the repository
git clone https://github.com/yourusername/todo-cli.git
cd todo-cli
# Build and install
go build -o todo cmd/todo/main.go
sudo mv todo /usr/local/bin/./todo add "Buy milk" -c shopping -p 2 -d 2023-12-31./todo list./todo complete <task-id>./todo delete <task-id>