Note UID Generator

by Valentin Pelletier
5
4
3
2
1
Score: 57/100

Description

The UID Generator plugin helps with assigning and managing unique identifiers in your notes' frontmatter, making it easier to track, reference, or integrate notes with external workflows. It supports manual and automatic UID generation, including the ability to apply UIDs only when missing or to update them forcefully. Users can define custom metadata keys, format how UIDs are copied alongside note titles, and apply bulk operations across folders.

Reviews

No reviews yet.

Stats

22
stars
3,242
downloads
3
forks
455
days
17
days
17
days
4
total PRs
0
open PRs
0
closed PRs
4
merged PRs
3
total issues
0
open issues
3
closed issues
35
commits

Latest Version

17 days ago

Changelog

README file from

Github

UID Generator Plugin for Obsidian

Overview

The UID Generator plugin for Obsidian provides tools to create and manage unique identifiers (UIDs) for your notes directly within their frontmatter metadata. It supports multiple generator algorithms — UUID (v4), NanoID (customizable length, alphabet, and separators), ULID (lexicographically sortable), and Snowflake (64-bit time-sortable distributed ID) — along with manual and automatic UID generation, customization of the metadata key and copy formats, and bulk operations within folders. This helps in creating stable, unique references for your notes, useful for linking, scripting, or external systems.

Features

  • Multiple Generator Algorithms:
    • UUID (v4) — Standard 36-character universally unique identifier.
    • NanoID — Customizable length, alphabet, and optional separator characters injected at specific positions.
    • ULID — 26-character, lexicographically sortable identifier that encodes creation time (useful for chronological ordering).
    • Snowflake — 64-bit time-sortable numeric ID (41-bit Unix timestamp + 10-bit node ID + 12-bit per-ms sequence). Node ID is auto-derived from the machine's MAC address on desktop and falls back to a random persistent value on mobile; both can be overridden manually.
  • Collision Avoidance: An in-memory index of every UID in the vault ensures newly generated IDs are unique, with automatic retry on collision.
  • Duplicate Detection: Catches UIDs that were never generated here — a note copied, synced in, or made from a template arrives carrying somebody else's UID, which collision avoidance cannot see.
    • On new notes: When a note is created carrying a UID another note already has, the plugin can show a notice or generate a fresh UID for the newcomer (never for the note it came from). Configurable, including off.
    • Vault-wide scan: Lists every UID more than one note carries — from the ribbon, the command palette, or a settings button. For each note you can either keep its UID (the rest of the group gets fresh ones) or give just that one a fresh UID.
    • Type-agnostic: The scan groups notes by the raw value under your configured UID key, so UUIDs, NanoIDs, ULIDs and Snowflakes are all compared together — switching generator algorithms never hides a duplicate.
  • Generate/Update UID: Manually generate a new UID for the current note, optionally overwriting any existing UID under the configured key.
  • Create UID If Missing: Manually generate a UID for the current note only if one doesn't already exist.
  • Remove UID: Manually remove the UID from the current note's frontmatter.
  • Copy UID: Copy the UID of the current note to the clipboard.
  • Copy title + UID: Copy the title and UID of the current note (or multiple selected notes) to the clipboard, using a customizable format.
  • Automatic UID Generation: Automatically add a UID to notes upon creation or opening if they lack one.
    • Configurable scope (entire vault or one or more specific folders).
    • Ability to exclude specific folders.
    • Never overwrites existing UIDs during automatic generation.
  • Clear UIDs in Folder: Remove all UIDs (using the configured key) from notes within a specified folder and its subfolders, with confirmation.
  • Customizable UID Key: Choose the frontmatter key name for your UIDs (e.g., uid, id, noteId).
  • Customizable Copy Format: Define templates for how title/UID information is copied.
  • Ribbon Icon: Quick access to "Create UID if missing" for the current note.
  • Context Menu Actions:
    • Right-click a folder: Copy titles+UIDs for all notes inside.
    • Right-click a single note: Copy Title+UID.
    • Right-click multiple selected notes: Copy titles+UIDs for the selection (uses undocumented files-menu event).
  • Folder Path Suggestions: Autocomplete suggestions for folder paths in settings.

Installation

  1. Download the plugin files (main.js, manifest.json, styles.css) from the latest release on the GitHub repository (or build them yourself).
  2. Create a new folder named obsidian-note-uid-generator inside your Obsidian vault's plugins folder (YourVault/.obsidian/plugins/).
  3. Copy the downloaded main.js, manifest.json, and styles.css files into the obsidian-note-uid-generator folder.
  4. Restart Obsidian or reload plugins.
  5. Go to Obsidian Settings -> Community plugins.
  6. Find "UID Generator" in the list of installed plugins and enable it.

Usage

Commands

The plugin provides the following commands accessible from the command palette (Ctrl+P or Cmd+P):

  • UID Generator: Generate/Update [YourKeyName] (Overwrites): Creates a new UID for the current note. If a UID already exists under the configured key name ([YourKeyName]), it will be replaced.
  • UID Generator: Create [YourKeyName] if missing: Creates a new UID for the current note only if one doesn't already exist under the configured key name.
  • UID Generator: Remove [YourKeyName] from current note: Deletes the UID key and value from the current note's frontmatter.
  • UID Generator: Copy [YourKeyName] of current note: Copies the UID value to the clipboard. (Only available if the current note has a UID).
  • UID Generator: Copy title + [YourKeyName]: Copies the current note's title and UID using the configured format. (Always available if a note is open).
  • UID Generator: Copy titles+[YourKeyName]s for selected files: Copies the titles and UIDs for all Markdown files currently selected in the file explorer, using the configured format. (Only available when the file explorer is active and has Markdown files selected).
  • UID Generator: Scan for duplicate [YourKeyName]s: Reads every note in the vault and opens a report of the UIDs more than one note carries. Reports a notice instead when there are none.

Ribbon Icons

Two ribbon icons are added to the left sidebar:

  • Fingerprint: performs the Create [YourKeyName] if missing action on the currently active note.
  • Magnifier: runs Scan for duplicate [YourKeyName]s over the whole vault.

Context Menus

  • Right-clicking a Folder in the file explorer: Provides an option Copy titles+[YourKeyName]s from "[FolderName]". This copies the titles and UIDs of all Markdown notes within that folder (and subfolders) according to your format settings.
  • Right-clicking a Single Markdown File: Provides an option Copy Title+[YourKeyName]. This copies the title and UID for that specific file.
  • Right-clicking multiple selected files: Provides an option Copy titles+[YourKeyName]s for X selected. This copies the titles and UIDs for all selected Markdown files.
    • Note: This specific multi-file context menu relies on an undocumented Obsidian event (files-menu). While functional, it could potentially break in future Obsidian updates. The Command Palette option provides a more stable alternative for multi-file selection.

Settings

Access the plugin settings from Obsidian Settings -> Community Plugins -> UID Generator:

  • General:
    • UID Metadata Key: Set the frontmatter key name used for storing UIDs (default: uid). Avoid spaces.
  • UID Generator Type:
    • Generator Algorithm: Choose between UUID, NanoID, ULID, or Snowflake.
    • NanoID Length: (NanoID only) Length of the generated ID, excluding separators. Min 4, max 128. (Default: 21)
    • NanoID Alphabet: (NanoID only) Characters used for ID generation. Must have at least 2 unique characters. (Default: 0-9A-Za-z)
    • NanoID Separator Groups: (NanoID only) Inject characters at specific positions in the generated ID. Positions can be negative (count from end). Multiple groups supported.
    • Machine Node ID: (Snowflake only) Read-only display of the 10-bit node ID derived from this machine — MAC-hashed on desktop, random persistent on mobile. Used for generated IDs unless a Custom Node ID is set below.
    • Custom Node ID: (Snowflake only) Optional override (0–1023). When set, takes precedence over the Machine Node ID. Leave empty to use the machine value.
  • Automatic UID Generation:
    • Enable Automatic UID Generation: Toggle the automatic creation of UIDs on/off.
    • Generation Scope: Choose Entire Vault or Specific Folder(s).
    • Target Folders for Auto-Generation: (Visible if Scope is 'Specific Folder(s)') Click "Manage folders" to open a modal where you can search, add, or remove folders that should be in scope for auto-generation. Notes in any of the listed folders (including subfolders) are eligible. Settings created with previous versions of the plugin are migrated automatically.
    • Excluded Folders: Click "Manage Exclusions" to open a modal where you can search, add, or remove folders that should be ignored by automatic generation. The current list is displayed below the button.
  • Duplicate UIDs:
    • On a new note arriving with a duplicate UID: Do nothing, Show a notice (default), or Generate a fresh UID. Only ever applies to notes as they are created — an existing note you merely edit is never rewritten, so the note a copy was taken from keeps its UID.
    • Scan the vault for duplicate UIDs: Reads every note and opens a report of the UIDs more than one note carries. Also available from the ribbon and the command palette. Each group lists its notes oldest first, and each note offers two ways out:
      • Keep this one — this note keeps the UID; every other note in the group gets a fresh one. Best when you know which note is the original.
      • New UID for this one — only this note gets a fresh UID; the rest of the group is left alone. Best when you know which note is the copy, or when resolving a large group one note at a time.
      • Keep the oldest in each resolves every group at once, keeping the oldest note in each.
  • Copy Format:
    • Format (UID exists): Define the template for copied text when a UID is present. Use placeholders {title}, {uid}, {uidKey}. (Default: {title} - {uidKey}: {uid})
    • Format (UID missing): Define the template for copied text when a UID is missing. Use placeholders {title}, {uidKey}. (Default: {title} - No {uidKey})
  • Manual UID Clearing:
    • Folder to clear UIDs from: Specify the vault path for the bulk removal action. Uses folder path suggestions.
    • Clear UIDs Now: Button to initiate the removal process for the specified folder.
      • Warning: This is irreversible.
      • A confirmation modal will appear.
      • If automatic UID generation is enabled, it will be temporarily disabled as a safety measure when you confirm the deletion. You will be notified and can re-enable it afterwards.

Example Usage

  • Ensure a Note Has a Unique ID: Open the note, open the command palette, run UID Generator: Create uid if missing.
  • Link Using UID: Open a note, run UID Generator: Copy uid, paste the UID into another note's link or alias.
  • Auto-Assign IDs to New Notes in Inbox: Enable Automatic Generation, set Scope to 'Specific Folder(s)', click "Manage folders" and add Inbox (and any other target folders).
  • Clean Up Old IDs: Set 'Folder to clear UIDs from' to Archives/Old Project, click 'Clear UIDs Now', confirm.
  • Get List of Project Notes with IDs: Right-click the Projects/Current Project folder, select Copy titles+uids from "Current Project".
  • Clean Up After Copying Notes: Click the magnifier in the ribbon (or run Scan for duplicate uids). For each group, either 'Keep this one' on the original or 'New uid for this one' on the copy — or 'Keep the oldest in each' to resolve every group at once.

Development

For developers interested in contributing:

Setup

  1. Clone the GitHub repository to your local machine.
  2. Navigate to the repository directory.
  3. Install dependencies: npm install (or yarn install).

Build

  • To compile the TypeScript code to JavaScript (main.js), run: npm run build (or yarn build).
  • For development, you can often use a watch command like npm run dev (if configured in package.json) to automatically rebuild on changes.

Code Structure

The code splits in two: src/uid is the domain (what a uid is and what can be done to one), src/plugin is the Obsidian-facing surface (commands, settings, events). Each folder is entered through one file — its "door" — and the split is checked in CI by npm run arch.

  • src/main.ts: The Obsidian entry point (UIDGenerator, onload), which does nothing but start the plugin.
  • src/plugin/: register.ts wires every surface into Obsidian; state.ts adapts Obsidian's persistence to the domain's port.
  • src/plugin/commands/: Command, ribbon and context-menu handlers, registered by commands/register.ts.
  • src/plugin/settings/: SettingsTab.ts plus one folder per settings feature — generator/, autoGeneration/, clearing/ — each owning the widgets and vault pass it uses.
  • src/plugin/duplicates/: The duplicate scan, its report modal and its settings section. It sits beside commands/ and settings/ because it is both, and plugin/register.ts wires it into each.
  • src/settings.ts: The persisted settings shape, its defaults, and the migration of whatever an older version wrote.
  • src/uid/: context.ts (what the domain needs from its host), noteUid.ts (read/ensure/renew/clear one note's uid), bulk.ts (vault-wide passes), duplicates.ts (notes sharing a uid), scope.ts, folderNotes.ts.
  • src/uid/generators/: generate.ts (unique ids, retrying past collisions) over the UUID, NanoID, ULID and Snowflake modules.
  • src/uid/storage/: Frontmatter read/write, the UidIndex of which notes carry which uid, and the vault sync that keeps it current.
  • src/plugin/obsidian.d.ts: TypeScript declarations for undocumented Obsidian APIs used (like files-menu).

Contributing

Contributions, issues, and feature requests are welcome! Please feel free to check the issues page or submit a pull request on the GitHub repository.

License

This plugin is licensed under the OBSD License. See the LICENSE file for details.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Binary File Manager
5 years ago by qawatake
An Obsidian plugin to manage binary files
Frontmatter Tag Sugest
5 years ago by Jonathan Miller
Autocompletes tags in Obsidian YAML frontmatter. No more deleting #!
Execute Code
4 years ago by twibiral
Obsidian Plugin to execute code in a note.
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Auto Card Link
4 years ago by Nekoshita Yuki
Front Matter Title
4 years ago by Snezhig
Plugin for Obsidian.md
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.
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Linkify
4 years ago by Matthew Chan
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
Metadata Menu
4 years ago by mdelobelle
For data management enthusiasts : type and manage the metadata of your notes.
Open Related Url
4 years ago by Dan Pickett
Open File by Magic Date
4 years ago by simplgy
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
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
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
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.
FuzzyTag
4 years ago by Adrian
Weekly Review
4 years ago by Brandon Boswell
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.
Note aliases
4 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Babashka
4 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
Testing Vault
3 years ago by Michael Pedersen
Frontmatter Alias Display
3 years ago by muhammadv-i
A plugin for Obsidian.md to show front-matter aliases as display names in the file menu.
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
Linked Data Vocabularies
3 years ago by kometenstaub
Add linked data to the YAML of your Obsidian notes.
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
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
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
Auto Front Matter
3 years ago by conorzhong
Add an ID to the front matter
3 years ago by llimllib
Notes dater
3 years ago by Paul Treanor
Adds created_on and updated_on dates of the active note to status bar
Bulk Exporter
3 years ago by symunona
Bulk export Markdown filtered, renamed and sorted by front matter metadata into a new structure.
Auto Hyperlink
3 years ago by take6
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Update frontmatter modified date
3 years ago by Alan Grainger
Automatically update a frontmatter/YAML modified date field
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
Gnome Terminal Loader
3 years ago by David Carmichael
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Copy Metadata
3 years ago by wenlzhang
An Obsidian plugin to copy metadata to clipboard and insert it into file name.
Auto Tag
3 years ago by Control Alt
Easily generate relevant tags for your Obsidian notes.
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
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
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.
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
File Index
3 years ago by Steffo
Obsidian plugin to create a metadata file about the files present in the Vault
Run
3 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
Sort Frontmatter
3 years ago by Kanzi
Sort frontmatter automatically
Additional Icons
3 years ago by Matthew Turk
Add additional iconsets to Obsidian
RSS Copyist
3 years ago by aoout
Get the RSS articles as notes.
Daily note creator
3 years ago by Mario Holubar
Automatically creates missing daily notes.
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.
Metadata Icon
3 years ago by Benature
change metadata entry icon
Prompt ChatGPT
3 years ago by Coduhuey
Differential ZIP Backup
3 years ago by vorotamoroz
Automation
2 years ago by Benature
Update Time Updater
2 years ago by MURATAGAWA Kei
Obsidian plugin to update the 'update time' element when saving or manually.
Personal OS
2 years ago by A.Buot
LinkMagic
2 years ago by AndyReifman
Draft Indicator
2 years ago by Brian Boucheron
Show draft status with ✎ icons in the Obsidian file explorer.
Update Time
2 years ago by Sébastien Dubois
Obsidian plugin that updates front matter to include creation and last update times
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
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.
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Front Matter Timestamps
2 years ago by LighthouseDino
Track note created and modified times in front matter, kept up to date automatically.
Image Metadata
2 years ago by alexeiskachykhin
Adds image metadata editing capabilities to Obsidian
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
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.
Note 2 Tag Generator
2 years ago by Augustin
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
Virus Total Enrichment
2 years ago by ytisf
An Obsidian plugin to enrich a note with VirusTotal API.
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
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.
Onto Tracker
2 years ago by Jacob Hart
Plugin for obsidian allowing project management with ontologies.
Recent Files
6 years ago by Tony Grosinger
Display a list of most recently opened files
Templater
6 years ago by SilentVoid
A template plugin for obsidian
Snippets
6 years ago by Pelao
Dataview
6 years ago by Michael Brenan
A data index and query language over Markdown files, for https://obsidian.md/.
Advanced URI
5 years ago by Vinzent
Advanced modes for Obsidian URI
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Excalidraw
5 years ago by Zsolt Viczian
A plugin to edit and view Excalidraw drawings in Obsidian
Supercharged Links
5 years ago by mdelobelle
obsidian plugin to add attributes and context menu options to internal links
MetaEdit
5 years ago by Christian B. B. Houmann
MetaEdit for Obsidian
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
Force note view mode
5 years ago by Benny Wydooghe
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.
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
Metadata Extractor
5 years ago by kometenstaub
Obsidian Plugin that provides metadata export for use with third-party apps.
Update time on edit
5 years ago by beaussan
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
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.
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Featured Image
2 years ago by Johan Sanneblad
Obsidian plugin to automatically set a featured image property in your notes based on the first image, YouTube link, or Auto Card Link image found in your document. This allows you to create rich note galleries using Folder Notes and Dataview.
ExMemo Assistant
2 years ago by ExMemo AI
Using LLMs to manage files and generating metadata such as tags and summaries.
KoReader Highlight Importer
2 years ago by Tahsin Kocaman
Imports highlights and metadata from KoReader into Obsidian notes
pycalc
2 years ago by pycalc
Frontmatter Markdown Links
2 years ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Hanko
2 years ago by Telehakke
Obsidian plugin.
Boardgame Search
2 years ago by Marlon May
A plugin to create notes for boardgames based on the BGG API
Sentinel
2 years ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to update properties or run commands based on document visibility changes.
Missing Link File Creator
2 years ago by Lemon695
The plugin creates both missing links and the corresponding files.
Current File Tags
2 years ago by Trung Tran
Dataview Autocompletion
2 years ago by Daniel Bauer
Hephaistos Importer
2 years ago by Skallaturi
Non-official plugin for importing characters from Hephaistos.online to Obsidian.md
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.
Plugin REPL
2 years ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
InlineAI
2 years ago by FBarrca
Media Companion
2 years ago by Nick de Bruin
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.
Enhanced Canvas
2 years ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
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.
Mastodon Threading
2 years ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
AI integration Hub
2 years ago by Hishmat Salehi
A modular AI integration hub for Obsidian
Fold Properties By Default
2 years ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Organized daily notes
2 years ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Hotstrings
2 years ago by wakywayne
Runsh
2 years ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
EUpload
2 years ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。
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.
Automatic Linker
2 years ago by Kodai Nakamura
Last Position
2 years ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
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.
LLM Tagger
2 years ago by David Jayatillake
Rsync
2 years ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Paste Image Into Property
2 years ago by Nito
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)
Task Mover
2 years ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Title As Link Text
2 years ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
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.
KOI Sync
2 years ago by Luke Miller
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.
Memos AI Sync
2 years ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Blog AI Generator
2 years ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
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.
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.
IMSwitch in Math Block
a year ago by XXM
Note Favicon
a year ago by mdklab
Obsidian plugin – Show Favicon from Metadata
File Title Updater
a year ago by wenlzhang
An Obsidian plugin that synchronizes titles between filename, frontmatter, and first heading in your notes.
One Step Wiki Link
a year ago by Busyo
用于 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.
Simple File Info
a year ago by Lukas Capkovic
Auto Daily Note
a year ago by John Dolittle
Daily Notes Automater
a year ago by David Pedrero
Another Name
a year ago by Jiyuan Wang
Add a subheading to your note in Obsidian
Title-Only Tab
a year ago by tristone13th
a plugin of obsidian for to change showing tab name to short
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
GitHub Integration
a year ago by Kirill Zhuravlev
Plugin that fetch your github stars into notes
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Simple Banner
a year ago by Sandro Ducceschi
Visually enhance your Obsidian notes with a customizable banner. Supports icons and time/date display.
Discord Message Sender
a year ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
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.
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.
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.
Timeline Canvas Creator
a year ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Frontmatter Metadata Link Classes
a year ago by Varvara Zmeeva / zmeeva.io
Enhanced internal links with automatic classnames based on frontmatter metadata.
Insert Arknights URL Banner
a year ago by Rerurate_514
Obsidianのプラグイン、img_dwnldr_wikigg_ak_ktに保存されている画像を選択してbannersプロパティに簡単に設定できるプラグイン
Template Folder
a year ago by LucasOe
Obsidian plugin to move notes to a folder when applying a template.
Random Wikipedia Article
a year ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
Discrete
a year ago by shkarlsson
Publish Note to Mowen Note
a year ago by ziyou
This is a mowen plugin for Obsidian (https://obsidian.md)
Content OS
a year ago by eharris128
Post to LinkedIn from within Obsidian
Papers
a year ago by William Liang
An obsidian plugin to retrieve and import research papers.
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.
Note Codes
a year ago by Ezhik
Reference your Obsidian notes from anywhere with simple 4-character codes.
URL Formatter
a year ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
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.
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.
Pretty Properties
a year ago by Anareaty
Open or Create File
a year ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Steward
10 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.
Book Clipper
9 months ago by Hossein Fardmohammadi
Save book details from websites into your notes
Conditional Properties
8 months ago by Diego Eis
Automate frontmatter property updates in your Obsidian notes using simple conditional rules.
Connections
8 months ago by Eric Van Cleve
Handlebars Dynamic Templating
7 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
Frontmatter to HTML Attributes
6 months ago by Tarek Saier
Banners Reloaded
6 months ago by Dani García
Banners Reloaded offers a simple, fast, and lightweight way to add beautiful and customizable banners to your Obsidian notes. Designed for performance, it gives you powerful control over your vault's appearance through an intuitive interface. Set banners globally, by tag, or override them on any individual note.
Snipd Official
4 months ago by snipd-app
Local REST API with MCP
4 months ago by Adam Coddington
A secure REST API and Model Context Protocol (MCP) server for your vault.
Base Board
3 months ago by mderazon
Kanban Plugin For Obsidian
Life Tracker
3 months ago by Sébastien Dubois
Capture and visualize the data that matters in your life
Better Export PDF
3 months ago by l1xnan
Obsidian PDF export enhancement plugin
April Automatic Timelines
3 months ago by april-gras
Simple timeline generator plugin for story tellers using obsidian
Hot Reload
2 months ago by pjeby
Automatically reload Obsidian plugins in development when their files are changed
Advanced Note Mover
2 months ago by Lars Bücker
Quickly and easily move notes to predefined folders. Perfect for organizing your notes.
Bases Toolbox
a month ago by Grub Basket
Adds Quality of Life features to Obsidian Bases
Property Panels
a month ago by Eva Chen
Display and edit Obsidian frontmatter properties in configurable panels that stay inside the note's scrollable content.
Bulk Tag Manager
a month ago by ducktapekiller
A comprehensive utility to standarize the entire front matter. Features a dashboard for bulk renaming, enforcing casing rules (lowercase/uppercase), swapping separators (snake/kebab), and generating master tag lists.
Daily News Briefing
a month 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.
Note Types
a month ago by jsmorabito
Community Install Manager
a month ago by Konstantin Volobuev
Allows you to use `community-plugins.js` to search for and automatically install plugins when you launch `obsidian`.
Gantt this
a month ago by Altarok
Obsidian plugin showing multiple TTRPG calendars at once in one gantt chart.
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.
PixNote
20 days ago by Sofia Milton
Metadata Validator
19 days ago by flowing-abyss
Manifest-driven metadata validation for Obsidian.