Taskwarrior - Command line Task Management taskwarrior.org https://taskwarrior.org
Find a file
Dustin J. Mitchell 1c5e9b009b Add Replica::get_working_set_index and use it
This is probably ridiculously inefficient, as it will load the working
set for each and every task listed.  Optimize later!
2020-11-24 12:05:30 -05:00
cli Add Replica::get_working_set_index and use it 2020-11-24 12:05:30 -05:00
docs move docs back to top level 2020-11-23 16:07:38 -05:00
sync-server reorganize into separate crates 2020-11-23 14:27:47 -05:00
taskchampion Add Replica::get_working_set_index and use it 2020-11-24 12:05:30 -05:00
.gitignore implement TextOperation 2019-12-25 10:51:44 -05:00
.taskcluster.yml add an mdbook 2020-11-21 21:27:58 -05:00
Cargo.lock use prettytable for tabular outputs 2020-11-23 21:58:45 -05:00
Cargo.toml reorganize into separate crates 2020-11-23 14:27:47 -05:00
README.md restore README to top level 2020-11-23 16:12:46 -05:00

TaskChampion

TaskChampion is an open-source personal task-tracking application. Use it to keep track of what you need to do, with a quick command-line interface and flexible sorting and filtering. It is modeled on TaskWarrior, but not a drop-in replacement for that application.

Goals

  • Feature parity with TaskWarrior (but not compatibility)
  • Aproachable, maintainable codebase
  • Active development community
  • Reasonable privacy: user's task details not visible on server
  • Reliable concurrency - clients do not diverge
  • Storage performance O(n) with n number of tasks

Structure

There are three crates here:

See Also