TaskNotes

by callumalpass
5
4
3
2
1
Score: 55/100

Description

The TaskNotes plugin turns each task into its own Markdown note and uses Bases queries to power list, kanban, calendar, agenda, and mini calendar views. It stores task data in YAML frontmatter, so tasks stay portable and easy to edit outside the plugin. Natural language entry helps create tasks quickly, while configurable properties let existing workflows map fields like due dates or custom metadata. It also handles recurring tasks with per instance completion, optional occurrence notes, time tracking, Pomodoro sessions, dependencies and computed formulas inside the bundled views. Calendar sync is available for Google, Microsoft or ICS sources and the plugin can connect to external tools through its HTTP API, CLI, browser extension and webhooks.

Reviews

  • Yohsuke Fukai
    Reviewed on Mar 1st, 2026
    No review text provided.
  • Gabriel Amaro Hernandez
    Reviewed on Feb 19th, 2026
    The only one thing i change of this plugin. Its the tutorial, for the rest its amazing
  • Julian Ventura
    Reviewed on Jan 3rd, 2026
    No review text provided.
  • Stefi Butler
    Reviewed on Nov 27th, 2025
    No review text provided.
  • Prakash
    Reviewed on Nov 24th, 2025
    No review text provided.

Stats

stars
973,440
downloads
0
forks
48
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

TaskNotes for Obsidian

A task management plugin where each task is a separate Markdown note, and all views are powered by Obsidian Bases.

Overview

Each task is a Markdown note with YAML frontmatter. Every view is a Bases query.

Bases is Obsidian's core plugin for turning notes into databases—it reads properties from your notes and lets you filter, sort, and group them without writing code. TaskNotes stores tasks as notes with structured frontmatter, then uses Bases to query and display them. The Task List, Kanban, Calendar, and Agenda views are all .base files.

This keeps your data portable. Tasks are just Markdown files with YAML, so you can read them with any tool, transform them with scripts, or migrate them elsewhere. There's no plugin-specific database.

The frontmatter is extensible—add fields like energy-level or client and they're immediately available in Bases for filtering and grouping. The .base files are plain text too, so you can edit filters and sorting directly or duplicate them to create new views.

Screenshot of TaskNotes plugin

Full Documentation

Quick start

Create a task with TaskNotes: Create new task. The plugin parses natural language—type "Buy groceries tomorrow #errands" and it extracts the due date and context automatically.

Tasks are stored as Markdown files in your vault. Open them directly, edit the frontmatter, or use the plugin's views to manage them.

Open a view with commands like TaskNotes: Open tasks view or TaskNotes: Open kanban board. These open the corresponding .base files from TaskNotes/Views/.

How it works with Bases

TaskNotes registers as a Bases data source and provides custom view types: tasknotesTaskList, tasknotesKanban, tasknotesCalendar, and tasknotesMiniCalendar. The default Agenda file is a preconfigured tasknotesCalendar list view (listWeek). Your task notes become rows; frontmatter properties become columns.

The default .base files include formula properties for computed values:

formulas:
  daysUntilDue: if(due, ((number(date(due)) - number(today())) / 86400000).floor(), null)
  isOverdue: due && date(due) < today() && status != "done"
  urgencyScore: formula.priorityWeight + max(0, 10 - formula.daysUntilDue)
  efficiencyRatio: (timeTracked / timeEstimate * 100).round()

You can sort by urgencyScore, filter to show only isOverdue tasks, or add these as columns. Edit the .base files directly or use the Bases UI. See default base templates for the full list of included formulas.

Task structure

title: "Complete documentation"
status: "in-progress"
due: "2024-01-20"
priority: "high"
contexts: ["work"]
projects: ["[[Website Redesign]]"]
timeEstimate: 120
timeEntries:
  - startTime: "2024-01-15T10:30:00Z"
    endTime: "2024-01-15T11:15:00Z"

Recurring tasks use RRULE format with per-instance completion tracking:

title: "Weekly meeting"
recurrence: "FREQ=WEEKLY;BYDAY=MO"
complete_instances: ["2024-01-08"]

When an individual recurrence needs its own note, TaskNotes can materialize that occurrence as a normal task. Calendar views show the note-backed occurrence in place of the matching virtual recurrence instance:

title: "Weekly meeting"
recurrence_parent: "[[Tasks/Weekly meeting]]"
occurrence_date: "2024-01-15"
scheduled: "2024-01-15T09:30"
timeEstimate: 60

Occurrence notes inherit planning metadata from the recurring parent, such as scheduled time, due offset, tags, contexts, projects, reminders, details, and time estimate. They do not copy the parent's recurrence rule, completion history, or time entries.

All property names are configurable. If you already use deadline instead of due, remap it in settings.

Other features

Calendar sync with Google and Microsoft (OAuth) or any ICS feed. Time tracking with start/stop per task, Pomodoro timer, and session history. Recurring tasks with fixed or flexible schedules, per-instance completion tracking, and optional materialized occurrence notes. Dependencies between tasks. Natural language parsing for task creation. Custom statuses, priorities, and user-defined fields.

Integrations

TaskNotes has an optional HTTP API. There's a browser extension and a CLI. Webhooks can notify external services on task changes. See HTTP API docs and Webhooks docs.

Language support

UI: English, German, Spanish, French, Japanese, Russian, Chinese, Portuguese, Korean.

Natural language parsing: English, German, Spanish, French, Italian, Japanese, Dutch, Portuguese, Russian, Swedish, Ukrainian, Chinese.

Screenshots

Screenshots are generated from the Playwright documentation suite (npm run e2e:docs).

Calendar

Month

Week

Day

Year

Task views

Tasks

Kanban

Agenda

Mini Calendar

Features

Task Modal

Pomodoro

Stats

Settings

Credits

Calendar components by FullCalendar.io.

License

MIT—see LICENSE.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Agile Task Notes
4 years ago by BoxThatBeat
This Obsidian plugin integrates your TFS data from either Jira or Azure Devops
Amazing Marvin
5 years ago by Shirayuki Nekomata
Simple plugin for Amazing Marvin
Amazing Marvin Integration
2 years ago by Cloud Atlas
Interoperability between Obsidian and Amazing Marvin
Another Simple Todoist Sync
2 years ago by eudennis
Obsidian.md plugin to integrate with Todoist app.
Apex Dashboard
a month ago by PandoraReads
Your personal command center — memos, todos, and projects in one stunning glassmorphism dashboard. - This plugin has not been manually reviewed by Obsidian staff.
Archiver
5 years ago by ivan-lednev
Archive completed tasks in your Obsidian vault (plus other org-mode-like features)
Asana
a year ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Auto Tasks
2 years ago by Jamie Hurst
Obsidian plugin to combine periodic notes with tags and tasks to automatically manage your daily, weekly and project TODO lists. Requires the "Periodic Notes" and "Tasks" plugins.
Base Board
2 months ago by mderazon
This plugin has not been manually reviewed by Obsidian staff. Organize notes into Kanban boards using frontmatter properties. Drag and drop cards between columns powered by Bases.
Bases Charts
3 months ago by Moritz Jung
This plugin has not been manually reviewed by Obsidian staff. Bases views for scatter, line, and bar charts.
Bases Paginator
24 days ago by sean2077
Adds a paginated table view with quick filtering to Bases. Features include pagination controls, global search, click-to-filter, and filter presets. - This plugin has not been manually reviewed by Obsidian staff.
Bases Toolbox
15 days ago by Grub Basket
Quality-of-life tools for Bases and properties: find & replace property values across the vault, stop number properties from changing on arrow keys, and a searchable index of every property. - This plugin has not been manually reviewed by Obsidian staff.
BeautyTasks
7 days ago by Avni Bilgin
A Todoist-inspired task and project manager built entirely on Markdown — one note per task, no external services, no dependencies. - This plugin has not been manually reviewed by Obsidian staff.
Big Calendar
4 years ago by Boninall
Big Calendar in Obsidian, for manage your events in a day/week/month and see agenda too!
Brainframe
3 years ago by pedersen
Calendar Bases
5 months ago by Edrick Leong
Adds a calendar layout to bases so you can display notes with dates in an interactive calendar view.
Canvas Bases
7 days ago by callumalpass
Canvas-style layouts and JSON Canvas materialization for Obsidian Bases. - This plugin has not been manually reviewed by Obsidian staff.
CardBoard
5 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
Carry-Forward
5 years ago by Jacob Levernier
An Obsidian Notes plugin for generating and copying block IDs, and copying lines with a link to the copied line
Checkbox 3 states
4 years ago by Renaud Héluin @ NovaGaïa
This is a simple plugin for add a third state to checkbox list.
Checkbox Sounds
2 years ago by yasd251
Adds a nice completion sound for checkboxes when ticked in Obsidian
Checkbox Time Tracker
2 years ago by UD
Checkbox Time Tracker for Obsidian
Checklist Reset
4 years ago by Luke Hansford
Add a command to reset the state of any checklists in a document in Obsidian
Chronotyper
a year ago by BambusControl
Obsidian plugin for tracking note edit time
Countdown To
a year ago by Gui Cattani
A countdown/progress Obsidian widget using progressbar.js
Custom State for Task List
3 years ago by Okami Wong
A plugin for Obsidian to define your own states for task items.
Day Planner
15 days ago by ivan-lednev
Day planning from a task list in a Markdown note with enhanced time block functionality.
Diary ICS
a year ago by Mousebomb
Sync Obsidian diary entries to system calendar via ICS feed.
doing
2 years ago by rooyca
What was I doing?
Due When
3 years ago by Andy Baxter
An Obsidian plugin which gives shortcuts to insert set due dates
Dynamic Timetable
3 years ago by L7Cy
Calculate the estimated completion time from the estimated task time and dynamically create a timetable.
Ego Rock
2 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
Fastimer
3 years ago by vkostyanetsky
Intermittent fasting tracker plugin for Obsidian
Feed Bases
3 months ago by edrickleong
This plugin has not been manually reviewed by Obsidian staff. Adds a feed layout to bases so you can display notes with their content in an editable feed view.
Fetch Prayer Times
2 years ago by Ecys
Fetches times from Aladhan API and inserts into a table.
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
Focus Time
2 years ago by AstraDev
Focus Time is a plugin that helps you track how much time you spend on each note.
Gantt Calendar
a month ago by Sugar
A powerful visual task management plugin. Visualize and manage tasks created by the Tasks plugin, supporting both emoji and Dataview task formats. Support Feishu Task syncing. - This plugin has not been manually reviewed by Obsidian staff.
Goal Tracker
2 years ago by Ben Rotholtz
Google Calendar Importer
10 months ago by Fan Li
A simple and light-weighted google calendar importer, allow injecting the events / tasks of a day automatically to your daily notes, or import it to anywhere with a command.
Grandfather
5 years ago by Danny Hernandez
A simple Obsidian plugin to display the time and date on the status bar
Grind Manager
2 years ago by dromse
Gamify your task management with rewards system, craft your tasks by tags.
GTD No Next Step
3 years ago by Tobias Davis
Obsidian plugin for GTD workflow, badge projects with no next step.
GTD Tasks
24 days ago by unpreditable
A dedicated panel to organize tasks across the vault using the Getting Things Done methodology (Today, This Week, Someday…) - This plugin has not been manually reviewed by Obsidian staff.
Habitica Sync
5 years ago by Leoh and Ran
This is a under-development Obsidian Plugin for Habitica
Homework Manager
3 years ago by Kadison McLellan
An Obsidian plugin that keeps track of homework through a to-do list.
iCal
3 years ago by Andrew Brereton
This is a plugin for Obsidian that searches your vault for tasks that contain dates, and generates a calendar in iCal format that can be imported into your preferred calendar application.
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Kanban Bases View
5 months ago by I. Welch Canavan
A kanban-style drag-and-drop custom view for Bases.
Kanban Status Updater
a year ago by Ankit Kapur
Obsidian plugin that automatically updates the note property when card is moved to a column.
Kikijiki Habit Tracker
2 years ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
Lark Style CountDown Timer
8 months ago by Zhaoyang Yu
Live Life Recording
a month ago by goryugocast
Record task start and finish times directly in Markdown. LLR (Live Life Recording) adds routine insertion and a lightweight daily summary sidebar. - This plugin has not been manually reviewed by Obsidian staff.
ManicTime
3 years ago by Finkit d.o.o.
Maps
10 months ago by Obsidian
Map layout for Obsidian Bases. Display your notes as an interactive map view.
Morgen Tasks
2 years ago by Morgen AG
Notion Bases
a month ago by bgarciamoura
Turn any folder into a database — table, kanban board, gallery, calendar, timeline and list views powered by frontmatter. - This plugin has not been manually reviewed by Obsidian staff.
Obsidian Google Tasks
4 years ago by YukiGasai
Add Google Tasks inside Obsidian
Obsidian-compatible Watcher for ActivityWatch
3 years ago by Grimmauld
Obsidian plugin to track user activity with ActivityWatch
Open cards in imdone.
5 years ago by saxmanjes
Open cards in imdone from obsidian
Operon
5 days ago by Hasan Yılmaz
Task and project management system that unifies inline tasks and file-based tasks in the same workflows with Tables, Filters, Calendar planning, Kanban boards, pinned tasks, and time tracking. - This plugin has not been manually reviewed by Obsidian staff.
Order List
4 years ago by Henry Gustafson
Org Mode
5 years ago by ryanpcmcquen
Add Org Mode support to Obsidian.
Pending notes
4 years ago by Ulises Santana
Obsidian plugin for searching links without notes in your vault.
Personal OS
2 years ago by A.Buot
Pivotal Tracker Integration
3 years ago by jondeates
Pomodoro Planner
2 years ago by Onur Nesvat
Power Bases
10 days ago by Power Plugins
Add board, calendar, timeline, chart, gallery, and table views to Bases, with inline editing, colors, rollups, field types, formulas, and CSV import. - This plugin has not been manually reviewed by Obsidian staff.
Prioritize
3 years ago by EloiMusk
Obsidian Plugin, to prioritize stuff in Obsidian
Prisma Calendar
9 days ago by Matej Vavro Productivity
Prisma turns any note with a date into a flexible planning system inside Obsidian. There are no rigid schemas or predefined structures — just your data, your rules, fully under your control. - This plugin has not been manually reviewed by Obsidian staff.
ProgressTracker
a year ago by Van Nam
A plugin that helps you track progress and manage tasks in your notes.
Project Manager
3 months ago by stepankropachev
This plugin has not been manually reviewed by Obsidian staff. Full-featured project management: stunning Gantt charts, Kanban boards, Table views, customizable fields, due date notifications.
Random To-Do
5 years ago by NatiAris
Pick a random todo item or a file with todo items
Relative Timestamps
2 years ago by Charles Young
RescueTime
3 years ago by Tatsuya Hayashi
A RescueTime integration plugin to view your activity logs in Obsidian.
Role Switch
6 months ago by Zafrem
Switch between different work roles (developer, writer, researcher, etc.) with intentional transitions and session tracking.
Send to Canvas
a year ago by wenlzhang
An Obsidian plugin that allows you to send tasks, blocks, and notes to Canvas files as plain text, links, and embeds.
Sheet Plus
23 days ago by ljcoder
Create Excel-like spreadsheets and easily embed them in Markdown.
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Simplest Todo
3 months ago by kintolayli
This plugin has not been manually reviewed by Obsidian staff. Minimalist task manager with automatic monthly archiving. Bilingual (RU/EN).
SolidTime Integration
a year ago by proniclabs
Obsidian SolidTime Integration Plugin
Stopwatch
5 years ago by Tokuhiro Matsuno
StoryLine
a month ago by Jan Sandström
Transform your vault into a powerful book planning and writing tool. Corkboard, KanbanBoard view, timeline, plotlines,character tracking, and more. - This plugin has not been manually reviewed by Obsidian staff.
Super Simple Time Tracker
4 years ago by Ellpeck
Multi-purpose time trackers for your notes!
Tag Timer
8 months ago by quantavil
The Tag Timer is a versatile plugin for Obsidian that allows you to seamlessly track the time you spend on specific tasks or sections within your notes.
Task Board
a year ago by Atmanand Gauns
An Obsidian plugin to view and manage your tasks from whole vault using much efficient boards using various methodologies.
Task Collector
3 months ago by ebullient
Change task status and collect tasks within a document using hotkeys and context menus.
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Task List Kanban
2 years ago by Chris Kerr
Task Marker
4 years ago by wenlzhang
An Obsidian plugin to change task status and append text with hotkeys and right-click context menu.
TaskChute Plus
3 days ago by hiroyaiizuka
Execute TaskChute that slots today's tasks, tracks projects, adds comments, and keeps you focused on now. - This plugin has not been manually reviewed by Obsidian staff.
Tasks
5 years ago by Clare Macrae and Ilyas Landikov (created by Martin Schenck)
Task management for the Obsidian knowledge base.
Things Link
4 years ago by @gavmn
Things3 Today
2 years ago by wudanyang6
Time Things
7 days ago by plasmabit
Show a clock in the corner. Track the total editing time of a note and the last time it was modified.
Timekeep
2 years ago by Jacobtread
Obsidian task time tracking
Timelog
8 months ago by Eddie Blundell
Time logging plugin for obsidian
TimeStamper
5 years ago by Martin Eder
A plugin for Obsidian to quickly insert customized date- and time-stamps to the currently active note
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
TODOseq
7 days ago by Stephen Cross
Lightweight keyword-based task tracker using Logseq style keywords.
TodoTxt
3 years ago by Mark Grimes
Obsidian plugin to manage todotxt files
Toggl Track
5 years ago by Maxime Cannoodt
A Toggl integration plugin for the popular knowledge base application Obsidian.
Track-a-Lot
2 years ago by Iulian Onofrei
This is a tracker plugin for Obsidian
Trello
5 years ago by Nathonius
An Obsidian Plugin that connects Trello cards to Obsidian notes.
Uncheck All
3 years ago by Shahar Har-Shuv
Obsidian plugin to uncheck all checkboxes in a file with one action
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
WakaTime
4 years ago by WakaTime
Obsidian.md plugin for automatic time tracking and metrics generated from your Obsidian usage activity.
Week Planner
4 years ago by Ralf Wirdemann
Yori Task
3 months ago by yorigo77
This plugin has not been manually reviewed by Obsidian staff. Task manager, week planner, year planner.
Yuhanbo Task
11 days ago by yuhanbo
一个简单易用的任务管理插件,支持任务创建、编辑、删除和状态管理,帮助您高效管理待办事项。 - This plugin has not been manually reviewed by Obsidian staff.