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>