A fast, minimal todo manager for the terminal built with Go.
go install github.com/athulrajhere/todocli@latestMake sure $HOME/go/bin is in your PATH:
echo 'export PATH=$PATH:$HOME/go/bin' >> ~/.zshrc && source ~/.zshrc# Add a todo
todocli add "Buy groceries"
# List all todos
todocli list
# Mark as complete (interactive)
todocli complete
# Delete a todo (interactive)
todocli delete