Simple task management workflow (w/o daily notes)

I’ve been experimenting with ways to organize my life with a note-taking app since I learned about August Bradley’s PPV System last December 2021. After fiddling with Obsidian for two months, I think I have finally settled on a simple system.

Overview of my task management system

I figured I had to make it dead simple for me. So now I’m settled with having only two types of task management notes in my vault:

  1. Action Zone: a single note that shows today’s tasks, overdue tasks, this week’s tasks, and unscheduled tasks
  2. Topics: a dedicated note for each project/topic to keep the related information (documentation, stakeholder contacts, Slack channels, etc.), planned/completed tasks, and meeting/discussion notes.

1. Daily tasks in the “Action Zone” note

My “Action Zone” note was inspired by August Bradley’s Notion Daily “Action Zone” Dashboard Design. I open this note every morning to find out the tasks I scheduled for today.


^ The same “Action Zone” Note in source mode (left) and reading mode (right)

The task lists in the Action Zone note are generated dynamically. The actual tasks live in other topic notes and are collected here with the query language of the Tasks plugin.

The following is one Tasks plugin query in my Action Zone note that collects tasks for today:

## Today's Tasks
```tasks
not done
due today
sort by description
```

The query itself should be self-explanatory:

  • not done - tasks that aren’t done
  • due today - tasks that are due today
  • sort by description - sorted by the descriptions of tasks; I only use this sorting option in today’s task lists as this helps sort the tasks by time (I prepend the scheduled time in 24-hour format to the task description)

For more details on how to use the query language of Tasks plugin, please check out the official documentation: Queries - Obsidian Tasks

Next, I review my overdue tasks. These are the tasks I planned to get done yesterday but are still unchecked today.

Query for overdue tasks:

##  Overdue Tasks
```tasks
not done
due before today
sort by due
```

I would click the pencil icon at the end of each task to open the edit panel and manually change the value of the Due field to today or some other day in the future. I love that I can type today, next sat, or even next month and leave it to the plugin to resolve the date.

02
^ Editing a task

It might seem a lot of effort to edit the tasks one by one, but this is natural for me since I have done bullet journaling for more than two years. This process is just like the migration of bullet journaling – it makes me pause and consider each item:

  • Not necessary? Just delete it.
  • Mandatory? Plan for it.
    • Urgent? Schedule it for today.
    • Not urgent? Move it to some other day in the future. Out of sight, out of mind. Just be mindful of what I can do at the moment.

As for “This Week’s Tasks” and “Unscheduled Tasks” sections –- I hate to admit that I don’t look at them. I’m never good at getting ahead of my todo lists, and I rarely finish all I have planned and pick new ones from the future.

## This Week's Tasks
```tasks
not done
due after today
due before in 1 week
sort by due
```

## Unscheduled Tasks
```tasks
not done
no due date
sort by path
```

When I open the Action Zone note for review every morning, I also check my calendar and see if any meetings are not listed. Then, I would quickly open the related topic note with a hotkey and add the meeting task to the note. (The default hotkey for opening a note is Cmd + O, but I changed it to Cmd + P to make the experience more similar to Visual Studio Code.)

In the next section, I will explain what a topic note is like and how I add tasks to it.

2. Projects and tasks in topic notes

For each task, there’s a hyperlink to the actual topic note where this task resides. Click the link to open that topic note in the same pane, or Cmd + click to open the note in a new pane.


^ For each task, there’s a hyperlink to the actual topic note where this task resides.

I note down three things in each topic note: information of the topic, tasks, and meeting minutes.

Information

This part is free-form: background, documentation, Slack channels, Trello Cards, Jira Epics, etc. Anything related to this topic that I want to note down.

Adding and managing tasks with the Tasks plugin

I create all tasks via the Tasks plugin. This ensures tasks show up on the Action Zone note on the date I specified. In addition, the plugin automatically resolves dates from human-readable strings, e.g. today, tomorrow, next month, which saves me from doing the math or struggling with date picker widgets.

You need to open the command palette with Cmd + P, then select and run the command: Tasks: Create or edit task to open the Tasks plugin. I mapped this command to a hotkey Cmd + T to speed it up. This way, I can quickly create a task with my cursor on an empty line or a non-task paragraph or edit a task with my cursor on it, by hitting Cmd + T.

03
^ Adding/editing tasks with hotkeys

Recurring tasks

I rely heavily on the Recurring Tasks feature of the Tasks plugin. I create recurring meetings this way:

- [ ] 10:00 weekly sync 🔁 every week on Wednesday 📅 2022-02-09

Or remind me of regular health checks:

- [ ] kids teeth fluoridization 🔁 every 180 days 📅 2021-11-05
- [ ] teeth scaling 🔁 every 180 days 📅 2022-01-27

Note that the next recurring task are not generated until you mark the current task as done. When a recurring task is marked done, the Tasks plugin copies the current task, inserts the copy one line above the current one and sets the due date of this new task to the next occurrence.

- [ ] teeth scaling 🔁 every 180 days 📅 2022-07-27
- [x] teeth scaling 🔁 every 180 days 📅 2022-01-28 ✅ 2022-01-28

Be sure to toggle a task with the Tasks plugin command

There’s one thing I had to get used to when I first used Tasks plugin: you cannot toggle a task done with the native Obsidian approach in source mode. Instead, you must place your cursor on the task and run the Tasks: Toggle task done command from the command palette. Otherwise, the Tasks plugin would not append the completion date or create another recurring task for you. So, to speed it up, I also added a hotkey: Cmd + Shift + Enter for toggling a task done.


^ My hotkeys setting for the Tasks plugin

Meeting notes

I would create a task for every meeting. This reminds me of the meeting during the day and helps me recall that such a discussion happened on a particular day in the future.

How do I store my notes of meetings, then?

If the discussion is on Slack or Jira, I keep the permalink of the thread:

- [x] Discuss with Amy regarding [ISSUE-123](https://jira.ticket.url) - [Slack](https://slack.archive.link) 📅 2022-03-01 ✅ 2022-03-01

I try to jot down a summary of the discussion whenever I can. I don’t worry if I fail to summarize since I still have the link to refer to the full context.

How about notes taken during video/audio calls?

When I first tried out Obsidian, I created one note for each video/audio call and linked each note back to the topic note. For example, the [[weekly sync 2022-03-23]] in the following task links to another note with the title “weekly sync 2022-03-23”:

- [x] 10:00-11:00 weekly sync [[weekly sync 2022-03-23]] 🔁 every week on Wednesday 📅 2022-03-23 ✅ 2022-03-23

After working like this for two weeks, I was not too fond of the constant note-jumping when reviewing discussions on the same topic. So I decided to merge those notes to the topic note, indented under respective tasks. Having all notes in one file makes it easier to look back.

- [ ] 10:00-11:00 weekly sync 🔁 every week on Wednesday 📅 2022-03-30
  - 123
  - 456
  - 789
- [x] 10:00-11:00 weekly sync 🔁 every week on Wednesday 📅 2022-03-23 ✅ 2022-03-23
  - 1
  - 2
    - 2a
    - 2b
  - 3

Zooming in: the Zoom plugin

The downside of having all notes in one file is distractions. I prefer to take notes on blank files during meetings as it helps me stay focused. I tried starting from a new file and then cutting & pasting notes from the new file to the topic note after each meeting – until the Zoom plugin came to the rescue.

The Zoom plugin enables you to zoom in to a certain level of the document like Workflowy and Roam Research do. There will be a breadcrumb at the top of the note to track where you are. With this plugin, I can zoom in to the current meeting task and filter out other parts of the note without leaving the file.

  • Zoom in: place your cursor on the item to zoom in, then press Cmd + .
  • Zoom out: press Cmd + Shift + . or click the path in breadcrumbs

05

Wrapping up

That’s it – my task management system in Obsidian. Huge thanks to @schemar and @vslinko for the awesome plugins.

I love how simple and powerful it is. With only two types of notes, I manage more tasks and record more details in a more organized pattern than I could do with a handwritten journal.

32 Likes

This was excellent ! Thanks !

1 Like

Thank you for the feedback! Glad that you find it useful.

Very helpful! Bookmarked!!

1 Like

Really excellent write up. Thank you.

1 Like

Thank you! This would not be possible without the plugin you created.

1 Like

I’ve used Obsidian for over a year now and I’ve never found a way to comfortably manage my task. Your workflow might be the solution I was searching for, so thank you for sharing @jsliang !

Quick question: When you write that the «The actual tasks live in other topic notes », I found myself curious - what does this file look like (I assumed it is only one because you don’t work with daily notes… ?) Do you simply write the task first on top of the page? Do you delete some of them after a while?

My current workflow is a bit similar, but I find the single to-do page to be quite long after a couple of months, and I’m not sure what I’m supposed to keep or delete, other than my recurrent tasks. If you have one, what is your approach? Of course, project tasks or meetings are easier to include in separate pages, but I am a bit confused as to where the ordinary things, like buying milk, for example, would be written in the vault.

Thank you.

Hello @Amelio, thank you for the feedback! Glad to know it might work for you.

I have a lot of files actually. Like in my first screenshot, you can see different links at the end of tasks. So I have many files: “1 on 1 with manager”, “Project B”, “Chores”, “Kids”, “Team Bonding”, etc. And I don’t delete tasks since I still do daily notes for memory keeping and reviewing. I want to keep all the completed tasks intact so that I will be able to recall what I did on a certain day in the respective daily note.

For ordinary things, I just put them in their respective topic notes. Like I have the “Chores” note for household chores, “Kids” note for any parenting tasks, and even “Recurring Tasks” for whatever I do regularly (such as monthly bookkeeping or yearly health checks). I don’t really care about the readability of these notes so the content can be quite messy. These files are just containers for keeping all the ordinary tasks. If I ever need a pretty view of tasks, I would just use the Tasks plugin’s query to filter/sort the tasks in a different view instead of reorganizing them. :rofl:

1 Like

Ah ! I understand now.

Thank you again :grinning:

1 Like

I’m not sure if this would be helpful but a dataview query of tasks can list tasks grouped by different notes.

This is my own use case, just ignore its chaos, but I like that this allows me to choose which folders I want it to pull from, especially if I don’t have a date assigned

/dataview TASK FROM "00 - THESIS" OR "02 - RESEARCH" OR "03 - School" WHERE !completed GROUP BY file.folder SORT due asc /

I do use daily notes, but this is a template that remains pretty static from day today.

Sorry if this is not fully relevant- love your setup, I def use a similar version just with some dataview querys sprinkled in.

5 Likes

This is superb, thank you so much.

Any chance you’d be willing to share your vault on Github?

This is the closest one that I’ve found that’s similar to yours but would love to See yours as a vault template.

https://www.reddit.com/r/ObsidianMD/comments/16wczsh/a_taskcentric_obsidian_vault_template/