Live Life Recording

by goryugocast
5
4
3
2
1
Score: 54/100

Description

The LLR plugin records task start times, finish times and day flow directly in Markdown, so your history stays readable and portable instead of living in a separate database. Its main Toggle Task command handles task creation, start and completion in one flow, while inline timestamps, estimates and durations stay editable as plain text. It also supports note-based routines with repeat rules in YAML frontmatter, routine insertion into daily notes and a sidebar Summary View for tracking completed, running and upcoming work. On mobile, checkbox gestures expose the same workflow with short and long press actions. The plugin also includes an experimental spaced repetition mode for regular notes, but its main focus is lightweight task recording and routine execution.

Reviews

No reviews yet.

Stats

5
stars
12,682
downloads
3
forks
77
days
34
days
34
days
1
total PRs
0
open PRs
1
closed PRs
0
merged PRs
1
total issues
0
open issues
1
closed issues
187
commits

RequirementsExperimental

  • Obsidian 1.7.2 or later

Latest Version

a month ago

Changelog

Highlights

  • Routine section values now accept a broad range of author-friendly forms: YAML arrays, comma/space/slash-separated strings, full-width separators, mixed arrays and strings, and common clock notation such as 7:00 or 午後7時30分.
  • Multiple values still expand one routine into one task line per section while keeping every line linked to the same routine note.

Improvements and fixes

  • Duplicate section values are collapsed and invalid values are ignored consistently across all accepted forms.
  • The frontmatter specification, README, quick manual, cheat sheet, and UI specification now describe the flexible syntax.

Compatibility

  • Minimum Obsidian version remains 1.7.2.
  • Desktop and mobile builds are included.

Full Changelog: https://github.com/goryugocast/llr/compare/0.4.0...0.4.1

README file from

Github

LLR — Live Life Recording

Release License: MIT Obsidian

English site: https://goryugo.com/en/llr/ 日本語サイト: https://goryugo.com/topics/llr

An Obsidian plugin that records task start times, finish times, and daily flow directly in Markdown. One command — Toggle Task — covers create, start, and finish. No external database, no lock-in. Uninstall anytime; your records stay as plain text.

Toggle Task demo


Why LLR?

There are many task plugins for Obsidian. LLR is different in four specific ways:

  • Markdown is the only source of truth. Start / finish times, estimates, actuals all live in the task line itself. No sidecar JSON, no separate DB. You can grep your history.
  • One verb, three actions. Toggle Task creates, starts, and finishes — no separate commands to remember. Long-press and Adjust-Time fill in the rest.
  • Routines as plain notes. One note per routine under a routine/ folder. Repeat patterns are written in human-readable shorthand (e.g. every 3 days from completion or every week on mon). Completion auto-advances next_due.
  • AI-friendly by design. The full specification lives in docs/ as ~20 Markdown files. Point any AI at the folder and it can answer "how do I…?" without you reading manuals.

Spend your attention on recording, not on learning the tool.


Install

  1. Open Settings → Community Plugins → Browse
  2. Search for "LLR" and install
  3. Enable LLR

BRAT (latest beta)

  1. Install and enable the BRAT community plugin
  2. In BRAT settings, choose Add Beta plugin and enter goryugocast/llr
  3. Enable LLR in community plugins

Requires Obsidian 1.7.2 or later.


Quick Start

All you need to learn first is Toggle Task:

Step Action Result
1 Run Toggle Task on an empty line - [ ] appears
2 Run Toggle Task again - [/] 09:00 - (start time inserted)
3 Run Toggle Task once more - [x] 09:00 - 09:28 (28m) (elapsed time computed)

That's it. The record is just a Markdown checkbox — edit timestamps by hand any time and LLR recalculates.

LLR avoids "fighting" normal editing. Auto-corrections only fire when you trigger them via commands or checkbox gestures, never on idle text changes.

See the cheatsheet for a quick reference (includes a "what do I do when…?" reverse-lookup table).


Features

Task line grammar

State Format
Unstarted - [ ] HH:mm Task name (estimate)
Running - [/] HH:mm Task name HH:mm - (estimate)
Done - [x] HH:mm Task name HH:mm - HH:mm (est > actual)

Estimates accept 30, 1.5h, 45m, 30 min — written inline in parentheses or as a bare token at the end.

Inline markers (full reference: recording format spec):

  • @done — for routines with start_before, mark "this occurrence is already done" while the task is still in its pre-window.
  • @MMDD / @M/D / @2026-05-30 — reschedule a routine to a specific date.
  • Processed markers normalize to →done / →YYYY-MM-DD so they're not re-fired.

Commands (10 total)

The three you'll use most:

Command What it does
Toggle Task Create → Start → Finish (the main verb)
Adjust Time (1m) Smart 1-minute nudge: with one timestamp on the line, the start time moves back 1m; with two, the end time does. Completed lines recompute duration automatically.
Open Summary View Show today's progress in the sidebar

Auxiliary commands:

  • Start Task / Complete Task / Start Task at Previous Time
  • Duplicate Task / Skip Task
  • Reschedule Routine / Insert Routine

A few more actions (interrupt, retro-complete, reset-keeping-estimate, fix duration drift in bulk) exist internally but are not exposed in the command palette — details in the commands spec below.

Full reference: commands spec.


Routines

Each note under a routine/ folder is one routine. Define repeat behavior in the YAML frontmatter, then run Insert Routine to expand today's due routines into your daily note.

---
estimate: 15            # minutes
section: 700            # groups under the 7:00 section header
repeat: every week on mon wed fri
next_due: 2026-05-25
start_before: 2         # show 2 days before next_due
---

To place the same routine in more than one part of the day, provide multiple section values (a comma-separated string or an array). LLR expands one task line per value while keeping every line linked to the same routine note:

section: 700, 1900      # insert under both the 7:00 and 19:00 section headers

next_due is optional for repeating routines. When it is absent, LLR derives the first effective due date from repeat; the stored next_due is created only after completion.

Future daily notes are safe to preview: LLR can show which routines belong there, but it will not advance next_due or consume @done / reschedule markers until that date is current.

A few repeat patterns:

  • 1 / 3 — every day / every 3 days
  • every week on mon / every 2 weeks on mon wed fri — weekly
  • every month on 1 / every month on 5,10,15 / every month on last day — monthly by day
  • every month on 2nd sat / every month on last sat — monthly by Nth weekday
  • every 3 days from completion / every 5 days from due — choose the anchor
  • none / no / 0 — stop

Japanese shorthand (毎週月曜, 毎月1日, 第2土曜日, etc.) is also accepted for users who prefer it.

Once a routine is completed, next_due updates automatically. The full "is this routine due today?" decision tree is in the routine engine spec §3.6.

Insert Routine demo


SRS (experimental)

Spaced repetition for regular notes — reread things you want to remember, at intervals that grow on their own. No grading, no flashcards: check it off and the interval expands.

  1. Enable SRS growth (experimental) in settings (off by default)
  2. Add repeat: 1 to the frontmatter of any note outside the routine/ folder — it can live anywhere in your vault
  3. Due notes appear at the bottom of the daily-note routine insertion, up to SRS daily limit per day (default 3; extras carry over)
  4. Completing a note pushes next_due forward and multiplies repeat by 2–3×, so a note you keep completing drifts from daily to weekly to monthly

If you complete a note late but still found it worth rereading, the elapsed days become the growth base — the same idea as Anki's handling of overdue cards. To stop reviewing a note, remove repeat (or set it to 0). To make it a daily habit instead, move it into routine/.

Details: SRS spec.


Summary View

Run Open Summary View for a sidebar overview of the day.

  • Tasks stacked: completed → running → upcoming
  • EST. TOTAL and EST. FINISH updated dynamically as the day progresses
  • Tasks tagged summary_role: sleep are excluded from the main totals; a separate sleep-aware finish time is shown alongside
  • A running task remains visible even when it sits below the sleep boundary, but it stays excluded from totals and is grouped with the other running tasks
  • Click a row to jump to that line in the editor; click a [[wikilink]] to open the linked note
  • Section dividers driven by the Routine Sections setting (time + label pairs)

Details: sidebar summary view spec.


Mobile

Register Toggle Task in Obsidian's Mobile Toolbar (the icon row above the keyboard).

  • Short press on a checkbox — Toggle Task (create / start / finish)
  • Long press on a checkbox (~450 ms) — auxiliary actions (start aligned to the previous completion's end time, or revert one step while keeping the estimate)
  • Haptic feedback included; long-press absorbs the subsequent click to avoid double-firing
  • Enable Large Mobile Checkboxes in settings for a bigger tap target
  • Checkbox override applies only inside a daily-note Markdown editor. Normal notes, non-Markdown views, sidebars, and modals keep Obsidian's standard behavior.

Status Bar

Shows three values:

  • total — sum of today's task estimates
  • cursor — sum from the cursor position onward
  • end — current time + remaining estimates = projected finish time

Only end-of-line time tokens are counted, so numbers in the middle of text don't get accidentally aggregated.


Not a goal

LLR aims to make "writing it down in Markdown" feel cheap and natural. The following are intentionally out of scope:

  • ⛔ Timers, alarms, notifications (use the OS or another plugin)
  • ⛔ Calendar integration
  • ⛔ Statistics, charts, dashboards (the canonical record is Markdown; analyze it with separate tools)
  • ⛔ Heavyweight dedicated views (the sidebar Summary is the cap)

The full "can it do X?" list is in implementation summary §3.


Documentation

Topic Link
Index (start here) docs/index.md
Quick manual docs/クイックマニュアル.md
Cheatsheet (with reverse lookup) docs/チートシート.md
Changelog docs/CHANGELOG.md
Design philosophy docs/specs/設計思想.md
Public site (EN) https://goryugo.com/en/llr/
Public site (JA) https://goryugo.com/topics/llr

The docs/ folder is structured to be fed to an AI assistant. Drop it into a Cursor / Claude / ChatGPT project to ask questions about behavior. Most spec files are written in Japanese, but AI tools translate transparently on the fly.


Development

npm install
npm run dev          # watch build
npm run build        # production bundle (main.js)
npm run build:sync   # bundle + sync to a local Obsidian vault
npm run lint         # eslint
npm test             # vitest (watch)
npx vitest run       # vitest (one-shot)

To cut a release, push a semver tag (e.g. 0.2.0). The .github/workflows/release.yml workflow builds, runs lint and tests, attests the artifacts, and creates a GitHub Release automatically.

Issues / Feedback

  • Bug reports and feature requests: GitHub Issues
  • Requests that fall under "Not a goal" above may be politely declined.

License

MIT

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
TimeStamper
5 years ago by Martin Eder
A plugin for Obsidian to quickly insert customized date- and time-stamps to the currently active note
Pinboard Sync
5 years ago by Mathew Spolin
Obsidian plugin to sync Pinboard.in links to Daily Notes
Big Calendar
5 years ago by Boninall
Big Calendar in Obsidian, for manage your events in a day/week/month and see agenda too!
Things Link
5 years ago by @gavmn
Daily notes opener
4 years ago by Reorx
Easily open daily notes and periodic notes in new pane; customize periodic notes background; quick append new line to daily notes.
Daily Notes Viewer
5 years ago by Johnson0907
Obsidian Google Tasks
4 years ago by YukiGasai
Add Google Tasks inside Obsidian
Upcoming
4 years ago by Charlie Chao
Show upcoming daily notes in their own panes.
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
Super Simple Time Tracker
4 years ago by Ellpeck
Multi-purpose time trackers for your notes!
Week Planner
4 years ago by Ralf Wirdemann
Repeat
4 years ago by Andre Perunicic
Review notes using periodic or spaced repetition.
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
WakaTime
4 years ago by WakaTime
Obsidian.md plugin for automatic time tracking and metrics generated from your Obsidian usage activity.
Checklist Reset
4 years ago by Luke Hansford
Add a command to reset the state of any checklists in a document in Obsidian
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.
Obsidian-compatible Watcher for ActivityWatch
4 years ago by Grimmauld
Obsidian plugin to track user activity with ActivityWatch
Journal Review
3 years ago by Kageetai
Review your daily notes on their anniversaries, like "what happened today last year"
Brainframe
3 years ago by pedersen
Prioritize
3 years ago by EloiMusk
Obsidian Plugin, to prioritize stuff in Obsidian
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
Custom State for Task List
3 years ago by Okami Wong
A plugin for Obsidian to define your own states for task items.
TodoTxt
3 years ago by Mark Grimes
Obsidian plugin to manage todotxt files
Due When
3 years ago by Andy Baxter
An Obsidian plugin which gives shortcuts to insert set due dates
GTD No Next Step
3 years ago by Tobias Davis
Obsidian plugin for GTD workflow, badge projects with no next step.
Waka time box
3 years ago by complexzeng
Uncheck All
3 years ago by Shahar Har-Shuv
Obsidian plugin to uncheck all checkboxes in a file with one action
Reflection
3 years ago by Brandon Boswell
An Obsidian Plugin for seeing daily and weekly notes from this day in years past.
Auto Journal
3 years ago by Evan Bonsignori
Opinionated journaling automation like daily notes but with backfills for the days that you didn't open Obsidian.
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
Homework Manager
3 years ago by Kadison McLellan
An Obsidian plugin that keeps track of homework through a to-do list.
RescueTime
3 years ago by Tatsuya Hayashi
A RescueTime integration plugin to view your activity logs in Obsidian.
Daily Note Pinner
3 years ago by LukeMT
Pins the daily note of the day and unpins other daily notes in Obsidian
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.
ManicTime
3 years ago by Finkit d.o.o.
Single File Daily Notes
3 years ago by Pranav Mangal
An Obsidian plugin to create and manage daily notes in a single file
Nested Daily Todos
3 years ago by Thomas Brezinski
A plugin for Obsidian will parse previous Daily Notes for incomplete todos and add them to today's Daily Note. It supports grouping the todos by section and supports alternative checkbox states and nested todos.
Daily note creator
3 years ago by Mario Holubar
Automatically creates missing daily notes.
Fastimer
3 years ago by vkostyanetsky
Intermittent fasting tracker plugin for Obsidian
Canvas Daily Note
3 years ago by Andrew McGivery
A plugin for Obsidian that allows you to add a daily note node to the canvas that will always show todays note.
Templated daily notes
3 years ago by digitorum
Allow to create templayted daily note in specific folder
Task list
3 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Track-a-Lot
3 years ago by Iulian Onofrei
This is a tracker plugin for Obsidian
Ego Rock
3 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
Pomodoro Planner
3 years ago by Onur Nesvat
Daily Note Navbar
3 years ago by Karsten Finderup Pedersen
Adds a daily note navbar to quickly navigate between sequential daily notes in Obsidian.
Things3 Today
3 years ago by wudanyang6
Telegram Inbox
2 years ago by icealtria
Receive messages from Telegram bots and add them to Obsidian's daily note.
Foodiary
2 years ago by vkostyanetsky
Food tracker plugin for Obsidian
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
Daily Prompt
2 years ago by Erl-koenig
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
Future Dates
2 years ago by Dmitry Manannikov
Checkbox Time Tracker
2 years ago by UD
Checkbox Time Tracker for Obsidian
Memos Sync
2 years ago by RyoJerryYu
Syncing Memos to Obsidian daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.
Relative Timestamps
2 years ago by Charles Young
Task List Kanban
2 years ago by Chris Kerr
doing
2 years ago by rooyca
What was I doing?
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Everyday Classical Music
2 years ago by the flying markhor
Obsidian Plugin: Enhance your daily notes with the timeless elegance of classical music. Have a great day with the company of beautiful melodies!
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
Geulo
2 years ago by Junyoung Bang
Geulo — an Obsidian plugin for pulling and syncing your liked YouTube videos to your Obsidian vault.
Daily Note Collector
2 years ago by Adar Butel
An Obsidian plugin that adds links to new notes to your daily note.
Morgen Tasks
2 years ago by Morgen AG
Calendar
6 years ago by Liam Cain
Simple calendar widget for Obsidian.
Review
6 years ago by ryanjamurphy
Add the current note to a future daily note to remember to review it.
Rollover Daily Todos
6 years ago by Matt Sessions
An obsidian plugin that rolls over todo items from the previous daily note
Things Logbook
6 years ago by Liam Cain
Sync your Things 3 Logbook with Obsidian
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.
Stopwatch
5 years ago by Tokuhiro Matsuno
Tasks
5 years ago by Clare Macrae and Ilyas Landikov (created by Martin Schenck)
Task management for the Obsidian knowledge base.
Grandfather
5 years ago by Danny Hernandez
A simple Obsidian plugin to display the time and date on the status bar
Amazing Marvin
5 years ago by Shirayuki Nekomata
Simple plugin for Amazing Marvin
Random To-Do
5 years ago by NatiAris
Pick a random todo item or a file with todo items
Toggl Track
5 years ago by Maxime Cannoodt
A Toggl integration plugin for the popular knowledge base application Obsidian.
Daily Named Folder
5 years ago by Nemo Andrea
Like daily note, but nested in a daily folder and some more improvements
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
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
Another Simple Todoist Sync
2 years ago by eudennis
Obsidian.md plugin to integrate with Todoist app.
Open with Natural Language Dates
2 years ago by Charlie Chao
Quickly open a daily note using natural language. Requires "Natural Language Dates" plugin to work.
Daily notes calendar
2 years ago by bartkessels
Quickly navigate your vault using a calendar view, this plugin allows you to create and navigate to periodic notes and notes that are created on a specific date.
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Fetch Prayer Times
2 years ago by Ecys
Fetches times from Aladhan API and inserts into a table.
Focus Time
2 years ago by AstraDev
Focus Time is a plugin that helps you track how much time you spend on each note.
Goal Tracker
2 years ago by Ben Rotholtz
Kikijiki Habit Tracker
2 years ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
Organized daily notes
2 years ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Task Mover
2 years ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Asana
2 years ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Previous Daily Note
2 years ago by Marcos Talau
Plugin for Obsidian that opens the previous daily note
Daily Note Metrics
2 years ago by Andre-Diamond
Obsidian Plugin that parses Daily Notes and uses data to create charts
Multiple Daily Notes
2 years ago by Vab Kapoor
Obsidian plugin for adding multiple daily notes, with some extra configurations too.
Chronotyper
2 years ago by BambusControl
Obsidian plugin for tracking note edit time
Wordflow Tracker
2 years ago by LeCheenaX
Track the changes and stats of your edited note files automatically in Obsidian. Record the modified notes and statistics to your daily note with various customizations!
Pinned Daily Notes
2 years ago by Jeremy Neiman
Dynamically update a pinned tab with today's daily note
ProgressTracker
a year ago by Van Nam
A plugin that helps you track progress and manage tasks in your notes.
Auto Daily Note
a year ago by John Dolittle
Daily Notes Automater
a year ago by David Pedrero
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Inboxer
a year ago by Eoin Hurrell
Obsidian plugin to add an inbox to notes
SolidTime Integration
a year ago by proniclabs
Obsidian SolidTime Integration Plugin
Hledger Notes
a year ago by Boburmirzo Khamrakulov
Hledger Notes: Create and manage hledger entries directly in Obsidian Daily notes
Status.lol Publisher
a year ago by Eric Walker
Allows you to post to weblogs.lol, status.lol, some.pics and paste.lol from Obsidian.
Create Note with Date in This Directory
a year ago by Sangrak Choi
Obsidian plugin for creating a note with current date in this directory
Countdown To
a year ago by Gui Cattani
A countdown/progress Obsidian widget using progressbar.js
Streams
a year ago by Floyd
Streams Obsidian Plugin
Coalesce
a year ago by Floyd
Coalesce is an Obsidian plugin that merges all your linked notes into a single, organized view for a cohesive research and writing experience.
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.
Checkbox Autochecker
a year ago by Klaas Klee
Google Calendar Importer
a year 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.
Open or Create File
a year ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Timestamper
10 months ago by René Coignard
Insert the current timestamp into your notes.
Daily Notes Tweaks
10 months ago by René Coignard
Open a random daily note and automatically switch past daily notes to reading mode.
Lark Style CountDown Timer
10 months ago by Zhaoyang Yu
Tag Timer
9 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.
Timelog
9 months ago by Eddie Blundell
Time logging plugin for obsidian
Role Switch
7 months ago by Zafrem
This program is a tool that recognizes and makes task switching easier, even though multitasking is difficult.
LongtimeDiary
6 months ago by sawamaru
This is Obsidian Plugin to show past DailyNotes on the same day in previous years.
Kanban Bases View
6 months ago by I. Welch Canavan
A kanban-style drag-and-drop custom view for Obsidian Bases that allows you to organize your notes into columns based on any property.
Synaptic View
6 months ago by Yongmini
Obsidian Plugin : Synaptic View that unifies your dashboards, hub notes, quick-entry notes, periodic notes, web shortcuts, and calendar navigation—enable it as the default new-tab experience or summon it with a command.
Note Progressbar
6 months ago by Ryoma Kawahara
Simplest Todo
4 months ago by kintolayli
Yori Task
4 months ago by yorigo77
task manager, week planner, year planner
Project Manager
4 months ago by stepankropachev
Project management inside Obsidian. Table, Gantt and Kanban over plain Markdown notes, with a local API for agents and scripts.
Task Collector
4 months ago by ebullient
Manage tasks and logs within an Obsidian note.
TaskNotes
3 months ago by callumalpass
Task and time-tracking management with calendar integration for Obsidian
Apex Dashboard
3 months ago by PandoraReads
Stop switching between Obsidian notes. One page. Everything you need. Memo your thoughts, crush your todos, track your projects — and make it look incredible doing it.
Gantt Calendar
3 months ago by Sugar
obsidian-gantt-calendar
GTD Tasks
2 months ago by unpreditable
Natural Language Dates
2 months ago by obsidian-community
Work with dates in natural language in Obsidian
Day Planner
2 months ago by ivan-lednev
An Obsidian plugin for day planning with a clean UI and a simple task format
Browser Note
2 months ago by fengshuzi
Obsidian plugin: localhost HTTP API for vault notes with a built-in browser UI.
Yuhanbo Task
2 months ago by yuhanbo
Obsidian 智能任务管理与番茄时钟插件,集成 AI 智能拆分的任务管理系统,配备专业番茄时钟,提升工作效率。
Prisma Calendar
2 months ago by Matej Vavro Productivity
Prisma is not just a calendar plugin. It 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. It lets you see your entire vault through time.
Journal View
2 months ago by RUverse
A Journal View for Obsidian
Thino
2 months ago by quorafind
A quick capture plugin for Obsidian, all data from your notes.
Granola Sync
2 months ago by tomelliot
Sync Granola notes to your Obsidian vault
BeautyTasks
2 months ago by Avni Bilgin
Todoist-style task & project manager for Obsidian — one markdown note per task, native UI, no plugin dependencies.
TODOseq
2 months ago by Stephen Cross
TODOseq ("to-do-seek") is a lightweight, keyword-based task tracker for Obsidian
Time Things
2 months ago by plasmabit
Know when your note was was last updated. Track how much time you spent writing. Keep an eye on the clock.
Dayframe
2 months ago by Ganessh Kumar R P
🖼️ like a picture frame but for your daily notes.
Pinned Tabs
2 months ago by NameIsKyro
Chrome-style compact pinned tabs for Obsidian with custom icons, smooth movement, and accidental-close protection.`
Mobile Sidebar Notes
2 months ago by ckep1
Open notes & new tabs in the sidebar on the Obsidian mobile app.
Operon
2 months ago by Hasan Yılmaz
Task management system for humans and agents in Obsidian.
Xboard
a month ago by wrbin
一款易上手、已美化、更适合AI工作流的obsidian工作台
Today Alias
a month ago by tanoshia
Plugin for Obsidian md editor. This hides a date prefix of any file name (in browser and tabs).
TaskChute Plus
a month ago by hiroyaiizuka
Execute Taskchute for Obsidian
WorkLife Calendar
a month ago by RavenLife
All-in-one: a smart calendar, task and habit tracker, time tracker, and financial planner, all connected into a single ecosystem within Obsidian.
Abele
a month ago by dudaanton
An Obsidian plugin that adds a lot of functionality I personally find missing.
Xove Dashboard
a month ago by ty
Obsidian 个人工作台插件:把任务管理 / 项目管理 / 灵感收集 / 笔记统计 收进一个首页,数据全留在本地的。
Wiki Companion
25 days ago by Mo A
A minimalist, read-only calendar for Obsidian, built on the frontmatter you already have.
Rollover Plus
22 days ago by Wren
Move unfinished tasks between daily notes with Rollover Plus.
Weekday Commands
21 days ago by Wren
Simple Meeting Sidebar
21 days ago by Wren
A macOS-only Obsidian plugin that reads Apple Calendar events into a sidebar and turns them into tasks or meeting notes.
Qiaomu AI RSS
18 days ago by 向阳乔木
在 Obsidian 中阅读乔木 RSS、中文 AI 改写与翻译,并保存为 Markdown 笔记。
Simple Reminder
13 days ago by Dmitry
Напоминалка
BrainCore LifeOS
10 days ago by 囍樂
BrainCore 侧边栏不仅是一个展示面板,更是你整个 Obsidian 知识库的“核心呼吸机”。它由 6 大模块组成,涵盖了时间感知、极速收集、工作流转、习惯养成与知识内化。一切信息从这里输入,最终也会在这里沉淀。