Task List Kanban

by Chris Kerr
5
4
3
2
1
Score: 64/100

Description

Category: Task Management

The Task List Kanban plugin streamlines task management in Obsidian by creating a dynamic kanban view that organizes tasks from your notes. Tasks are automatically added to the kanban board when formatted in the task list style, and users can assign them to specific columns using tags. The kanban view allows for efficient task management with features like drag-and-drop organization, task editing, archiving, and filtering based on tags. The plugin updates tasks both in the kanban and their original files, ensuring synchronization. Customizable columns and folder scopes make it adaptable to individual workflows, while its integration minimizes duplicate effort in managing and prioritizing tasks.

Reviews

No reviews yet.

Stats

103
stars
35,412
downloads
15
forks
769
days
5
days
19
days
48
total PRs
1
open PRs
21
closed PRs
26
merged PRs
126
total issues
17
open issues
109
closed issues
47
commits

Latest Version

19 days ago

Changelog

Features

  • Added command-palette and hotkey-bindable workflows for board and card management: create cards from anywhere, open current board settings, and run selected-card actions for done, archive, cancel, duplicate, and delete. Fixes #148 (9c5ab60, e56abd4)

  • Added new board creation from the dashboard, ribbon, and command palette, plus confirmed board deletion from dashboard card menus. Fixes #148 (5ecd311)

  • Added overdue and due-today counts to dashboard cards for boards using Tasks Plugin or Dataview due-date metadata, so the dashboard can show which boards need attention. Follow-up for #132 (9d327e3)

Bug Fixes

  • Removed a redundant dashboard button shown in the single-board state. (2af05e0)

README file from

Github

Task List Kanban

Task List Kanban is a free, open source Obsidian plugin that turns Markdown tasks from your vault into a kanban board. Tasks stay in their original files, and changes made from the board are written back to Markdown.

Use it to:

  • collect tasks from one folder, selected folders, or the whole vault
  • move tasks between columns with tags
  • manage multiple boards from a dashboard and board rail
  • edit, complete, cancel, archive, duplicate, and bulk-update tasks
  • filter by content, tag, file, or date with a single search query
  • save reusable views that combine filters, sorting, grouping, layout, and width
  • group tasks into swimlanes by file or tag, then flip group order to put the lanes you need first
  • sort tasks by file order, parsed task properties, or manual pinned order
  • display, sort, group, and edit Tasks Plugin or Dataview date metadata
  • keep nested Markdown blocks attached to their parent cards when you want subtasks

Task List Kanban Screenshot

Getting Started

Create a Board

Click the New Kanban board ribbon icon, run Create new kanban board from the command palette, or open the dashboard and choose New board. Each flow lets you choose the destination folder.

You can also right-click the folder where you want the board file, then choose New kanban.

Creating a new kanban

Dashboard And Board Rail

Open the dashboard from the board rail or run Show board dashboard while a kanban view is focused. The dashboard lists every board in the vault, shows task counts plus updated/opened timestamps, and lets you create or switch boards without hunting through files.

From the dashboard, right-click a board card to rename, hide, show, or delete that board. Delete asks for confirmation and moves the board file through Obsidian's trash flow. Drag cards to choose the dashboard order; hidden boards move under Other boards instead of becoming inaccessible.

When your vault has more than one board, the board rail gives one-click board switching. Drag rail items to reorder boards. In plugin settings, dock the rail on the left or across the top; the left rail can also be resized.

Add Tasks

Create Markdown tasks in any included file:

- [ ] Write release notes #this-week

Task List Kanban supports the standard Markdown task bullets -, *, and +.

Tasks without a column tag appear in Uncategorized. To place a task in a column, either add the column tag in Markdown or drag the task to that column on the board. Placement tags are hidden from task cards so the board stays clean.

Click Add new at the bottom of a column to create a task from the board. If a default or recently used task file is available, the input opens immediately; otherwise, choose a file first.

Board Configuration

Open board settings with the settings icon in the top-right corner.

Board settings inherit from plugin-wide board defaults unless the board has its own override. In the settings modal, inherited fields can be pinned to freeze the current board value, or reset so the board follows the defaults again. The command palette also includes Use current board settings as global defaults and Prune board settings that match the defaults for keeping older boards tidy.

Plugin settings include:

  • Board rail: choose whether the board rail docks left or top.
  • Board defaults: set default columns, status markers, scope, tag display, property behavior, and nested subtask behavior for boards that do not override those fields.
  • Default view: set plugin-wide defaults for flow direction and card width.
  • Global saved views: create reusable views available from every board.

Scope

Choose which files feed the board:

  • Same as board folder: files beside the kanban file.
  • Every folder: the whole vault.
  • Selected folders: specific vault-relative folders. The board's own folder is always included.

Use Excluded paths to omit directories or files after scope is applied. The board's own folder cannot be excluded directly, but its subdirectories can.

Columns

Use the Columns section to rename, color, remove, and reorder custom columns. Uncategorized and Done stay fixed at the top and bottom of the settings list, with separate visibility and name controls.

Column settings

Column matching options:

  • Name matching: a column named In Progress matches tags such as #InProgress, #in-progress, and #In-Progress.
  • Explicit tag matching: configure one or more required tags for a column. A column with status/active and project/alpha matches only tasks with both tags.
  • Status marker matching: configure a column to match an active checkbox marker such as unchecked [ ], in-progress [/], or blocked [!]. Moving a task into that column updates the checkbox marker.
  • Priority matching: configure a column to match Tasks Plugin or Dataview priority metadata when a property schema is enabled. Moving a task into that column writes the matching priority value.
  • Updating changed match rules: settings can optionally update existing tasks when a name-matched column is renamed, an explicit tag mapping changes, a status marker mapping changes, or a priority mapping changes.

Column display options:

  • Colors: add a hex color like #FF5733 to show a color bar on the column and its cards.
  • Width: set all columns between 200px and 600px.
  • Visibility: show Uncategorized and Done always, never, or only when non-empty.

Tag Display

Enable Consolidate tags in settings to move non-column tags to the card footer.

The Excluded tags setting hides configured tags from cards, tag grouping, and consolidated tag footers. A settings button can automatically exclude all tags mapped to active columns.

Layout

Flow direction controls how columns are arranged:

  • Left to right: horizontal board, scrolling right.
  • Right to left: horizontal board in reverse order.
  • Top to bottom: transposed board, with board columns as rows and cards flowing horizontally.
  • Bottom to top: transposed board in reverse row order.

Card width can be adjusted from the view controls between 200px and 600px.

Obsidian Tasks plugin / Dataview integration

Enable a Property schema in settings to read and write task metadata from the Obsidian Tasks plugin or Dataview inline fields.

Task List Kanban can display, sort, group, and edit metadata from either integration while keeping each task in its source Markdown format.

  • Obsidian Tasks plugin: due, scheduled, start, done, created, priority, and recurrence metadata.
  • Dataview: due, scheduled, start, done, completion, created, priority, repeat, and arbitrary inline fields.

The Show properties setting controls whether parsed metadata appears on task cards:

  • None: leave parsed properties inline as task text.
  • Pretty: show formatted property values, with Tasks plugin dates and priorities using familiar labels and icons.
  • Debug (JSON): show the raw parsed data for troubleshooting schemas and unusual task lines.

When the schema is Tasks Plugin or Dataview, task cards show a compact + Date control. Use it to set or clear due, scheduled, and start dates directly from the board. New tasks created from the board can include the same dates.

Date writes use the selected integration's native format:

- [ ] Send invoice 📅 2026-06-15 ⏳ 2026-06-16 🛫 2026-06-17
- [ ] Send invoice [due:: 2026-06-15] [scheduled:: 2026-06-16] [start:: 2026-06-17]

Completing an open task from the board adds a completion date when the selected schema supports it and the task does not already have one:

- [x] Send invoice ✅ 2026-06-15
- [x] Send invoice [completion:: 2026-06-15]

Existing completion dates are preserved. Reopening, moving, cancelling, archiving, or editing a task does not remove or rewrite historical completion metadata.

Nested Tasks And Source Blocks

Enable Treat nested tasks as subtasks to show only the root task as a card while keeping nested tasks and notes inside that card. Nested rows can be edited, status-cycled, added, deleted, and reordered from the card without turning each child task into its own board card.

When this mode is on, source-block actions stay together: moving, duplicating, deleting, or archiving the parent card operates on the owned nested Markdown block instead of only the first task line.

Task Status Settings

Task status visuals come from your active Obsidian theme or plugin CSS.

Status marker settings control how checkbox characters behave:

  • Status marker order: controls how status markers sort and group when using status as a parsed property.
  • Done markers: characters treated as complete. Default: xX.
  • Ignored markers: characters hidden from the board entirely. Default: empty.
  • Cancelled markers: characters used by cancel/restore. Default: -.
  • Status cycle sequence: characters used to advance the task status when clicking the checkbox on the board.

Examples:

  • xX recognizes [x] and [X] as done.
  • xX✓ also recognizes [✓].
  • ignored marker - hides [-] tasks.

Cancel and restore only change checkbox markers. If a cancelled marker is also configured as ignored or done, that marker setting determines whether the task is hidden or treated as complete.

Board Controls

Column Controls

  • Collapse: collapse columns from the board header; collapse state is saved.

Task Actions

  • Edit: click task text, edit inline, then click away or press Enter.
  • Move: drag a task to another column, or choose a column from the task menu.
  • Complete / Cycle Status: click the task checkbox to mark a task done and move it to Done. If a status cycle sequence is configured, clicking the checkbox will instead advance the task status through the specified sequence.
  • Cancel or restore: use the task menu to switch between cancelled and active.
  • Archive: archive tasks from the task menu or bulk menu. This marks open tasks done and adds the #archived tag.
  • Duplicate: duplicate a task directly below the original source line.
  • Open source file: click the file path or arrow icon on a card.
  • Add card: run Add card from the command palette to create a card on a visible board without first opening that board.

Sorting

Use the Sort dropdown in the board header to order tasks within each column:

  • File order: use natural order from Markdown files.
  • Task name: sort lexicographically by task text.
  • Property sorting: sort by parsed task properties such as dates or priorities when a property schema is enabled.
  • Manual: drag one task within a column to pin a custom order.

Manual sorting keeps pinned tasks together at the top of the column. Pinned cards show a pin marker; click it to unpin the task and return it to the file-order tail. When a task is first pinned, the plugin will add an Obsidian block link like ^abc123 to the source line unless one already exists, so the order survives text edits and reloads.

Manual drag reordering is available when the board is not grouped. When grouping is active, saved manual order still displays, but the Manual sort option is readonly until grouping is turned off because relative order would not be stable across different groupings.

Filters

The search bar above the board filters tasks with a single query. A query is a space-separated list of tokens, and a task must match every token:

Token Filters by Example
word or "quoted phrase" content contains the term (case-insensitive) fix, "big rocks"
tag:x or tag:x,y task has the tag; a comma list matches any listed tag tag:home,errand
file:x or file:x,y file path contains any listed entry (case-insensitive) file:projects
due:<$TODAY date property compared to a date due:<=2026-07-04

Details:

  • Everything is AND-ed: fix tag:home file:projects due:<$TODAY keeps tasks containing "fix", tagged home, in a file path containing "projects", due before today. There is no OR across tokens and no negation.
  • Repeated tag: tokens AND together, so tag:home tag:errand requires both tags, while tag:home,errand matches either. Repeated file: tokens merge into one "any of" list.
  • Quote values containing spaces: file:"weekly notes".
  • Date tokens use a date-typed property key from the active property schema (such as due, scheduled, start, done, created) with an operator (<, <=, =, >=, >) and either a YYYY-MM-DD date or $TODAY, which re-evaluates at midnight. Tasks without the referenced property are never hidden by a date token.
  • A token that doesn't parse as a filter (an unknown prefix like note: or a bad date value) is treated as plain content text.

Filtering applies when you press Enter. As you type, suggestions appear for the token under the caret — tag names, file paths, date keys and operators, and query-only saved view names. The sliders icon expands a structured editor under the bar; it and the bar are two views of the same query, so edits in either stay in sync. Filters persist per board.

Saved views live in the expanded view controls. A saved view can capture the current filter, sort, grouping, flow direction, and card width. Save one with an optional name, click it to apply its stored view properties, or delete a board-local saved view with the × control. Query-only saved views also appear as search bar suggestions, so the older saved-filter workflow is still there in a more general form. Global saved views are read-only from the board and can be edited from plugin settings.

Bulk Actions

Each column header has a Done / Select toggle.

  • Done mode: cards complete tasks.
  • Select mode: cards select tasks for bulk actions.

After selecting tasks, use the column bulk menu to move, complete, cancel, restore, archive, duplicate, or delete them. Selected-card command palette actions are also available for marking done, cancelling, archiving, duplicating, and deleting. Dragging one selected task moves all selected tasks in that column.

Grouping And Swimlanes

Use Group by in the board header to split tasks into swimlanes.

  • In horizontal layouts, groups appear as board-wide swimlane rows.
  • In vertical layouts, groups appear as columns across the top of the transposed grid.
  • Use the group direction control to switch grouped boards between ascending and descending group order.
  • Dragging tasks between swimlanes updates the relevant file, tag, or property.

Group and column headers stay visible while scrolling grouped boards, making large swimlane views easier to scan.

Group By File

Tasks are grouped by source Markdown file.

Group By Tag

Tasks are grouped by tag, optionally limited to a configured prefix.

  • Use the include list in the grouping controls to show only specific tag swimlanes. Included swimlanes keep the configured order, and tasks without an included grouping tag appear in Unassigned.
Group By Property

When a Tasks Plugin or Dataview property schema is enabled, tasks can also be grouped by parsed properties. Date groups support Combine past dates so overdue dates can collapse into one past bucket.

Saved views replace the older saved grouping workflow and can reuse common grouping setups, including tag prefixes, include lists, property groups, group direction, and the surrounding layout.

Screenshot Refresh Candidates

The current README still uses older screenshots. Useful new or replacement screenshots would be:

  • the main board screenshot, showing current card footers, properties, and the + Date control
  • the board dashboard and rail, showing board counts, updated/opened metadata, and Other boards
  • the saved views controls, showing combined filter/sort/group/flow/width saved views
  • plugin settings, showing board defaults, default view, global saved views, and board rail dock
  • the task date editor, showing due, scheduled, and start date inputs on a card
  • a grouped Top to bottom or Bottom to top board, showing the transposed grid with board columns as rows and groups across the top
  • the Task properties settings section, showing Property schema and Show properties
  • the Status markers settings section, showing status marker order alongside done, ignored, and cancelled markers

Development

Prerequisites

  • Node.js
  • npm
  • Obsidian for manual testing

Setup

npm install
npm run dev

Build output is written to the repository root for Obsidian plugin loading.

Quality Checks

npm run build
npm test

npm run build runs TypeScript checking and a production ESBuild bundle. npm test runs the Vitest suite.

Manual Testing

Deploy to the vendored test vault:

./tools/deploy_for_manual_test.sh

This copies the built plugin into test-vaults/obsidian-plugin-dev/.obsidian/plugins/task-list-kanban/. You can pass a target directory to deploy somewhere else.

Release

  1. Bump the version:

    npm run version
    
  2. Commit the version changes, create an annotated tag, then push main and the tag.

  3. Wait for GitHub Actions to create the draft release with built assets.

  4. Edit and publish that draft from the releases page.

Do not create a release draft manually with gh release create or the GitHub UI; the automated draft is the one with the correct assets.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
PARA Shortcuts
5 years ago by gOAT
This plugin serves usefull commands to setup and manage your knowledge using the PARA method.
Auto Note Mover
4 years ago by faru
This is a plugin for Obsidian (https://obsidian.md).
Big Calendar
4 years ago by Boninall
Big Calendar in Obsidian, for manage your events in a day/week/month and see agenda too!
Things Link
4 years ago by @gavmn
Daily Notes Viewer
4 years ago by Johnson0907
Obsidian Google Tasks
4 years ago by YukiGasai
Add Google Tasks inside Obsidian
Folder Focus Mode
4 years ago by grochowski
Focus file explorer on chosen folder and its files and subdirectories, while hiding all the other elements.
Bellboy
4 years ago by Shaked Lokits
Opinionated file structure manager for the Obsidian knowledge base.
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Agile Task Notes
4 years ago by BoxThatBeat
This Obsidian plugin integrates your TFS data from either Jira or Azure Devops
Janitor
4 years ago by Gabriele Cannata
Performs various maintenance tasks on the Obsidian vault
Week Planner
4 years ago by Ralf Wirdemann
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.
Daily Note Outline
4 years ago by iiz
Add a custom view which shows outline of multiple daily notes with headings, links, tags and list items
MAKE.md
4 years ago by MAKE.md
Project Garden
4 years ago by Ben Goosman
Todo sort
4 years ago by Ryan Gomba
A plugin for Obsidian that sorts todos within a note
Checklist Reset
4 years ago by Luke Hansford
Add a command to reset the state of any checklists in a document in Obsidian
Boost Link Suggestions
4 years ago by Jacob Levernier
An Obsidian (https://obsidian.md) plugin for altering the order of inline link suggestions by link count and manual boosts.
File Color
4 years ago by ecustic
An Obsidian plugin for setting colors on folders and files in the file tree.
File chucker
4 years ago by Ken Lim
Contacts
4 years ago by vbeskrovnov
With this plugin, you can easily organize and manage your contacts within Obsidian. Simply create a note with contact information and use the plugin's features to quickly search, and sort through your contacts. Contacts plugin also helps you to remember birthdays of your contacts and keeps track of the last time you met them.
Order List
4 years ago by Henry Gustafson
Task Marker
4 years ago by wenlzhang
An Obsidian plugin to change task status and append text with hotkeys and right-click context menu.
Pending notes
4 years ago by Ulises Santana
Obsidian plugin for searching links without notes in your vault.
Note aliases
3 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Tasks Calendar Wrapper
3 years ago by zhuwenq
This plugin currently provides a timeline view to display your tasks from your obsidian valut, with customizable filters and renderring options.
Brainframe
3 years ago by pedersen
Prioritize
3 years ago by EloiMusk
Obsidian Plugin, to prioritize stuff in Obsidian
File Order
3 years ago by lukasbach
Obsidian plugin to reorder files with drag-and-drop by customizing a number-prefix in the filenames
Dynamic Timetable
3 years ago by L7Cy
Calculate the estimated completion time from the estimated task time and dynamically create a timetable.
Pivotal Tracker Integration
3 years ago by jondeates
Linked Data Vocabularies
3 years ago by kometenstaub
Add linked data to the YAML of your Obsidian notes.
Custom State for Task List
3 years ago by Okami Wong
A plugin for Obsidian to define your own states for task items.
Plugin Manager
3 years ago by ohm-en
Allows better management of Obsidian.md plugins.
TodoTxt
3 years ago by Mark Grimes
Obsidian plugin to manage todotxt files
Note archiver
3 years ago by thenomadlad
Due When
3 years ago by Andy Baxter
An Obsidian plugin which gives shortcuts to insert set due dates
ZettelGPT
3 years ago by Overraddit
Turbocharge Your Note-taking with AI Assistance
Periodic PARA
3 years ago by YiBing Lin
Obsidian Plugin for combining P.A.R.A with Periodic Notes(LifeOS for Obsidian)
TagMany
3 years ago by Joshua Martius
Tag many Notes at once in Obsidian
GTD No Next Step
3 years ago by Tobias Davis
Obsidian plugin for GTD workflow, badge projects with no next step.
At People
3 years ago by Tobias Davis
Obsidian plugin to use the familiar @ notation to cross link to people.
Uncheck All
3 years ago by Shahar Har-Shuv
Obsidian plugin to uncheck all checkboxes in a file with one action
Potato Indexer
3 years ago by LoyalPotato
Obsidian plugin to generate index based on your selection
Expiration-Date-Tracker
3 years ago by Marius Wörfel
Opsidian plugin to keep track of all expiration dates, for example, for your groceries.
Tag Page
3 years ago by Matthew Sumpter
An Obsidian plugin to create and manage dedicated Markdown pages for tags, with features to automatically populate and refresh content based on user-defined settings.
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Homework Manager
3 years ago by Kadison McLellan
An Obsidian plugin that keeps track of homework through a to-do list.
Improved Random Note
3 years ago by ShockThunder
Automatic Tags
3 years ago by Jamalam
Add tags to new notes automatically based on their path
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.
Sort Frontmatter
3 years ago by Kanzi
Sort frontmatter automatically
Feeds
3 years ago by LukeMT, pashashocky, madx
Magic feeds dataview query for obsidian
Tag Buddy
3 years ago by David Fasullo
Unlock powerful tag editing features in Reading Mode. Add, remove and edit tags across your vault. Use tag inboxes to level up any workflow with a powerful idea assembly line.
Key-Value List
3 years ago by Christian Wannerstedt
Obsidian plugin which makes it easy to turn lists into formatted key value lists
Desk
3 years ago by David Landry
A desk for obsidian
TickTickSync
3 years ago by thesamim
Bidirectional synchronization between Obsidian and TickTick. Mobile compatible.
Highlight Helper
3 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
YouTube Template
3 years ago by sundevista
📺 A plugin that would help you to fetch YouTube videos data into your vault.
Extended Task Lists
3 years ago by joeriddles
Extended Markdown support for task lists in Obsidian.
Single File Daily Notes
2 years ago by Pranav Mangal
An Obsidian plugin to create and manage daily notes in a single file
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Broken Links
2 years ago by ipshing
Folders to Graph
2 years ago by Ratibus11
Enhance your Obsidian graph view with folders and headings structure!
Track-a-Lot
2 years ago by Iulian Onofrei
This is a tracker plugin for Obsidian
Ego Rock
2 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
Pomodoro Planner
2 years ago by Onur Nesvat
Things3 Today
2 years ago by wudanyang6
Grind Manager
2 years ago by dromse
Gamify your task management with rewards system, craft your tasks by tags.
Amazing Marvin Integration
2 years ago by Cloud Atlas
Interoperability between Obsidian and Amazing Marvin
Cluster
2 years ago by Lorens Osman
Cluster plugin mainly designed to simplify the process of note clustering on mobile devices and work well on PCs ether
Personal OS
2 years ago by A.Buot
Checkbox Sounds
2 years ago by yasd251
Adds a nice completion sound for checkboxes when ticked in Obsidian
Timekeep
2 years ago by Jacobtread
Obsidian task time tracking
Note Chain
2 years ago by ZigHolding
Package my frequently used tools, highly personal plugins.
Checkbox Time Tracker
2 years ago by UD
Checkbox Time Tracker for Obsidian
doing
2 years ago by rooyca
What was I doing?
Index Notes
2 years ago by Alejandro Daniel Noel
Plugin that automatically generates index blocks based on tags
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
Journal Folder
2 years ago by Charl Fourie
Lite Gallery
2 years ago by Jordan Poles
VirtFolder
2 years ago by mr.grogrig
Creating a hierarchical structure like Luhmann's Zettelkasten
Auto Folder Collapse
2 years ago by Dario Casciato
A plugin for Obsidian that automatically collapses all child folders when you collapse a parent folder. This helps keep your file explorer organized and clutter-free.
Journaling
2 years ago by Ordeeper
View daily notes in a journal-like format, similar to Logseq. It enhances note organization and facilitates better reflection by consolidating daily notes into a continuous journaling view.
Morgen Tasks
2 years ago by Morgen AG
Dangling links
6 years ago by Graydon Hoare
obsidian plugin for displaying dangling links
Checklist
5 years ago by delashum
Vantage - Advanced search builder
6 years ago by ryanjamurphy
Vantage helps you build complex queries using Obsidian's native search tools.
Note Folder Autorename
5 years ago by PJ Eby
Obsidian plugin to support folder-overview notes by keeping their folder in sync
Consistent attachments and links
5 years ago by Dmitry Savosh
Obsidian plugin. Move note with attachments.
Open cards in imdone.
5 years ago by saxmanjes
Open cards in imdone from obsidian
Unique attachments
5 years ago by Dmitry Savosh
Obsidian plugin. Renames attachments, making their names unique.
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Org Mode
5 years ago by ryanpcmcquen
Add Org Mode support to Obsidian.
Tasks
5 years ago by Clare Macrae and Ilyas Landikov (created by Martin Schenck)
Task management for the Obsidian knowledge base.
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Amazing Marvin
5 years ago by Shirayuki Nekomata
Simple plugin for Amazing Marvin
Embedded Code Title
5 years ago by tadashi-aikawa
It is an Obsidian plugin which can embeds title to code blocks.
Random To-Do
5 years ago by NatiAris
Pick a random todo item or a file with todo items
Longform
5 years ago by Kevin Barrett
A plugin for Obsidian that helps you write and edit novels, screenplays, and other long projects.
Trello
5 years ago by Nathonius
An Obsidian Plugin that connects Trello cards to Obsidian notes.
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
Archiver
5 years ago by ivan-lednev
Archive completed tasks in your Obsidian vault (plus other org-mode-like features)
Habitica Sync
5 years ago by Leoh and Ran
This is a under-development Obsidian Plugin for Habitica
CardBoard
5 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
Structured
5 years ago by dobrovolsky
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
Nav Link Header
2 years ago by ahts4962
Display navigation links at the top of the notes in Obsidian
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
Another Simple Todoist Sync
2 years ago by eudennis
Obsidian.md plugin to integrate with Todoist app.
downloadPDF
2 years ago by Frieda
Hierarchical Backlinks
2 years ago by Jason Motylinski
Plugin which displays backlinks as a tree structure based on file paths
Nav Weight
2 years ago by shu307
A simple plugin designed to sort files in navigation based on markdown frontmatter (also known as metadata) for Obsidian.
MOC Link Helper
2 years ago by Bogdan Codreanu
This obsidian plugins allows you to quickly see which notes you need to include in your MOC.
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Automatic Renumbering
2 years ago by Omri Levi
Automatically reorders checklists and numbered lists as you edit them.
Bottom to Top
2 years ago by Henry Gustafson
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.
Beautiful Contact Cards
2 years ago by Seth Tenembaum
A plugin for the Obsidian text editor which renders "contact" code blocks with tappable links for phone, social media, etc.
Proletarian Wizard Task Manager
2 years ago by Charles Feval
Obsidian plugin ot manage todos and projects directly from your notes.
Instant Above Divider
2 years ago by SedationH
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Folder Links
2 years ago by Stefan Rausch
Obsidian Plugin that enables using links to folders.
Auto File Organizer
2 years ago by mofukuru
Obsidian plugin: Automatically organizes files into folders based on their extensions.
Mass Create
2 years ago by vellikhor
Create large quantities of notes easily at one time.
Abbrlink
2 years ago by Q78KG
BuJo Bullets
2 years ago by Will Olson
Alternate checkbox types for Obsidian to support Bullet Journal bullets
Dynamic Outline
2 years ago by theopavlove
Adds a customizable GitHub-like floating table of contents to Obsidian.
Clipper Catalog
2 years ago by Greg K.
A catalog view that provides a powerful interface for all your clipped web articles and content. Easily organize, search, and manage your web clippings within your vault.
Recent Notes
2 years ago by Kamil Rudnicki
Recent Notes Plugin for Obsidian
Missing Link File Creator
2 years ago by Lemon695
The plugin creates both missing links and the corresponding files.
Current File Tags
2 years ago by Trung Tran
Goal Tracker
2 years ago by Ben Rotholtz
Kikijiki Habit Tracker
a year ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
WhatsApp backup importer
a year ago by Luigi Cerone
Obsidian plugin that allows you to import exported WhatsApp chat archives (in .zip format) into your vault.
Fold Properties By Default
a year ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
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.
Vault File Renamer
a year ago by Louan Fontenele
Vault File Renamer: Automatically standardizes file names to GitHub style (lowercase, no accents, only -, ., _) while preserving folder structure and file contents.
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Asana
a year ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Content Cards
a year ago by leo
Insert content cards in Markdown, such as timeline, highlightblock, target card, book information card, music information card, movie information card, photoes ablum, business card, content subfield, countdown, SWOT,BCG.
Tab Group Arrangement
a year ago by situ2001
Arrange the tab groups of Obsidian in a more flexible way
Kanban Status Updater
a year ago by Ankit Kapur
Obsidian plugin that automatically updates the note property when card is moved to a column.
ProgressTracker
a year ago by Van Nam
A plugin that helps you track progress and manage tasks in your notes.
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.
Kanban Bases View
4 months ago by I. Welch Canavan
A kanban-style drag-and-drop custom view for Bases.
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).
Yori Task
3 months ago by yorigo77
This plugin has not been manually reviewed by Obsidian staff. Task manager, week planner, year planner.
TaskNotes
a month ago by callumalpass
Note-based task management with calendar, pomodoro and time-tracking integration.
Sheet Plus
9 days ago by ljcoder
Create Excel-like spreadsheets and easily embed them in Markdown.