Taskwarrior - Command line Task Management taskwarrior.org https://taskwarrior.org
Find a file
2021-09-05 17:02:48 +10:00
.changelogs Update contribute+release docs regarding changelog 2021-08-26 19:56:53 +10:00
.github pin mdbook version 2021-06-09 15:38:36 -04:00
cli Add confirmation prompts for modifications of lots of tasks 2021-06-10 10:55:42 -04:00
docs Add confirmation prompts for modifications of lots of tasks 2021-06-10 10:55:42 -04:00
scripts Store changelog snippets as .md 2021-09-05 17:02:48 +10:00
sync-server [breaking] Include /v1/ in the sync-server paths 2021-05-14 12:51:24 -04:00
taskchampion implement FromStr instead of just from_str 2021-06-05 21:30:28 -04:00
.gitignore implement TextOperation 2019-12-25 10:51:44 -05:00
build-docs.sh Substitute usage information into the documentation 2021-05-24 08:51:05 -04:00
Cargo.lock Add confirmation prompts for modifications of lots of tasks 2021-06-10 10:55:42 -04:00
Cargo.toml reorganize into separate crates 2020-11-23 14:27:47 -05:00
CHANGELOG.md Initial changelog 2021-06-20 22:13:57 +10:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2020-11-26 23:18:32 -05:00
CONTRIBUTING.md Store changelog snippets as .md 2021-09-05 17:02:48 +10:00
LICENSE Create LICENSE 2020-11-26 23:20:45 -05:00
POLICY.md Create SECURITY.md based on POLICY.md 2021-05-30 21:41:35 -04:00
README.md Substitute usage information into the documentation 2021-05-24 08:51:05 -04:00
RELEASING.md Update contribute+release docs regarding changelog 2021-08-26 19:56:53 +10:00
SECURITY.md Create SECURITY.md based on POLICY.md 2021-05-30 21:41:35 -04: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.

See the documentation for more!

Status

TC is still under development. You are welcome to help out!. Even if you just want to get some practice with Rust, your contribution is welcome.

Since development of TaskChampion began, TaskWarrior developers have resumed work and made several releases. Assuming that continues, it is unlikely that TaskChampion will ever be recommended for day-to-day use, as that would only serve to split the TaskWarrior community.

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:

Documentation Generation

The mdbook configuration contains a "preprocessor" implemented in the taskchampion-cli crate in order to reflect CLI usage information into the generated book. Tihs preprocessor is not built by default. To (re)build it, run cargo build -p taskchampion-cli --features usage-docs --bin usage-docs.