Packrat

by Thomas Herden
5
4
3
2
1
Score: 56/100

Description

The Packrat plugin helps manage completed recurring tasks within an Obsidian vault by automatically organizing them based on user-defined triggers. It offers three actions for completed tasks: moving them to the bottom of the current note, archiving them in a separate file, or deleting them. The plugin allows users to configure custom triggers, such as tags, emojis, or text strings, to specify the desired action. It enhances task management by keeping notes clutter-free and ensuring important records are archived efficiently.

Reviews

No reviews yet.

Stats

21
stars
5,999
downloads
1
forks
1,477
days
835
days
897
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
15
total issues
1
open issues
14
closed issues
17
commits

Latest Version

2 years ago

Changelog

Packrat now properly process indented instances of completed recurring tasks.
(Thanks to @claremacrae for catching this previously-unreported bug!)

README file from

Github

Packrat 🐀

[!NOTE] As of version 1.1.1, Packrat supports both Tasks' traditional emojis and Dataview-format inline fields.

While Obsidian.md provides basic support for Markdown-style tasks contained within a vault's note files, the amazing and (for many) indispensable Tasks plugin -- originally created by Martin Schenck and now maintained by Clare Macrae -- considerably increases those capabilities.

For example, recurrence rules can be used such that, when Tasks is used to mark a task that includes such a rule as having been completed, it inserts the next instance of that task in a new line either above (or, if the user prefers, below) the just-completed instance of the task.

And what's wrong with that?

The above behavior is "alright"; but completed instances of recurring tasks will accumulate in the note file in which they originate. If those tasks recur frequently, they'll quickly clutter up the note they're in.

What are you gonna do about it?

After some reflection, I realized that my completed recurring tasks fall into three categories:

  1. those which I don't care to retain once they're done -- they can be deleted
  2. those which I want to retain within their note file of origin, but relocated to the bottom of the note, out of the way of current/active material
  3. those which I want to retain, but in a separate archival note file

Packrat adds a command (Packrat: Process completed recurring tasks within the active note) to your Obsidian vault. When run, this commands executes the above actions on your current active note file, tidying up completed instances of recurring tasks.

All that's required is the addition, within each recurring task on which you want it to act, of a 'trigger' -- a string of characters that identifies which action you want to apply to your completed task instances, the command added by this Packrat plugin will automate those actions.

Default "triggers"

The default "trigger" for each Packrat action takes the form of an html comment (text surrounded by a two pairs of % characters):

Default trigger Action on completed recurring task instance
%%done_end%% Move task to the bottom of the active note file
%%done_log%% Append task to designated archive file
%%done_del%% Delete task

I chose to use comments because they aren't displayed in Obsidian's Preview mode (although they are displayed in Live Preview), and because I prefer to keep the Tags list uncluttered.

However, you can change the "trigger" value of each supported Action within Packrat's settings -- to a #tag, an emoji, an @value, or any other string (including Unicode characters) that is supported by Obsidian and your operating system.

Using Packrat

Packrat adds a single command to Obsidian.

Assuming that you have a markdown file open as your active note, invoke Obsidian's Command Palette and select "Packrat: Process completed recurring Tasks within the active note".

When that command is issued, Packrat will scan the file for completed instances of recurring tasks and act on each according to the trigger value(s) it contains.

[!TIP] You may want to either a) assign a Hotkey to run this command, or b) open the Command Palette Core plugin and "pin" it to the top of the Command Palette list

Default 'archive file'

By default, Packrat appends completed recurring tasks that you want to archive to a file named archive.md located in the root directory of the vault. If the file doesn't already exist when the command is run, it will be created.

Both the name and location of this "archive of completed tasks" file can be changed in Packrat's settings. The only requirements are that the file path must exist and the any alternate filename entered in Settings must include the ".md" extension.

I'm not sure I follow how this is supposed to work; can you give an example?

Sure!

The Packrat plugin acts only on completed checklist items in the currently active note when those feature both

  • an Obsidian Tasks-style recurrence rule, and
  • at least one trigger (either the default values or per any alternative values set within the plug-in's Settings).

As an example, assume that the following represents the entire contents of a note file.

# Example checklist
- [ ] incomplete *non*-recurring task, with deletion trigger %%done_del%%
- [x] completed *non*-recurring task, with deletion trigger %%done_del%% ✅ 2023-12-29
- [-] cancelled, *non-recurring* task
- [-] *cancelled* instance of a recurring task with archive trigger %%done_log%% 🔁 every day 📅 2023-12-29
- [ ] incomplete recurring task with *no* trigger 🔁 every 2 days when done 📅 2023-12-31
- [x] completed recurring task with *no* trigger 🔁 every 2 days when done 📅 2023-12-29 ✅ 2023-12-29
- [ ] *incomplete* recurring task with bottom trigger %%done_end%% 🔁 every 3 days when done 📅 2023-12-30
- [x] completed recurring task with bottom trigger %%done_end%% 🔁 every 3 days when done 📅 2023-12-29 ✅ 2023-12-29
- [x] completed recurring task with bottom trigger %%done_end%% 🔁 every 3 days when done 📅 2023-12-26 ✅ 2023-12-26
- [ ] *incomplete* recurring task with archive trigger %%done_log%% 🔁 every 10 days 📅 2023-12-31
- [x] completed recurring task with archive trigger %%done_log%% 🔁 every 10 days 📅 2023-12-21 ✅ 2023-12-21
- [ ] *incomplete* recurring taskwith delete trigger %%done_del%%  🔁 every week on Wednesday 📅 2023-12-28
- [x] completed recurring task with delete trigger %%done_del%% 🔁 every week on Wednesday 📅 2023-12-21 ✅ 2023-12-21

If the command Packrat: Process completed recurring Tasks within the active note were run on an active note that contained the above task list, Packrat will only 'do something' with the final four completed checklist items. The note file would then look as follows

# Example checklist
- [ ] incomplete *non*-recurring task, with deletion trigger %%done_del%%
- [x] completed *non*-recurring task, with deletion trigger %%done_del%% ✅ 2023-12-29
- [-] cancelled, *non-recurring* task
- [-] *cancelled* instance of a recurring task with archive trigger %%done_log%% 🔁 every day 📅 2023-12-29
- [ ] incomplete recurring task with *no* trigger 🔁 every 2 days when done 📅 2023-12-31
- [x] completed recurring task with *no* trigger 🔁 every 2 days when done 📅 2023-12-29 ✅ 2023-12-29
- [ ] *incomplete* recurring task with bottom trigger %%done_end%% 🔁 every 3 days when done 📅 2023-12-30
- [ ] *incomplete* recurring task with archive trigger %%done_log%% 🔁 every 10 days 📅 2023-12-31
- [ ] *incomplete* recurring taskwith delete trigger %%done_del%%  🔁 every week on Wednesday 📅 2023-12-28

- [x] completed recurring task with bottom trigger %%done_end%% 🔁 every 3 days when done 📅 2023-12-29 ✅ 2023-12-29
- [x] completed recurring task with bottom trigger %%done_end%% 🔁 every 3 days when done 📅 2023-12-26 ✅ 2023-12-26

the next-to-last completed recurring task

- [x] completed recurring task with archive trigger %%done_log%% 🔁 every 10 days 📅 2023-12-21 ✅ 2023-12-21

would have been moved to the bottom of the designated archive file, and the fourth and final completed recurring task would have been deleted.

Installation

Packrat can now be installed via the Community Plugins option within Obsidian's Settings tab.

|> [!WARNING]

Packrat is unlikely to do anything useful if you aren't using the Tasks plugin in your Obsidian vault

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Tasks
5 years ago by Clare Macrae and Ilyas Landikov (created by Martin Schenck)
Task management for the Obsidian knowledge base.
MAKE.md
4 years ago by MAKE.md
Checklist
5 years ago by delashum
Note Toolbar
2 years ago by Chris Gurney
Flexible, context-aware toolbars for your notes in Obsidian.
File Color
3 years ago by ecustic
An Obsidian plugin for setting colors on folders and files in the file tree.
CardBoard
5 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
Longform
5 years ago by Kevin Barrett
A plugin for Obsidian that helps you write and edit novels, screenplays, and other long projects.
Smart Composer
2 years ago by Heesu Suh
AI chat assistant for Obsidian with contextual awareness, smart writing assistance, and one-click edits. Features vault-aware conversations, semantic search, and local model support.
Execute Code
4 years ago by twibiral
Obsidian Plugin to execute code in a note.
Consistent attachments and links
5 years ago by Dmitry Savosh
Obsidian plugin. Move note with attachments.
Auto Note Mover
4 years ago by faru
This is a plugin for Obsidian (https://obsidian.md).
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Shell commands
5 years ago by Jarkko Linnanvirta
Execute system commands via hotkeys or command palette in Obsidian (https://obsidian.md). Some automated events are also supported, and execution via URI links.
Local Backup
3 years ago by GC Chen
Automatically creates a local backup of the vault.
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.
Time Ruler
3 years ago by Joshua Tazman Reinier
A drag-and-drop time ruler combining the best of a task list and a calendar view (integrates with Tasks, Full Calendar, and Dataview).
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.
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
Modal forms
3 years ago by Danielo Rodriguez
Define forms for filling data that you will be able to open from anywhere you can run JS
Completed Task Display
5 years ago by Ben Lee-Cohen
Obsidian plugin to control the display of completed tasks
Janitor
4 years ago by Gabriele Cannata
Performs various maintenance tasks on the Obsidian vault
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Khoj
3 years ago by Debanjum Singh Solanky
Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (gpt, claude, gemini, llama, qwen, mistral). Get started - free.
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
AI Providers
a year ago by Pavel Frankov
This plugin is a hub for setting AI providers (OpenAI-like, Ollama and more) in one place.
Periodic PARA
3 years ago by YiBing Lin
Obsidian Plugin for combining P.A.R.A with Periodic Notes(LifeOS for 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
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
Rewarder
4 years ago by Gustav Gnosspelius
An Obsidian-plugin to get rewards for completing todos
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
Task List Kanban
2 years ago by Chris Kerr
Dynamic Outline
a year ago by theopavlove
Adds a customizable GitHub-like floating table of contents to Obsidian.
TickTickSync
3 years ago by thesamim
Vantage - Advanced search builder
5 years ago by ryanjamurphy
Vantage helps you build complex queries using Obsidian's native search tools.
Pieces for Developers
3 years ago by Pieces For Developers
Pieces' powerful extension for Obsidian-MD that allows users to access their code snippets directly within the Obsidian workspace
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
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Prompt ChatGPT
2 years ago by Coduhuey
ToggleList
4 years ago by Lite C
This is a simple plugin for Obsidian to overwrite the default behavior of toggle checkbox status. Also, it offers a simple way to toggle through frequently used attributes: task states, task tags, highlighted list, etc.
Folders to Graph
2 years ago by Ratibus11
Enhance your Obsidian graph view with folders and headings structure!
Dangling links
6 years ago by Graydon Hoare
obsidian plugin for displaying dangling links
Daily Notes Viewer
4 years ago by Johnson0907
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.
Todoist Text
4 years ago by Wes Moncrief
Plugin Manager
3 years ago by ohm-en
Allows better management of Obsidian.md plugins.
Embedded Code Title
5 years ago by tadashi-aikawa
It is an Obsidian plugin which can embeds title to code blocks.
Proletarian Wizard Task Manager
2 years ago by Charles Feval
Obsidian plugin ot manage todos and projects directly from your notes.
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
Recent Notes
a year ago by Kamil Rudnicki
Recent Notes Plugin for Obsidian
Task Marker
3 years ago by wenlzhang
An Obsidian plugin to change task status and append text with hotkeys and right-click context menu.
Org Mode
5 years ago by ryanpcmcquen
Add Org Mode support to Obsidian.
AI Tagger
2 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
Unique attachments
5 years ago by Dmitry Savosh
Obsidian plugin. Renames attachments, making their names unique.
Note Folder Autorename
5 years ago by PJ Eby
Obsidian plugin to support folder-overview notes by keeping their folder in sync
Enhanced Canvas
a year ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
Sync Google Calendar
3 years ago by Dexin Qi
Sync tasks from Obsidian with system calendar
Improved Random Note
3 years ago by ShockThunder
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.
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
AI Tagger Universe
a year ago by Hu Nie
An intelligent Obsidian plugin that leverages AI to automatically analyze note content and suggest relevant tags, supporting both local and cloud-based LLM services.
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
Differential ZIP Backup
2 years ago by vorotamoroz
TodoTxt
3 years ago by Mark Grimes
Obsidian plugin to manage todotxt files
Tasks Map
8 months ago by NicoKNL
A graph view of your tasks.
Week Planner
4 years ago by Ralf Wirdemann
Todoist completed tasks
4 years ago by Andrew 'Ledary' Kulishov
Obsidian plugin to display the completed tasks
Automatic Linker
a year ago by Kodai Nakamura
Tag Project
3 years ago by Odaimoko
TickTick
3 years ago by Viduy Cheung
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
Day and Night
4 years ago by Kevin Patel
An Obsidian plugin to automatically switch between day and night themes based on a set schedule
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.
Folder Links
2 years ago by Stefan Rausch
Obsidian Plugin that enables using links to folders.
Linkify
4 years ago by Matthew Chan
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Contacts
3 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.
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
YouTube Template
2 years ago by sundevista
📺 A plugin that would help you to fetch YouTube videos data into your vault.
Weekly Review
3 years ago by Brandon Boswell
Todo sort
3 years ago by Ryan Gomba
A plugin for Obsidian that sorts todos within a note
Auto Filename
3 years ago by rcsaquino
Auto Filename is an Obsidian.md plugin that automatically renames files in Obsidian based on the first x characters of the file, saving you time and effort.
Fold Properties By Default
a year ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Automatic Renumbering
2 years ago by Omri Levi
Automatically reorders checklists and numbered lists as you edit them.
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
Send Tasks to OmniFocus
3 years ago by Henry Gustafson
InlineAI
a year ago by FBarrca
Single File Daily Notes
2 years ago by Pranav Mangal
An Obsidian plugin to create and manage daily notes in a single file
Project Garden
3 years ago by Ben Goosman
PARA Shortcuts
4 years ago by gOAT
This plugin serves usefull commands to setup and manage your knowledge using the PARA method.
TagMany
3 years ago by Joshua Martius
Tag many Notes at once in Obsidian
Structured
5 years ago by dobrovolsky
VirtFolder
2 years ago by mr.grogrig
Creating a hierarchical structure like Luhmann's Zettelkasten
Automatic Tags
3 years ago by Jamalam
Add tags to new notes automatically based on their path
Snippets
5 years ago by Pelao
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
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.
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Note archiver
3 years ago by thenomadlad
Key-Value List
3 years ago by Christian Wannerstedt
Obsidian plugin which makes it easy to turn lists into formatted key value lists
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.
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.
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.
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
Note Chain
2 years ago by ZigHolding
Package my frequently used tools, highly personal plugins.
Linked Data Vocabularies
3 years ago by kometenstaub
Add linked data to the YAML of your Obsidian notes.
Broken Links
2 years ago by ipshing
NoteMover shortcut
a year ago by Lars Bücker
Quickly and easily move notes to predefined folders. Perfect for organizing your notes.
Gnome Terminal Loader
3 years ago by David Carmichael
Auto Periodic Notes
2 years ago by Jamie Hurst
Obsidian plugin to create new periodic notes automatically in the background and allow these to be pinned in your open tabs. Requires the "Periodic Notes" plugin.
Prioritize
3 years ago by EloiMusk
Obsidian Plugin, to prioritize stuff in Obsidian
Lite Gallery
2 years ago by Jordan Poles
ZettelGPT
3 years ago by Overraddit
Turbocharge Your Note-taking with AI Assistance
Brainframe
3 years ago by pedersen
Overdue
5 years ago by Peter Parente
Obsidian plugin that marks items as [[Overdue]] if they are not checked off by their due date
Automation
2 years ago by Benature
Note aliases
3 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Auto Hyperlink
3 years ago by take6
File chucker
3 years ago by Ken Lim
Auto Front Matter
3 years ago by conorzhong
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
Current View
a year ago by Lucas Ostmann
Automatically set the view mode (Reading, Live Preview, Source) for notes in Obsidian using folder rules, file patterns, or frontmatter.
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Auto File Organizer
2 years ago by mofukuru
Obsidian plugin: Automatically organizes files into folders based on their extensions.
Open File by Magic Date
4 years ago by simplgy
Nav Link Header
2 years ago by ahts4962
Display navigation links at the top of the notes in Obsidian
BuJo Bullets
a year ago by Will Olson
Alternate checkbox types for Obsidian to support Bullet Journal bullets
TODOseq
8 months ago by Stephen Cross
TODOseq ("to-do-seek") is a lightweight, keyword-based task tracker for Obsidian
Order List
3 years ago by Henry Gustafson
Todoist Context Bridge
2 years ago by wenlzhang
Bridge your Obsidian notes with Todoist tasks while preserving rich context, helping you highlight important tasks and maintain seamless workflows between the two platforms. Seamlessly integrate with Dataview and Tasks plugins.
Bellboy
4 years ago by Shaked Lokits
Opinionated file structure manager for the Obsidian knowledge base.
Desk
3 years ago by David Landry
A desk for obsidian
Potato Indexer
3 years ago by LoyalPotato
Obsidian plugin to generate index based on your selection
Steward
8 months ago by Dang Nguyen
A vault-specific agent equipped with agentic capacity, fast search, flexible commands, vault management, and terminals to "jump" into other CLI agents, such as Claude, Gemini, etc.
Completed Tasks
a year ago by Mgussekloo
A free, simple and intuitive Obsidian plugin that automatically moves completed tasks (checked checkboxes) to the bottom of the list they're in.
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Extended Task Lists
2 years ago by joeriddles
Extended Markdown support for task lists in Obsidian.
Create Task
2 years ago by Simon Knittel
Create tasks faster from anywhere.
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
NeuroVox
2 years ago by Synaptic Labs
Obsidian plugin for transcription and generation
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Babashka
3 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
Run
3 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Feeds
3 years ago by LukeMT, pashashocky, madx
Magic feeds dataview query for obsidian
Expiration-Date-Tracker
3 years ago by Marius Wörfel
Opsidian plugin to keep track of all expiration dates, for example, for your groceries.
Blueprint
4 months ago by François Vaux
Repeatable templates plugin for Obsidian
GChat Reminder
3 years ago by Anil Erdogan
Index Notes
2 years ago by Alejandro Daniel Noel
Plugin that automatically generates index blocks based on tags
Journal Folder
2 years ago by Charl Fourie
RSS Copyist
2 years ago by aoout
Get the RSS articles as notes.
Sort Frontmatter
3 years ago by Kanzi
Sort frontmatter automatically
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
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
Highlight Helper
2 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
Note 2 Tag Generator
2 years ago by Augustin
Project Tasks
a year ago by Paul Paterson
An Obsidian Add-in that allows you to create simple projects out of tasks
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Clipper Catalog
a year 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.
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
At People
3 years ago by Tobias Davis
Obsidian plugin to use the familiar @ notation to cross link to people.
Daily note creator
2 years ago by Mario Holubar
Automatically creates missing daily notes.
Personal OS
2 years ago by A.Buot
Hierarchical Backlinks
2 years ago by Jason Motylinski
Plugin which displays backlinks as a tree structure based on file paths
Inline Checkbox Groups
a year ago by Bradley Wyatt
Obsidian Plugin that creates multiple checkboxes on a single line, separated by a customizable separator character (default '|'), with the option to automatically cross out text when all checkboxes in the line are checked.
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Google Calendar Importer
8 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.
Auto Replacer
a year ago by Alecell
A live text replacement plugin that applies automatic formatting, corrections, or custom replacements in real-time. Define your own regex-based rules and transformation logic to modify text dynamically as you type.
TaskWarrior Task Wiki
2 years ago by SntTGR
Small and simple task manager widget for obsidian and powered by taskwarrior.
Inkporter
a year ago by Ayush Kumar Saroj
Inkporter is an Obsidian plugin that digitizes handwritten notes with smart ink isolation, adaptive theming, and seamless import workflows.
Timeline Canvas Creator
a year ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Missing Link File Creator
a year ago by Lemon695
The plugin creates both missing links and the corresponding files.
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.
Mass Create
2 years ago by vellikhor
Create large quantities of notes easily at one time.
Last Position
a year ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
pycalc
a year ago by pycalc
Boost Link Suggestions
3 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.
AI integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
LinkMagic
2 years ago by AndyReifman
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
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.
Sentinel
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to update properties or run commands based on document visibility changes.
tidit
a year ago by codingthings.com
tidit is an Obsidian - https://obsidian.md - plugin that adds timestamps to your document as you type — when you want it, how you want it, where you want it.
downloadPDF
2 years ago by Frieda
URL Formatter
9 months ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
TickTick Quick Add Task
a year ago by Muxin Li
The TickTick Quick Add Obsidian Plugin lets you quickly create tasks in TickTick directly from your Obsidian notes.
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.
Wayback Archiver
a year ago by ISHIZUE
Obsidian plugin which automatically archives web links via Wayback Machine and appends archived versions in notes.
Rapid AI
2 years ago by Rapid AI
AI Assistant for selected text and generating content with Markdown. Shortcuts and quick action buttons provide instant AI assistance. It provides a high availability API for unlimited Chat GPT request rates, so you can ensure smooth work for any workload.
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.
Current File Tags
a year ago by Trung Tran
Kikijiki Habit Tracker
a year ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
Hotstrings
a year ago by wakywayne
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
Check and Delete
2 years ago by Danitiate
An Obsidian plugin that allows you to quickly clean up temporary list-items with the press of a button
Tasks Cleaner
a year ago by lowit
🧹 Tasks Cleaner is a plugin for Obsidian that helps you automatically remove old completed tasks from your Markdown notes
Tab Group Arrangement
a year ago by situ2001
Arrange the tab groups of Obsidian in a more flexible way
Varinote
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to add variables in Templates and set their values during the Note creation.
Auto Strikethrough Tasks
2 years ago by Nomekuma
Automatically adds strikethrough to completed tasks.
Rsync
a year ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Instant Above Divider
2 years ago by SedationH
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
Clear Todos
2 years ago by Joshua Gawenda
An Obsidian Plugin to clear todos that are done
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Mastodon Threading
a year ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
NotePix
9 months ago by Ayush Parkara
NotePix automatically uploads images, screenshots from your Obsidian vault to a designated GitHub repository. It then seamlessly replaces the local link with a fast URL, keeping your vault lightweight and portable.
Discord Message Sender
a year ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
Abbrlink
2 years ago by Q78KG
Import Todoist tasks
2 years ago by Duke
Import Todoist tasks as Obsidian tasks.
Plugin REPL
a year ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Auto Daily Note
a year ago by John Dolittle
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
Daily Notes Automater
a year ago by David Pedrero
GitHub Tasks
9 months ago by Mike Thicke
Obsidian plugin to sync GitHub issues and PRs to Obsidian TODOs
Copy Local Graph Paths
a year ago by Amy Z
copy-local-graph-paths is a simple Obsidian plugin that copies the paths of notes linked to your current page.
Open or Create File
8 months ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
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.
Blog AI Generator
a year ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
Paste as Embed
2 years ago by Matt Laporte
Obsidian plugin to paste contents of clipboard into a new note, and embed it in the active note.
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
Task Director
2 years ago by Cybertramp
A plugin that allows you to easily manage tasks in bulk.
IMSwitch in Math Block
a year ago by XXM
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
Hanko
a year ago by Telehakke
Obsidian plugin.
Random Wikipedia Article
a year ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
Bottom to Top
2 years ago by Henry Gustafson
Handlebars Dynamic Templating
4 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
Content OS
9 months ago by eharris128
Post to LinkedIn from within Obsidian
One Step Wiki Link
a year ago by Busyo
用于 Obsidian 一步插入当前界面匹配到的所有外链(维基链接)
KOI Sync
a year ago by Luke Miller
Move Cursor On Startup
9 months ago by Jared Kelnhofer
Obsidian plugin to move the cursor to the right and back to the left when starting up. Why? To keep DataView expressions from not running on the first load of, say, your Home file.
EUpload
a year ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。
LighterPack importer
3 months ago by Nicola Siniscalchi
Import a packing list from https://lighterpack.com.