Kaam is a CLI tool to handle your To-Do lists right through your terminal.
With Kaam you can:
- see the list of To-Do's
- Add and mark complete tasks faster with simple commands
| Command | Aliases | Description |
|---|---|---|
add |
a |
Add new task(s) to today's list |
list |
l |
List tasks from today's file (or prompt to select one) |
select |
s |
Select a file from ./db/ and list its tasks |
complete |
c |
Mark task(s) as complete by number |
exit |
— | Exit the program |
# Add tasks
kaam add "Buy groceries" "Finish report"
# List today's tasks
kaam list
# Select and list tasks from a specific file
kaam select
# Mark tasks 1 and 3 as complete
kaam complete 1 3
# Short aliases also work
kaam a "Write docs"
kaam l
kaam s
kaam c 2