Live Life Recording

by goryugocast
5
4
3
2
1
Score: 37/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

stars
9,290
downloads
0
forks
32
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

RequirementsExperimental

  • Obsidian 1.7.2 or later

Latest Version

Invalid date

Changelog

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
---

A few repeat patterns:

  • 1 / 3every 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
  • 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

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
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 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
4 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
3 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
2 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
2 years ago by digitorum
Allow to create templayted daily note in specific folder
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
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
Daily Note Navbar
2 years ago by Karsten Finderup Pedersen
Adds a daily note navbar to quickly navigate between sequential daily notes in Obsidian.
Things3 Today
2 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
Extension for pulling and syncing the videos that you liked in Youtube to 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
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
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
Previous Daily Note
a year ago by Marcos Talau
Plugin for Obsidian that opens the previous daily note
Daily Note Metrics
a year ago by Andre-Diamond
Obsidian Plugin that parses Daily Notes and uses data to create charts
Multiple Daily Notes
a year ago by Vab Kapoor
Obsidian plugin for adding multiple daily notes, with some extra configurations too.
Chronotyper
a year ago by BambusControl
Obsidian plugin for tracking note edit time
Wordflow Tracker
a year 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
a year 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
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.
Open or Create File
10 months ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Timestamper
9 months ago by René Coignard
Insert the current timestamp into your notes.
Daily Notes Tweaks
9 months ago by René Coignard
Open a random daily note and automatically switch past daily notes to reading mode.
Lark Style CountDown Timer
8 months ago by Zhaoyang Yu
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.
Timelog
7 months ago by Eddie Blundell
Time logging plugin for obsidian
Role Switch
6 months ago by Zafrem
Switch between different work roles (developer, writer, researcher, etc.) with intentional transitions and session tracking.
LongtimeDiary
5 months ago by sawamaru
Show past Daily notes on the same day in previous years.
Kanban Bases View
5 months ago by I. Welch Canavan
A kanban-style drag-and-drop custom view for Bases.
Synaptic View
5 months ago by Yongmini
A dynamic control center for your vault. Unify hubs, notes, tasks, periodic notes, and web resources with intuitive buttons. Replace new tab for instant access.
Note Progressbar
4 months ago by Ryoma Kawahara
Displays a live progress bar summarizing checkbox completion in the active note.
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.
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.
Task Collector
2 months ago by ebullient
Change task status and collect tasks within a document using hotkeys and context menus.
TaskNotes
2 months ago by callumalpass
Note-based task management with calendar, pomodoro and time-tracking integration.
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.
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.
GTD Tasks
22 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.
Day Planner
13 days ago by ivan-lednev
Day planning from a task list in a Markdown note with enhanced time block functionality.
Browser Note
13 days ago by fengshuzi
Expose a localhost HTTP API (API-key protected) to view, create, edit and delete vault notes, with a built-in browser UI. - This plugin has not been manually reviewed by Obsidian staff.
Yuhanbo Task
9 days ago by yuhanbo
一个简单易用的任务管理插件,支持任务创建、编辑、删除和状态管理,帮助您高效管理待办事项。 - This plugin has not been manually reviewed by Obsidian staff.
Journal View
7 days ago by RUverse
Turn your daily notes into one continuous, editable journal—scroll through time, jump to any date, and write without leaving the view. - This plugin has not been manually reviewed by Obsidian staff.
BeautyTasks
5 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.
Dayframe
3 days ago by Ganessh Kumar R P
like a picture frame but for your daily notes. - This plugin has not been manually reviewed by Obsidian staff.
Pinned Tabs
3 days ago by NameIsKyro
Chrome-style compact pinned tabs with custom icons, smooth movement, and accidental-close protection. - This plugin has not been manually reviewed by Obsidian staff.