Yui: git based personal task manager
Project description
Yui - personal task manager
Git based personal task manager. 100% command line. (also, Japanese girl name)
According to TDD as described in "Extreme Programming: Test Driven Development" by Kent Beck, we need to start every day with blank sheet of paper, white down small tasks and stroke out what is done. This is digital replacement for that paper sheets.
Install
Pip 3
pip3 install yui
4 dummies
yui
without arguments will display help
Workflow:
- Add task to the heap
yui create task name or short descriprion
- Show tasks in heap
yui list heap
- Show tasks in heap
- Pick the task to current day schedule
yui pick %taskId%
- Show tasks for current day
yui list cur
- Show tasks for current day
- Open task in text editor
yui open %taskId%
- Task file is just md file with yaml header
- Adjust status in header
- Write any notes below
- Save
- When you done working, or before next day
- Move unfinished tasks back to heap
yui reset all
- Archive tasks with status done
yui archive today
- Move unfinished tasks back to heap
- View archive for specific date
yui list 2023-01-11
- Run manual git command on task list
yui git %git_command% %git_command_args%
- Adjust visible scope with
yui scope
Optional configuration:
.yui/config.yaml
.yui/projects/%projectName%.yaml
How it works
- There is git repository behind the scenes. So you have history and you can sync tasks using any git server. History, branches, etc.
- Create/pick/reset/archive commands will invoke
git add
+git commit
commands automatically.
- Create/pick/reset/archive commands will invoke
- Task data stored in plain text files.
- Format markdown(.md) with yaml header.
- You work with single task using plain text editor, like kate
- yui tool is used to organize and navigate .md files
The method
Step 1: Write it down and forget.
Once you spot new task or idea - you just add it to the heap, and continue with your current work. So you stay focused.
yui create
Heap is the most chaotic, unorganised, unsorted, backlog you can imagine. Do not waste your time on details, just stock pile it in the heap as is.
Imagine that you are working with paper stickers and you have a big box of chaotic notes written on stickers - that's the heap.
yui list heap
Will show you tasks in the heap in form of table
id | context | project | name | status
----|----------|------------|------------------------------------------------------------------------|-------
7 | personal | yui | show creation date column in task list | new
15 | personal | yui | sanitize slashes in task filename | new
First column is taskId you will need it to manipulate the task
Step 2: pick the task into daily plan
Pick all tasks you are planning to work with today.
yui pick %taskId%
Will pick the task
yui list cur
Will display tasks for current day.
If you made a mistake, you can return the task back to heap
yui reset %taskId%
Step 3: open the task in text editor
yui open %taskId%
Step 4: change status to work
Adjust yaml header, simple replace status: new
with status: work
.
You can use any custom statuses, but buildin - new, work, done will be highlighted in yui list
output.
Step 5: Make notes while you are working on the task
As for it's just .md file, you can make any notes behind yaml header.
Note: you can work with as many tasks at once as you want
That's just plain text files, after all.
Step 6: change task status to done
In yaml header, replace status: work
with status: work
.
Step 7: check your progress
yui list cur
Will get more green lines while you complete the tasks.
Step 8: Cleanup workspace
yui reset all
Will return unfinished tasks back to the heap
yui archive today
Will move only done tasks to archive folder with current day. You can also use "yesterday" or specify date as "YYYY-MM-DD", or anything else recognized by php strtotime()
function.
To view archived tasks use:
yui list YYYY-MM-DD
Step 9: apply git
All git commands are mapped with yui git
.
Most used:
- yui git log
history of changes in tasks
- yui git remote add origin %link%
link your task list with remote repository
- yui git push
save local changes to remote repository
- yui git pull
load fresh changes from remote repository
Apllication working folder
Defaut:
- Linux:
~/.yui
- Windows:
c:\Userts\%username%\AppData\yui
Can be overwriten withYUI_HOME
environment variable, likeYUI_HOME=mypath yui list heap
config.yaml
Location: %application-working-folder%/config.yaml
Example:
---
# % will be replaced with filename
# Examples:
# To run gui editor: nohup kate % > /dev/null 2>&1 &
# To run in terminal: mcedit %
# You can use nano, vi, mcedit etc
# If not specified, tsk will try EDITOR environment variable and then mcedit, nano, vim, vi, ee in that order
editor: nohup kate % > /dev/null 2>&1 &
---
Project configuration
Location: %application-working-folder%/projects/%projectName%.yaml
Example file:projects/myProject.yaml:
---
# this will make YUI_PROJECT=myProject yui create test
# work the same way as YUI_PROJECT=myProject YUI_CONTEXT=myContext yui create test
defaultContext: myContext
---
View archives
yui list_archives
Will display list of existing archives, from application working folder
To view tasks in single archive use
yui list %archiveName%
Advanced options
You can pick range of items like so pick 141,142,143..154
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file yui-1.0.2.tar.gz
.
File metadata
- Download URL: yui-1.0.2.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e2270b4fe7729da1bd43e28c592f1001fcd0ad48340ff3c5d7a1c674b0c7e48 |
|
MD5 | ce40f9fa55af0570776493c45ca1b9bc |
|
BLAKE2b-256 | c793b0be160787b67a790f6091faed4074377db1e60de600d0b748ef99c3eb6a |
File details
Details for the file yui-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: yui-1.0.2-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5581ac8397e0e016a3232b8bccc720b874426b47dcab922bc81ed3b6405bc6b1 |
|
MD5 | 9a23d553615589dd7831510c0eff9d79 |
|
BLAKE2b-256 | d7ff765cf788644b0569068a66e258402e00b50a5e937b2f391ebf3840ade963 |