Tsktsk is a task list aimed at helping prioritize and categorize your tasks. It supports adding tasks in five different categories and prioritizing them based upon their estimated value provided and effort required. There are two options for storing your tasks. Tasks can be stored in a file or they can be stored as Github issues.
Installing tsktsk is best accomplished with pip.
$ pip install tsktsk
To install the latest development version, clone the repository and install with python setup.py install.
To begin with a tsktsk repository must be initialized.
Tsktsk can read tasks from a GitHub repository.
It will fetch details of the repository and authentication from environment variables or
from a local .env file.
For example our .env file may be:
TSKTSK_GITHUB_REPO=ianagbip1oti/tsktsk
TSKTSK_GITHUB_USERNAME=ianagbip1oti
TSKTSK_GITHUB_TOKEN= < insert token here >
The token used here is a personal access tokenā from GitHub.
A GitHub repository may also be specified from the command line using the --github flag.
Authentication details must still be configured via environment variables or a .env file.
$ tsktsk --github=ianagbip1oti/tsktsk list
Tasks can be stored locally in a file. We can initialize a task list in the current folder by using the init command.
$ tsktsk init
tsktsk initialized.
After initializing we can now begin creating tasks.
$ tsktsk new My First Task
1 š¦ NEW: My First Task
There are five categories that tasks can be create in:
new for š¦ NEW: add something newimp for š IMPROVE: improve something existingfix for š FIX: fix a bugdoc for š DOC: improve documentationtst for ā
TST: changes related to testingFor example,
$ tsktsk fix My First Bug
2 š FIX: My First Bug
$ tsktsk doc Write README
3 š DOC: Write README
$ tsktsk list
1 š¦ NEW: My First Task
2 š FIX: My First Bug
3 š DOC: Write README
With no other information tsktsk will order issues in the order they are created. But, this is rarely the most efficient order in which to complete tasks. Some tasks have more value than others, and some tasks will require more or less effort to complete.
We can set the value and effort required for a task when we create it.
$ tsktsk new --value=high My Valuable Task
4 š¦ NEW: My Valuable Task Vā¬
$ tsktsk fix --effort=low My Easy Bug
5 š FIX: My Easy Bug Eā¬
$ tsktsk doc --effort=high Write User Guide
6 š DOC: Write User Guide Eā¬
$ tsktsk list
5 š FIX: My Easy Bug Eā¬
4 š¦ NEW: My Valuable Task Vā¬
1 š¦ NEW: My First Task
2 š FIX: My First Bug
3 š DOC: Write README
6 š DOC: Write User Guide Eā¬
With more information tsktsk was able to suggest an order in which the tasks could be completed. Those tasks that are more valuable, or lower effort, give us a better return for our investment of effort, hence they are pushed to the top. Those tasks that are high effort, or lower value, will be pushed towards the bottom.
We can edit our previous tasks if we change our minds about how much value or effort a task is.
$ tsktsk edit 2 --value=high --effort=low
2 š FIX: My First Bug V⬠Eā¬
$ tsktsk list
2 š FIX: My First Bug V⬠Eā¬
5 š FIX: My Easy Bug Eā¬
4 š¦ NEW: My Valuable Task Vā¬
1 š¦ NEW: My First Task
3 š DOC: Write README
6 š DOC: Write User Guide Eā¬
Now that task 2 is high value and low effort, tsktsk has moved it to the top of the list.
Finally, after we've done our work, we can mark a task as done.
$ tsktsk done 2
$ tsktsk list
2 š FIX: My First Bug V⬠Eā¬
5 š FIX: My Easy Bug Eā¬
4 š¦ NEW: My Valuable Task Vā¬
1 š¦ NEW: My First Task
3 š DOC: Write README
6 š DOC: Write User Guide Eā¬
tsktsk itself uses tsktsk to track issues. After installing tsktsk and cloning the repository, you can run tsktsk --github=ianagbip1oti/tsktsk list to see the current task list for tsktsk development.
Reach out to the Discord Projects Hubā on Discord and look for the tsktsk channel.
View the current task list for tsktskā , choose one, and jump right in! (don't let that stop you from working on something not in that list if you think it needs doing)
tox -e to run tests with your installed python versiontox -e fmt to format the codeThanks to Ahmad Awaisā for Emoji-Logā , which is from where we take the task categories and emojis.
Icons made by Freepikā from www.flaticon.comā
Content type
Image
Digest
Size
328.7 MB
Last updated
over 5 years ago
docker pull ianagbip1oti/tsktsk