yaGTD - Yet Another Getting Things Done

A primitive Getting Things Done to-do list manager.

Author:MiKael NAVARRO <klnavarro@gmail.com>.

Contents

yaGTD - Yet Another Getting Things Done

yaGTD project is a very simple utility designed to make the management of your to-do list quick and easy.

I have several long-term projects at work, and I need reminders to spend time on the important things that aren't too urgent. When, in 2006, I read David Allen's personal-productivity book Getting Things Done, I tried to apply this method on my personal projects; So, I needed a 'trusted system' ...

But why another to-do list? There are hundreds of to-do lists on the web, some commercial, some free, some need on-line connection while other not, some are integrated into an email client and some web sites were built to manage your to-do list, but I was looking for something a little different.

What I wanted was something lightweight and flexible, a simple way to carry and maintain my tasks around on a USB stick. The program needed to be capable of running on different platforms and must not depend on any data format or any web connection.

I tried several software for managing to-do lists, including the excellent iKog and pyGTD programs, but I found that the former was missing the notion of urgency and importance (preached by Stephen Covey into Seven Habits of Highly Effective People), and the latter made it too laborious to maintain data.

And so, after several months of occasional experimentation, I decided to write my own tool that includes the easy to use but powerful commmand line interface from iKog and the management of Covey concepts from pyGTD.

To summarize, if you are looking for fancy menus and windows, go away; But, if you are comfortable at the command line a simple plain text is an age-old but perfect method for tracking your stuff, and yaGTD can help you to manage efficiently this file.

PS: Read more about why plain text makes sense.

Licence

yaGTD is a free software available under the terms of the GNU General Public Licence. Refer to the file COPYING (which should be included in this distribution) for the specific terms of this licence.

Requirements

Python 2.3 or later must be installed on your system.

Theorically should work on all platforms.

See INSTALL file for more details on how to deploy yaGTD.

Getting started

Simply run:

$ python /path_to_the_file/yagtd.py

Use --help flag for more options; Available commands, with a short description, are accessible interactively with the help or the ? command.

yagtd.png

To add a task, simply type add followed by the task you want to add:

GTD> add Etudier GTD.

Then, to see all tasks in your todo list, enter list command.

Adding tasks

Add another task:

GTD> add Etudier le Mind-mapping.

Specifying a context

Contexts are specified with the @ character:

GTD> add Etudier le Mind-mapping. @home

GTD> add Ameliorer Rhinote (et contacter l'auteur). @computer @home

Specifying projects

Projects are added with the p: keyword:

GTD> add Etudier GTD. p:GTD

Specifying status

Status is added with the ! character:

GTD> add Etudier GTD. !Next

Adding references

Archive a task to a reference memo with the ref: keyword:

GTD> add pyGTD, DevTodo, todotxt. ref:GTD

Setting a date

You can, optionaly, add a task with a target (due) date with the D:yyyy-mm-dd notation:

GTD> add Etudier GTD. @home p:GTD D:2006-12-16

And set the time required for a task by adding T:n[WDHM] keyword.

W:n weeks
D:n days
H:n hours
M:n minutes

Others options

We find here additional options from Stephen Covey:

  • U: urgency (5=today,4=this_week,3=this_month,2=this_quarter,1=this_year)
  • I: importance (5=crucial,4=high,3=normal,2=low,1=someday)
  • C: percent complete
  • T: time requiered T:n[WDHM]
  • R: recurrence R:n[WDH]
  • S: start / creation date
  • D: due (target) date
  • E: end, closure date

Navigating through the tasks

Viewing tasks

To see all or first #nb open tasks:

GTD> list [nb]

Notice that all task are ordered by creation #id.

To see all tasks (even if completed):

GTD> listall [nb]

Sort tasks by priority:

GTD> sort [nb]

Remark: Priority is computed from Urgency, Importance and Due date [1]

[1]see source code gtd.py

Show details of task #nb:

GTD> show nb

And, display status (percent complete) of your projects:

GTD> status

Viewing by context

To see your tasks by context:

GTD> order [nb]

If number is specified display maximum #nb tasks for each contexts.

Remark: Tasks are sorted by priority too.

Viewing by project

To view #nb first tasks for each project:

GTD> order nb project

Viewing by status

To view #nb first tasks by status:

GTD> order nb status

Searching for tasks

To help find tasks matching the given expression, for exemple to retrieve all tasks into the specified context, project or status:

GTD> search @home

GTD> search p:GTD

GTD> search !Next

You can also, give a regular expresion:

GTD> search .*gtd

Remark: Do not list completed tasks, use searchall command instead.

Changing the tasks

Replacing a task

To replace the entire task #id by a new one:

GTD> replace id new task

Ex:

GTD> replace 1 Etudier la methodology GTD. @home p:GTD

Editing a task

Interactively edit the task #id:

GTD> edit id

Then, validate modifications by pressing <return>:

GTD edit> editted task

Ex:

GTD> edit 1

GTD edit> Etudier la methode GTD. @home p:GTD

Modifying a task

Add / change elements of task #id but leave each other unchanged:

GTD> modify id elements to change

Ex:

GTD> modify 3 @online

Appending a task

Add new elements to task #id but leave existing elements unchanged:

GTD> append id new elements

Ex:

GTD> append 2 @computer

Extending a task

Add more text (description) to task #id:

GTD> extend id additional notes

Be careful: for the moment, extend the task title (only)!

Removing a task

Remove the given task #id:

GTD> del id

Close the given task #id:

GTD> close id

Remark: If the task has a recurrent time-delta, the task is automatically reprogrammed.

Saving your work

Save to todo.txt filename:

GTD> save [todo.txt]

Load from a todo.txt filename:

GTD> load todo.txt

Export into printable format (ReST):

GTD> print [todo.rest]

Move done items from todo.txt to done.txt:

GTD> archive

-- MiKael NAVARRO