Sentinel

by Giorgos Sarigiannidis
5
4
3
2
1
Score: 39/100

Description

The Sentinel plugin enables users to automate actions based on note visibility changes in Obsidian. It allows users to track interactions with notes by updating properties such as view counts or timestamps and executing commands automatically when notes are opened or closed. Actions can be customized based on specific note titles or patterns, offering flexibility for different use cases. Sentinel supports dynamic variables like date, time, and title, providing an efficient way to manage note metadata.

Reviews

No reviews yet.

Stats

42
stars
1,391
downloads
4
forks
608
days
64
days
543
days
8
total PRs
1
open PRs
1
closed PRs
6
merged PRs
12
total issues
6
open issues
6
closed issues
0
commits

Latest Version

a year ago

Changelog

This release introduces the following improvements:

1. Exclude frontmatter when leaving a note with changes

A new action "Leaving a note with changes, exclude Frontmatter" has been added. It will trigger if the note contains changes, but will ignore any change to the Frontmatter. Addresses the issue: https://github.com/gsarig/obsidian-sentinel/issues/11

image

The action "Leaving a note with changes" is still there, both for backwards compatibility and for more flexibility, for anyone who wants to trigger an action even when Frontmatter changes.

2. Set variables along with free text

Allows to set variables along with free text, like for example Last update: {{date}}. Addresses the issue https://github.com/gsarig/obsidian-sentinel/issues/10 This will only work for the variables {{date}}, {{time}} and {{title}}. This means that {{increment}} is not included and should keep being used without any other text.

Resolved issues

What's Changed

Full Changelog: https://github.com/gsarig/obsidian-sentinel/compare/1.2.0...1.2.1

README file from

Github

Sentinel

Sentinel is a plugin for Obsidian that allows you to update properties or run commands based on document visibility changes. For example, you can add a views property that auto-increments every time a Note opens, a modified property that captures the current datetime when you exit a Note with modifications, run a Linter when a Note opens or exits, and so on.

https://github.com/user-attachments/assets/eb7f4ae7-2448-4ca1-913a-9b63d799f8bf

How to use

Go to the plugin's settings to add your actions. Each action includes the following fields:

  • Where: Which notes should be targeted. If left empty, it will run on all Notes. You can target specific notes based on their names, their containing folder or their name, or use a regex to target Notes with specific patterns on their title. More specifically, you can target with the following parameters:
    • #tag - Prefixing the value with a # (e.g. #tag) will match notes that have the specified tag. For example, #tag-1 would trigger the action on any note that includes the tag "tag-1".
    • Folder/ - Putting / at the end of your value (e.g. folder/), will target notes within the specified folder. You can target nested folders like folder/subfolder/. For example, My Folder/ would target all notes under the "My Folder" folder, and My Folder/Subfolder all the notes under the specific subfolder.
    • Note name - Putting plain text (e.g. Note Name) will target a note with the exact title (case-insensitive)
    • Negative targeting - The above conditions can be used for negative targeting, by prefixing them with !. For example, !#tag-1 will trigger on any note EXCEPT for those containing the tag "tag-1". !My Folder/ will trigger on any note EXCEPT for those under the "My Folder" folder. !My Note will trigger on any notes EXCEPT for the note with the title "My Note".
    • Multiple targeting - You can use commas to combine multiple conditions. For example, #tag-1,folder/,Note Name will trigger if the note matches ANY of these conditions (has "tag-1" OR is in "folder" OR has the specified name). On the other hand, !#tag-1,!folder/,!Note Name would trigger only if ALL conditions are true (note doesn't have "tag-1" AND isn't in "folder" AND isn't named "Note Name").
    • Regular expressions - For even more complex targeting, you can use standard regular expressions. For example, /^Recipe-*.*/ would target all notes with a title beginning with "Recipe-").
  • When: When should the action run. The options include:
    • Accessing a note: The action will run every time a Note is accessed.
    • Opening a note once, reset on closing Obsidian: The action will run the first time a note opens, but not for any consecutive times. It will re-trigger only after Obsidian is closed and re-open.
    • Opening a note once, reset on closing the note: The action will run the first time a note opens, but not for any consecutive times. It will re-trigger when the note is closed and re-open.
    • Closing a note: The action will run every time you explicitly close a note (not just switching between open notes).
    • Leaving a note: The action will run every time you leave a note, even if you keep it open and switch to another tab.
    • Leaving a note once, reset on reopening Obsidian: The action will run when the user exits a note for the first time. It will reset if you close Obsidian and trigger again on re-open.
    • Leaving a note with changes: The action will run every time the user exits a note after having done changes to it.
  • What: What should the action do. There are two options:
    • Set a property: You can update a specific property. By selecting this option, you will be asked to add the property's name, and the value. The value can either be a hardcoded string, or a dynamic variable, like {{increment}}, {{date}}, {{time}} or {{title}}. You can also set a "Skip existing", which will skip setting the property if it already exists.
    • Execute a command: This will ask you to select a specific command from a dropdown, which will be automatically triggered. The list includes all the available commands from the Command Palette, so you should make sure to choose something that makes sense.

obsidian-sentinel.png

Available variables

The property option accepts the following dynamic variables:

Date/time

Both {{date}} and {{time}} allow you to change the default format using a format string. To set a format string, add a colon (:) followed by a string of Moment.js format tokens, for example {{date:YYYY-MM-DD}}.

You can use {{date}} and {{time}} interchangeably with format strings, for example {{time:YYYY-MM-DD}}.

Essentially, it follows the same patterns described in the Template variables section of the Obsidian Help pages.

Increment

Using {{increment}} you can increment a specific value. This can be handy if you want to add a property for tracking the views of a Note. The variable allows you to set the starting value and the increment step, with the following pattern: {{increment:<initial_value>,<increment_step>}}. For example, {{increment:100,10}}, would use "100" as its initial value, and increment by "10" (so, on your next visit, the value should be "110", then "120" and so on).

If no other parameters are used, it will use by default "0" as the initial value and "1" as the increment step.

Title

You can use {{title}} to retrieve the title of the active note. Nothing fancy here, and I'm not sure when would one need it. I just kept it because it was among the officially supported Template variables.

How to install

Currently, there are 3 ways to install the plugin:

  1. Open the Settings panel in Obsidian, and go to the "Community plugins" section.
  2. Click the "Browse" button and search for "Sentinel".
  3. Install and enable the plugin.

Using BRAT

  1. Install the BRAT plugin.
  2. Add the Sentinel repository to BRAT: gsarig/obsidian-sentinel.

Manually

  1. Downlaod main.js, styles.css, manifest.json files from the latest release.
  2. Create new folder inside your vault's /.obsidian/plugins/ named sentinel . If plugins folder doesn't exist, then create it manually.
  3. Move downloaded files into the /sentinel folder.
  4. Enable the plugin in ObsidianMD.

Beta testing

You can use BRAT to test beta versions of the plugin:

  1. Install the BRAT plugin.
  2. Check the manifest-beta.json file to see the current beta version. It should be something like 1.0.2-beta.1.
  3. Go to BRAT and add the plugin using the option "Add Beta plugin with frozen version": obsidian-sentinel-beta-testing.png
  4. Restart your vault.

Feedback and Support

If you encounter any issues or have questions, feel free to reach out via the plugin's GitHub repository.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Excalidraw
5 years ago by Zsolt Viczian
A plugin to edit and view Excalidraw drawings in Obsidian
Templater
6 years ago by SilentVoid
A template plugin for obsidian
Dataview
6 years ago by Michael Brenan
A data index and query language over Markdown files, for https://obsidian.md/.
Local REST API with MCP
4 months ago by Adam Coddington
A secure REST API and Model Context Protocol (MCP) server for your vault.
Advanced URI
5 years ago by Vinzent
Advanced modes for Obsidian URI
Meta Bind Plugin
4 years ago by Moritz Jung
A plugin for Obsidian to make your notes interactive with inline input fields, metadata displays, and buttons.
Metadata Menu
4 years ago by mdelobelle
For data management enthusiasts : type and manage the metadata of your notes.
Better Export PDF
4 months ago by l1xnan
Obsidian PDF export enhancement plugin
Pretty Properties
a year ago by Anareaty
Supercharged Links
5 years ago by mdelobelle
obsidian plugin to add attributes and context menu options to internal links
Custom File Explorer sorting
4 years ago by SebastianMC
Take full control over the order and sorting of folders and notes in File Explorer in Obsidian
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.
MetaEdit
5 years ago by Christian B. B. Houmann
MetaEdit for Obsidian
Multi Properties
3 years ago by fez-github
Plugin for Obsidian that allows user to add properties to multiple notes at once.
Reading Time
6 years ago by avr
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.
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Auto Card Link
4 years ago by Nekoshita Yuki
Gemini Scribe
2 years ago by Allen Hutchison
An obsidian plugin to interact with Google Gemini
Update time on edit
5 years ago by beaussan
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.
Snipd Official
4 months ago by snipd-app
Media DB Plugin
4 years ago by Moritz Jung
A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.
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
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
Chronology
4 years ago by Gabriele Cannata
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Contribution Graph
3 years ago by vran
generate interactive gitxxx style contribution graph for obsidian, use it to track your goals, habits, or anything else you want to track.
April Automatic Timelines
3 months ago by april-gras
Simple timeline generator plugin for story tellers using obsidian
AI Providers
2 years ago by Pavel Frankov
This plugin is a hub for setting AI providers (OpenAI-like, Ollama and more) in one place.
Hot Reload
3 months ago by pjeby
Automatically reload Obsidian plugins in development when their files are changed
Khoj
4 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.
Floating Search
3 years ago by Boninall
A plugin for searching text by using Obsidian default search view.
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
Typing Assistant
3 years ago by Jambo
Typing Assistant is a plugin that improves writing efficiency and provides a user experience similar to that of【Notion】
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
Super Simple Time Tracker
4 years ago by Ellpeck
Multi-purpose time trackers for your notes!
Heading Shifter
4 years ago by kasahala
Easily Shift and Change markdown headings.
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
Autocomplete
6 years ago by Yeboster
Obsidian plugin to provide text autocomplete
Doubleshift
4 years ago by Qwyntex
Obsidian Plugin to open the command palette by pressing shift twice
Hotkeys for templates
5 years ago by Vinzent
Shortcuts extender
6 years ago by kitchenrunner
Plugin for Obsidian: Use shortcuts for input special symbols and changing level of headings without language switching
Workbench
6 years ago by ryanjamurphy
A plugin to help you collect working materials.
Audio Notes
4 years ago by Jason Maldonis
Easily take notes on podcasts and other audio files using Obsidian Audio Notes.
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
Metadata Extractor
5 years ago by kometenstaub
Obsidian Plugin that provides metadata export for use with third-party apps.
Enhanced Canvas
2 years ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
Daily Stats
6 years ago by Dhruvik Parikh
Plugin to view your daily word count across all notes in your Obsidian.md vault.
Mxmind Mindmap
3 years ago by mxmind
mxmind for obsidian plugin
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Word Sprint
5 years ago by Andrew Lombardi
Obsidian Word Sprint plugin
Journal Review
3 years ago by Kageetai
Review your daily notes on their anniversaries, like "what happened today last year"
Prompt ChatGPT
3 years ago by Coduhuey
Frontmatter Markdown Links
2 years ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Copy Inline Code
3 years ago by Ondrej Zavodny
Keyshots
4 years ago by KrazyManJ
🔮📝 Obsidian plugin that adds classic hotkey/shortcuts commands from popular IDEs like Visual Studio Code or JetBrains Family.
Plugin Manager
3 years ago by ohm-en
Allows better management of Obsidian.md plugins.
Uncheck All
3 years ago by Shahar Har-Shuv
Obsidian plugin to uncheck all checkboxes in a file with one action
Key Promoter
5 years ago by Johannes Theiner
Learn keyboard shortcuts by showing them when using the mouse
Proletarian Wizard Task Manager
2 years ago by Charles Feval
Obsidian plugin ot manage todos and projects directly from your notes.
Pomodoro
5 years ago by Tokuhiro Matsuno
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
AI Tagger Universe
2 years 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.
Automatic Linker
2 years ago by Kodai Nakamura
Differential ZIP Backup
3 years ago by vorotamoroz
Timekeep
2 years ago by Jacobtread
Obsidian task time tracking
AI Tagger
3 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
Timer
3 years ago by Marius Wörfel
Obsidian plugin, which allows you to measure time.
Binary File Manager
5 years ago by qawatake
An Obsidian plugin to manage binary files
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
Fold Properties By Default
2 years ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
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.
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
Habit Calendar
4 years ago by Hedonihilist
Monthly Habit Calendar for DataviewJS. This plugin helps you render a calendar inside DataviewJS code block, showing your habit status within a month.
NetClip
2 years ago by Elhary
this plugin is for Obsidian that allows you to browse the web and clip webpages directly into your vault.
Advanced Note Mover
2 months ago by Lars Bücker
Quickly and easily move notes to predefined folders. Perfect for organizing your notes.
Week Planner
4 years ago by Ralf Wirdemann
Ego Rock
3 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
Link with alias
3 years ago by Pavel Vojtechovsky
Obsidian plugin for handy creation of links and alias in front matter of target document
Last Modified Timestamp in Status Bar
3 years ago by Yustynn
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
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
DEVONlink
6 years ago by ryanjamurphy
Open notes indexed in DEVONthink in, well, DEVONthink
Auto Tag
3 years ago by Control Alt
Easily generate relevant tags for your Obsidian notes.
Habitica Sync
5 years ago by Leoh and Ran
This is a under-development Obsidian Plugin for Habitica
Page Properties
3 years ago by Anton Bualkh
A plugin that adds Logseq-like page tags to Obsidian
Image Manager
a month ago by David V. Kimball
Insert, rename, and sort external images by transforming them into local files within your notes.
Stopwatch
5 years ago by Tokuhiro Matsuno
Marjdown shortcuts
5 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Multi-line Formatting
5 years ago by nmady
Format Obsidian text over an entire selection, even if that selection has paragraph breaks in the middle!
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
Linkify
4 years ago by Matthew Chan
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.
Autocorrect Formatter
3 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Bases Board
a month ago by flowing-abyss
Kanban and gallery views for Obsidian Bases.
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.
Quick snippets and navigation
4 years ago by @aciq
Quick snippets and navigation for Obsidian
Media Companion
2 years ago by Nick de Bruin
Conditional Properties
9 months ago by Diego Eis
Automate frontmatter property updates in your Obsidian notes using simple conditional rules.
WordWise
3 years ago by ckt1031
Writing companion for AI content generation.
Weekly Review
4 years ago by Brandon Boswell
InlineAI
2 years ago by FBarrca
Mini Toolbar
3 years ago by AidenLx & Boninall
mini context toolbar in editor for Obsidian
Metadata Auto Classifier
2 years ago by Beomsu Koh
Obsidian plugin that uses AI providers to generate tags and frontmatter metadata for your notes.
Rapid Notes
4 years ago by valteriomon
Grind Manager
2 years ago by dromse
Gamify your task management with rewards system, craft your tasks by tags.
Navigate Cursor History
5 years ago by heycalmdown
Things Link
5 years ago by @gavmn
Live Variables
2 years ago by Hamza Ben Yazid
Define variables in your note's properties and reuse them throughout your content.
Metadata Icon
3 years ago by Benature
change metadata entry icon
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
Insert Multiple Attachments
2 years ago by mnaoumov
Obsidian Plugin that allows to insert multiple attachments at a time
Notes dater
3 years ago by Paul Treanor
Adds created_on and updated_on dates of the active note to status bar
Content Cards
2 years 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.
Command Alias
5 years ago by @Yajamon
Obsidianのコマンドに対してエイリアスを設定するプラグイン
Gemmy
3 years ago by Obsidian
Snippets
6 years ago by Pelao
Lemons Search
2 years ago by Moritz Jung
An Obsidian plugin that offers a fast fuzzy finder based quick switcher with preview.
Bulk Exporter
3 years ago by symunona
Bulk export Markdown filtered, renamed and sorted by front matter metadata into a new structure.
Note Chain
2 years ago by ZigHolding
Package my frequently used tools, highly personal plugins.
Steward
a year 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.
Swiss army knife
3 years ago by mwoz123
Update Time
2 years ago by Sébastien Dubois
Obsidian plugin that updates front matter to include creation and last update times
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. Optionally uses the "Periodic Notes" plugin.
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Kanban Status Updater
a year ago by Ankit Kapur
Obsidian plugin that automatically updates the note property when card is moved to a column.
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Bases Toolbox
2 months ago by Grub Basket
Adds Quality of Life features to Obsidian Bases
Linked Data Vocabularies
3 years ago by kometenstaub
Add linked data to the YAML of your Obsidian notes.
Bookmarks Caller
2 years ago by namikaze-40p
This is an Obsidian plugin which can easily open bookmarks.
Go to Line
5 years ago by phibr0
Blockquote Levels
4 years ago by Carlo Zottmann
A plugin for Obsidian (https://obsidian.md) that adds commands for increasing/decreasing the blockquote level of the current line or selection(s).
Daily Statistics
2 years ago by yefengr
obsidian daily statistics
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
Gnome Terminal Loader
3 years ago by David Carmichael
GPT-LiteInquirer
3 years ago by ittuann
💬 Experience OpenAI ChatGPT assistance directly within Obsidian, drafting content without interrupting your creative flow.
Automation
2 years ago by Benature
PopKit
2 years ago by Zhou Hua
Brainframe
3 years ago by pedersen
Activity Logger
5 years ago by Creling
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Amazing Marvin
5 years ago by Shirayuki Nekomata
Simple plugin for Amazing Marvin
Key Sequence Shortcut
5 years ago by anselmwang
Execute obsidian commands with short key sequences. For example, 'tp' for 'Toggle Preview' and 'tb' for 'Toggle Sidebar'. Easier to remember.
Auto Hyperlink
3 years ago by take6
Fold Properties
2 years ago by James Alexandre
Adds Fold/Unfold Properties Function to Folder Context Menu
File Title Updater
2 years ago by wenlzhang
An Obsidian plugin that synchronizes titles between filename, frontmatter, and first heading in your notes.
Note aliases
4 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
CAO
2 years ago by Godot
Claude AI for Obsidian
VaultAI
a year ago by Tharushka Dinujaya
An AI chatbot plugin for Obsidian using the Gemini API for note summarization, content generation, and more. Enhance your workflow with AI assistance like the Notion AI bot.
Auto Front Matter
3 years ago by conorzhong
Editor Commands Remap
5 years ago by cactus5
Obsidian plugin to map hotkeys to editor commands
Additional Icons
3 years ago by Matthew Turk
Add additional iconsets to Obsidian
Title As Link Text
2 years ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Symbol linking
a year ago by Evan Bonsignori ; Mara-Li
Adds ability to link with any trigger in Obsidian. Each trigger can limit linking to specific folders or file.
KoReader Highlight Importer
2 years ago by Tahsin Kocaman
Imports highlights and metadata from KoReader into Obsidian notes
Open File by Magic Date
4 years ago by simplgy
Harpoon
3 years ago by mask(developermask)
Daily Routine
2 years ago by sechan100
new version of daily-routine obsidian plugin
Another Simple Todoist Sync
2 years ago by eudennis
Obsidian.md plugin to integrate with Todoist app.
Filename Emoji Remover
4 years ago by Yüksel Tolun
A simple plugin for the note taking app Obsidian that will rename your files to remove emojis in their names.
Due When
3 years ago by Andy Baxter
An Obsidian plugin which gives shortcuts to insert set due dates
Waka time box
3 years ago by complexzeng
Codename
3 years ago by dstack
Search Templates Library
3 years ago by Pentchaff
Obsidian plugin that allows to store searches templates for later use, and displays search results both in the search view and graph view.
Copy Metadata
3 years ago by wenlzhang
An Obsidian plugin to copy metadata to clipboard and insert it into file name.
Spacekeys
2 years ago by Jared Lumpe
Obsidian plugin to define hotkeys based on sequences of keypresses.
Learnie
2 years ago by tankh99
Learnie is an Obsidian plugin that helps to enhance your learning with active recall and spaced repetition.
Babashka
4 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Run
3 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
File Index
3 years ago by Steffo
Obsidian plugin to create a metadata file about the files present in the Vault
Postfix
3 years ago by Bhagya Nirmaan Silva (@bhagyas)
A postfix plugin for Obsidian
Activity Heatmap
2 years ago by Zak Hijaouy
Daily News Briefing
2 months ago by Adam Chen
Get AI-powered daily news summaries directly in your Obsidian vault. Stay informed about your topics of interest with smart, automated news collection and summarization.
Focus Time
2 years ago by AstraDev
Focus Time is a plugin that helps you track how much time you spend on each note.
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Random Number Generator
3 years ago by iRewiewer
Gives you a random number
Note Minimap
a year ago by Yair Segel
Add a minimap to your Obsidian notes.
Pomodoro Planner
3 years ago by Onur Nesvat
RescueTime
3 years ago by Tatsuya Hayashi
A RescueTime integration plugin to view your activity logs in Obsidian.
RSS Copyist
3 years ago by aoout
Get the RSS articles as notes.
Task list
3 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Cursor Position History
2 years ago by Florian Gubler
A Plugin to remember (and make accessible) the cursor history in Obsidian. Both within a file and across files.
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Folder overview
2 years ago by Lost Paul
Provides a dynamic overview of your vault or folders in the format of a code block.
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Dataview Autocompletion
2 years ago by Daniel Bauer
GitHub Integration
a year ago by Kirill Zhuravlev
Plugin that fetch your github stars into notes
Note 2 Tag Generator
2 years ago by Augustin
Editor Autofocus
3 years ago by Mgussekloo
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.
Inline Checkbox Groups
2 years 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.
MantouAI
3 years ago by Morino Pan
MantouAI—— 让Obsidian变身智能助手
Daily note creator
3 years ago by Mario Holubar
Automatically creates missing daily notes.
Personal OS
2 years ago by A.Buot
PDF Paste
2 years ago by Cormac
Goal Tracker
2 years ago by Ben Rotholtz
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
LLM Tagger
2 years ago by David Jayatillake
Focus Tracker
2 years ago by Jeet Sukumaran
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.
Image Metadata
2 years ago by alexeiskachykhin
Adds image metadata editing capabilities to Obsidian
Unit Converter
2 years ago by Ruslan Zabarov
Unit conversion plugin for Obsidian
Canvas Link to Group
a year ago by TGRRRR
Plugin for Obsidian Canvas enabling direct links to specific groups within canvas files for improved navigation
Inkporter
2 years ago by Ayush Kumar Saroj
Inkporter is an Obsidian plugin that digitizes handwritten notes with smart ink isolation, adaptive theming, and seamless import workflows.
Missing Link File Creator
2 years ago by Lemon695
The plugin creates both missing links and the corresponding files.
RPG Stat Tracker
2 years ago by Cunjur
RPG-like stat tracker for Obsidian.
Last Position
2 years ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
Metadata Validator
a month ago by flowing-abyss
Manifest-driven metadata validation for Obsidian.
Vault File Renamer
2 years 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.
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Timeline Canvas Creator
a year ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Community Install Manager
2 months ago by Konstantin Volobuev
Allows you to use `community-plugins.js` to search for and automatically install plugins when you launch `obsidian`.
Paste Image Into Property
2 years ago by Nito
Typezen
2 years ago by Ilgam Gabdullin
Plugin for obsidian which lets you turn zen mode instantly
LinkMagic
2 years ago by AndyReifman
Ctrl-XA cycle various items
3 years ago by nbossard
The equivalent in Obsidian of Vim Ctrl X-A. But supercharged with lists of various items : days, months, ...
AI integration Hub
2 years ago by Hishmat Salehi
A modular AI integration hub for Obsidian
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
pycalc
2 years ago by pycalc
Boost Link Suggestions
4 years ago by Jacob Levernier
An Obsidian (https://obsidian.md) plugin for altering the order of inline link suggestions by link count and manual boosts.
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Book Clipper
9 months ago by Hossein Fardmohammadi
Save book details from websites into your notes
Asana
2 years ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Varinote
2 years 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 Move File
19 days ago by sx kan
Automatically move files based on frontmatter properties in Obsidian
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
Daily Prompt
2 years ago by Erl-koenig
Virus Total Enrichment
2 years ago by ytisf
An Obsidian plugin to enrich a note with VirusTotal API.
Note Codes
a year ago by Ezhik
Reference your Obsidian notes from anywhere with simple 4-character codes.
Pinned Daily Notes
2 years ago by Jeremy Neiman
Dynamically update a pinned tab with today's daily note
Vault Stats
a year ago by Blue Heron
A plugin with some simple statistics.
URL Formatter
a year ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
tidit
2 years 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.
Weekly Goal Tracker
2 years ago by George Gorman
Organized daily notes
2 years ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Papers
a year ago by William Liang
An obsidian plugin to retrieve and import research papers.
Brain Dump Mode
2 years ago by yesjinu
Obsidian plugin - DISABLE your delete key and eliminate hesitation!
Runsh
2 years ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
Task Mover
2 years ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Boardgame Search
2 years ago by Marlon May
A plugin to create notes for boardgames based on the BGG API
Daily Random Note
2 years ago by Alexandre Silva
Daily Random Notes in Obsidian.
doing
2 years ago by rooyca
What was I doing?
Note Favicon
2 years ago by mdklab
Obsidian plugin – Show Favicon from Metadata
Target Word Count
2 years ago by TwoFive Labs
Target Word Count Plugin for Obsidian
AI Revisionist
2 years ago by Synaptic Labs
ExMemo Assistant
2 years ago by ExMemo AI
Using LLMs to manage files and generating metadata such as tags and summaries.
Hotstrings
2 years ago by wakywayne
Discord Message Sender
a year ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
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.
Kikijiki Habit Tracker
2 years ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
NotePix
a year ago by Ayush Parkara
Automatically upload Obsidian images to GitHub (public/private) and replace them with fast hosted links. Encrypted, cross-platform.
Current File Tags
2 years ago by Trung Tran
My Thesaurus
2 years ago by Mara-Li
A plugin that auto tags file based on contents and a csv file or a Markdown table (inspired by https://github.com/pmartinolli/MyThesaurus)
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
Note Progressbar
6 months ago by Ryoma Kawahara
Simple File Info
a year ago by Lukas Capkovic
Mastodon Threading
2 years ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
Rsync
2 years ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Memos AI Sync
2 years ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Tab Limiter
2 years ago by Henry Gustafson
Limits the number of tabs that can be opened in Obsidian
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Handlebars Dynamic Templating
8 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
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.
JIRA links shortener
a year ago by Ruslans Platonovs
Obsidian JIRA links shortener plugin
Another Name
a year ago by Jiyuan Wang
Add a subheading to your note in Obsidian
IMSwitch in Math Block
2 years ago by XXM
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Auto Daily Note
a year ago by John Dolittle
Open or Create File
a year ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Plugin REPL
2 years ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
Discrete
a year ago by shkarlsson
Property Panels
2 months ago by Eva Chen
Display and edit Obsidian frontmatter properties in configurable panels that stay inside the note's scrollable content.
Random Wikipedia Article
a year ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
Select word
2 years ago by Connor Espino
Hanko
2 years ago by Telehakke
Obsidian plugin.
Daily Notes Automater
a year ago by David Pedrero
Copy Local Graph Paths
2 years ago by Amy Z
copy-local-graph-paths is a simple Obsidian plugin that copies the paths of notes linked to your current page.
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
Onto Tracker
2 years ago by Jacob Hart
Plugin for obsidian allowing project management with ontologies.
Frontmatter Metadata Link Classes
a year ago by Varvara Zmeeva / zmeeva.io
Enhanced internal links with automatic classnames based on frontmatter metadata.
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.
Floating Quick Note
19 days ago by sabosman
Floating Quick Note is an Obsidian plugin that lets you open a small, detached note window that stays on top of your other apps. It is great for taking notes during meetings or while you are working in other programs without having to switch back and forth to Obsidian.
Vault Shelf
12 days ago by Lukas Proprentner
Your Obsidian vault as a browsable library: shelves of books built from titles, dates, people, tags, folders or any note property. Customizable to make it your own.
Blog AI Generator
2 years ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
KOI Sync
2 years ago by Luke Miller
MD Butler
a month ago by Peter Petschownik
Automatically manages YAML frontmatter fields for all notes. A reliable alternative to Templater formulas for consistent metadata.
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
Frontmatter to HTML Attributes
6 months ago by Tarek Saier
Task Director
2 years ago by Cybertramp
A plugin that allows you to easily manage tasks in bulk.
Superstition
2 years ago by Jeffry
An Obsidian plugin for routine management.
One Step Wiki Link
2 years ago by Busyo
用于 Obsidian 一步插入当前界面匹配到的所有外链(维基链接)
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
Sonkil
a year ago by ohyoungpark
PixNote
a month ago by Sofia Milton
Mapa neuronal
9 days ago by Felipe Córdova
A graph that explains itself: your Obsidian vault as a layered neural map, with the reason each note links to the next.
Crackboard
2 years ago by Franklin
Obsidian plugin for crackboard.dev
Content OS
a year ago by eharris128
Post to LinkedIn from within Obsidian
Move Cursor On Startup
a year 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.
SolidTime Integration
a year ago by proniclabs
Obsidian SolidTime Integration Plugin
EUpload
2 years ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。