Auto Move File

by sx kan
5
4
3
2
1
Score: 30/100

Description

The Auto Move File plugin automates moving or copying notes and folders when frontmatter properties or file names match user defined rules. It supports multiple rules, exact and fuzzy matching, property based and filename based monitoring and priority control either by rule order or by the order of properties in frontmatter. Global settings let you restrict the watch scope to specific folders, set required filename keywords, choose delay units and switch real time monitoring on or off. Rules can block moves when another value is present, archive whole folders instead of single files and copy files while keeping the original. Manual commands are included to check the current file or scan all matching files.

Reviews

No reviews yet.

Stats

18
stars
1,344
downloads
1
forks
8
days
8
days
8
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
2
total issues
2
open issues
0
closed issues
29
commits

Latest Version

9 days ago

Changelog

Release 3.2.2

README file from

Github

Made with ❤️ by Jituo Workshop

Auto Move File

English | 中文

Website: https://gitapp.net

An Obsidian plugin that automatically moves or copies files to specified directories based on frontmatter properties or filenames. Supports multiple rules, multiple property monitoring, and flexible target folder configuration.

🚀 Features

  • Auto Move/Copy Files: Automatically move or copy files based on frontmatter properties or filenames
  • Exact/Fuzzy Matching: Each rule can independently choose its matching mode to fit different archiving needs
  • Multi-Rule Management: Support for adding multiple rules, executed in order of matching
  • Rule Sorting: Support for adjusting rule order via buttons, affecting execution priority
  • Monitoring Mode Switching: Support for property monitoring and filename monitoring modes
  • Execution Priority Mode: Choose between rule order or property value order for priority
  • Real-Time Monitoring Toggle: Enable/disable real-time monitoring; when disabled, only manual button triggers work
  • Flexible Time Settings: Support for milliseconds/seconds/minutes delay time units
  • Custom Monitoring Properties: Can monitor any frontmatter property such as tags, status, category
  • Multiple Data Types: Support for array types (e.g., tags) and string types (e.g., status)
  • Folder Archiving: Support for archiving entire folders to target directories
  • Scan Scope Settings: Manually trigger scanning of specific folders only
  • Folder Selector: Visual selection of target folders
  • Full Chinese Support: Supports Windows paths and Chinese paths

📦 Installation

Method 1: Manual Installation

  1. Download the files from the repository
  2. Extract to your Obsidian vault's .obsidian/plugins/ directory
  3. Restart Obsidian
  4. Go to SettingsCommunity Plugins
  5. Find Auto Move File and enable the plugin

Method 2: Install from GitHub

  1. Download main.js, manifest.json, and styles.css
  2. Place files in .obsidian/plugins/auto-move-file/ directory
  3. Restart Obsidian and enable the plugin

🎯 Usage

Basic Workflow

  1. Open plugin settings and add rules
  2. Configure monitoring properties, trigger values, target folders, etc.
  3. Save settings
  4. Modify file frontmatter properties or filenames to match rules
  5. Files automatically move/copy to target directories

Global Configuration

Setting Description Default
Watch Folder Only monitor files in specified folder (empty = entire vault) Empty
Keywords Keywords that filenames must contain (empty = ignore, comma-separated for multiple) Empty
Delay Time Delay before checking after file modification 2000
Delay Time Unit Milliseconds(ms)/Seconds(s)/Minutes(min) ms
Scan Folder Folder to scan when manually triggered (empty = entire vault) Empty
Execution Priority Mode By rule order / By property value order By rule order
Real-Time Monitoring Enable/disable auto-trigger Enabled

Rule Configuration

Setting Description
Watch Mode Property monitoring / Filename monitoring
Match Mode 🎯 Exact match / 🔍 Fuzzy match
Watch Property Frontmatter property name to monitor (e.g., tags, status)
Trigger Value Trigger archiving when property contains this value
Blocking Value Do not move if property also contains this value
Target Folder Target path for file movement
Folder Archive Mode Archive entire folder (instead of single file)
Copy Mode Copy file instead of moving (keep original)
Enabled Status Enable/disable this rule

Configuration Examples

Example 1: Monitor tags

Frontmatter:

---
tags: [draft, article]
---

Rule Configuration:

  • Watch Property: tags
  • Trigger Value: published
  • Blocking Value: draft

Trigger: Change tags to [published] and save


Example 2: Monitor status

Frontmatter:

---
status: draft
---

Rule Configuration:

  • Watch Property: status
  • Trigger Value: published

Trigger: Change status to published and save


Example 3: Monitor filename

Filename:

project-published.md

Rule Configuration:

  • Watch Mode: Filename
  • Filename Contains: published

Trigger: Triggered when filename contains published


Example 4: Multi-Rule Priority

Rule 1 (Order 1):

  • Watch Property: tags
  • Trigger Value: published-wechat
  • Target Folder: archive/wechat

Rule 2 (Order 2):

  • Watch Property: tags
  • Trigger Value: published
  • Target Folder: archive/general

File:

tags: [published-wechat, published]

→ Moved to archive/wechat (Rule 1 priority)

🎚️ Match Mode Explanation

Each rule can independently choose between "Exact Match" and "Fuzzy Match":

🎯 Exact Match

  • Property monitoring: Property value must be exactly equal to the trigger value
    • status: published-article with trigger value published → ❌ No trigger
    • For array types (e.g., tags), one item must exactly equal the trigger value
  • Filename monitoring: Filename (without extension) must be exactly identical
    • Filename published.md with keyword published → ✅ Triggers
    • Filename project-published.md with keyword published → ❌ No trigger

🔍 Fuzzy Match (Contains)

  • Property monitoring: Triggers when property value contains the trigger value (case-insensitive)
    • status: published-article with trigger value published → ✅ Triggers
    • tags: [article/published/xiaohongshu] with trigger value published → ✅ Triggers
  • Filename monitoring: Triggers when filename contains the keyword (case-insensitive)
    • With keyword notes, filenames like daily-notes.md, notes2026.md, my-notes.md all trigger
    • Filename project-published.md with keyword published → ✅ Triggers

The blocking value uses the same match mode as the trigger value. Backward compatible: in existing rules, property monitoring keeps exact matching and filename monitoring keeps contains matching by default; you can change this when editing a rule.

Advanced: fuzzy match keywords are also regex-compatible (e.g., weekly|monthly). If you don't know regex, just type plain text — it behaves exactly like contains matching; invalid regexes automatically fall back to contains matching, so it never errors out.

⚙️ Execution Priority Explanation

By Rule Order (Default)

Priority is determined by the order of rules in the list. Rules listed first have higher priority.

Use Case: When you need precise control over which rule matches first

By Property Value Order

Priority is determined by the order of properties defined in frontmatter. Rules corresponding to properties defined earlier in the file execute first.

Use Case: When file properties themselves have priority meaning

Example:

status: completed
tags: [published]
  • Rule 1: Monitor tags = published
  • Rule 2: Monitor status = completed

→ Triggers Rule 2 (because status appears first in frontmatter)

🔧 Quick Commands

  • Check and Move Current File: Check if currently open file meets move conditions
  • Check and Move All Files: Check all matching files and batch move them

❓ FAQ

Q: Files not moving automatically?

A: Please check:

  1. Is real-time monitoring enabled?
  2. Is file within watch folder (if set)?
  3. Does filename contain keywords (if set)?
  4. Is the rule enabled?
  5. Are frontmatter property values correct?
  6. Does it contain blocking values?

Q: How to adjust rule priority?

A: In the rule list, click the ⬆️ or ⬇️ buttons on the right side of the rule to adjust order. Rules listed first have higher priority (when priority mode is set to "By rule order").

Q: How to only trigger manually without auto-archiving?

A: Turn off the "Real-Time Monitoring" switch. When disabled, file modifications won't auto-trigger; you can only trigger via the "Check All Files" button.

Q: How to debug the plugin?

A: Open Obsidian's Developer Tools (Ctrl + Shift + I), check the Console tab for detailed plugin logs.

📝 Changelog

v3.2.2

  • ✅ English-first README; Chinese documentation moved to README_zh-CN.md (fixes directory scan warning)
  • ✅ versions.json no longer included in release assets (per directory recommendation; the file stays in the repository)
  • ✅ No functional changes

v3.2.1

  • ✅ Bilingual README: added English section (intro/installation/usage) for the official directory
  • ✅ Added standard build script (scripts/build.js) for build verification
  • ✅ Added GitHub Actions release workflow with build-provenance attestations
  • ✅ No functional changes (main.js identical to 3.2.0)

v3.2.0

  • ✅ Added match mode option: each rule can choose exact or fuzzy matching
  • ✅ Fuzzy matching is contains matching (case-insensitive): type notes and every filename/property value containing it triggers
  • ✅ Fuzzy match keywords are regex-compatible (advanced usage); invalid regexes automatically fall back to contains matching
  • ✅ Filename monitoring added exact match (filename without extension must be identical)
  • ✅ Rule list now displays each rule's match mode
  • ✅ Marketplace compliance fixes: removed startup notice, scoped CSS styles, mobile compatibility (electron platform check), logs gated behind DEBUG flag, added versions.json

v3.1.0

  • ✅ Added real-time monitoring toggle
  • ✅ Added delay time unit selection (ms/s/min)
  • ✅ Added scan folder setting (for manual triggering)
  • ✅ Added execution priority mode switching (rule order/property value order)
  • ✅ Added rule up/down move functionality
  • ✅ Optimized folder selector with real-time updates
  • ✅ Author info updated to "Jituo Workshop"

v3.0.0

  • ✅ Support for multi-rule management
  • ✅ Support for property monitoring and filename monitoring
  • ✅ Support for folder archive mode
  • ✅ Support for batch rule operations

v2.4

  • ✅ Added custom monitoring property feature
  • ✅ Support for array and string types

👨‍💻 Author

Jituo Workshop

Website: https://gitapp.net

📄 License

MIT License

🤝 Contributing

Issues and Pull Requests welcome!

If you like this plugin, please give it a Star ⭐


Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Add an ID to the front matter
3 years ago by llimllib
Add Attachment
2 days ago by olegg90
Obsidian plugin for adding multi attachments
Advanced Note Mover
2 months ago by Lars Bücker
Quickly and easily move notes to predefined folders. Perfect for organizing your notes.
Advanced URI
5 years ago by Vinzent
Advanced modes for Obsidian URI
AI integration Hub
2 years ago by Hishmat Salehi
A modular AI integration hub for 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.
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.
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.
Alternative Explorer
a month ago by sk-obsidian
Alternative Explorer is an Apple Notes–style sidebar for browsing folders and notes in Obsidian. Switch between an expandable folder tree and a notes list — a compact alternative to the built-in File Explorer.
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
Attachment Organizer
2 months ago by kiteruunner
Automatically organize attachments into zone-based folders with conflict detection and batch operations
Auto Archive
3 years ago by Shane Burke
Auto Archive plugin for Obsidian
Auto Daily Note
a year ago by John Dolittle
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.
Auto Front Matter
3 years ago by conorzhong
Auto Hyperlink
3 years ago by take6
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.
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.
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
Automatic Linker
2 years ago by Kodai Nakamura
Automation
2 years ago by Benature
Babashka
4 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
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.
Base Board
3 months ago by mderazon
Kanban Plugin For Obsidian
Bases Toolbox
2 months ago by Grub Basket
Adds Quality of Life features to Obsidian Bases
Better File Link
5 years ago by Marc Julian Schwarz
A plugin for the note taking app Obsidian to add better external file links to your notes.
Binary File Manager
5 years ago by qawatake
An Obsidian plugin to manage binary files
Blog AI Generator
2 years ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
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.
Cloud Storage
2 years ago by Jiajun Ma
Obsidian Cloud Storage is a powerful and user-friendly plugin designed to seamlessly integrate cloud storage capabilities into your Obsidian workflow. This plugin allows you to effortlessly upload your attachments to the cloud, freeing up local storage space and enabling easy sharing and access across all your devices.
Cloudinary Uploader
5 years ago by Jordan Handy
An uploader for Obsidian to Cloudinary
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
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`.
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
Content OS
a year ago by eharris128
Post to LinkedIn from within Obsidian
Copy Contents
2 months ago by Richard Jones
Copy or export file and folder contents - perfect for LLMs
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.
Copy Metadata
3 years ago by wenlzhang
An Obsidian plugin to copy metadata to clipboard and insert it into file name.
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
CSV Lite
a year ago by Jay Bridge
Simple enough for csv, no more fancy function you need to learn and think!
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
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.
Custom Attachment Location
5 years ago by RainCat1998
Customize attachment location with variables($filename, $data, etc) like typora.
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
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.
Daily note creator
3 years ago by Mario Holubar
Automatically creates missing daily notes.
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Daily Notes Automater
a year ago by David Pedrero
Dataview
6 years ago by Michael Brenan
A data index and query language over Markdown files, for https://obsidian.md/.
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
Differential ZIP Backup
3 years ago by vorotamoroz
Discord Message Sender
a year ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
Draft Indicator
2 years ago by Brian Boucheron
Show draft status with ✎ icons in the Obsidian file explorer.
Edit History
3 years ago by Antonio Tejada
Obsidian Edit History Plugin, automatically save all the edit history of a note, browse and restore previous versions
Enhance Copy Note
2 months ago by kzhovn
Plugin which enhances the copy command for Obsidian.
Enhanced Canvas
2 years ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
EUpload
2 years ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。
Excalidraw
5 years ago by Zsolt Viczian
A plugin to edit and view Excalidraw drawings in Obsidian
Execute Code
4 years ago by twibiral
Obsidian Plugin to execute code in a note.
External File Card
2 years ago by James-Yu
A plugin for Obsidian showing a card displaying basic information of a file in pre-defined folders.
External Rename Handler
2 years ago by mnaoumov
Obsidian Plugin that handles external renames made outside of the app
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
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.
File chucker
4 years ago by Ken Lim
File Explorer Reload
4 months ago by mnaoumov
Obsidian Plugin that reloads the file explorer files list
File Explorer++
4 months ago by kelszo
A plugin for https://obsidian.md, which enables the ability to hide and pin specific files and folders in the file explorer by applying custom filters.
File Hider
4 years ago by Oliver Akins
A plugin for https://obsidian.md that allows hiding specific files and folders from the file explorer.
File Order
3 years ago by lukasbach
Obsidian plugin to reorder files with drag-and-drop by customizing a number-prefix in the filenames
File Preview
2 years ago by Huajin
Add file preview contents under file in file explorer.
Fold Properties By Default
2 years ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
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.
Force note view mode
5 years ago by Benny Wydooghe
Front Matter Timestamps
2 years ago by LighthouseDino
Track note created and modified times in front matter, kept up to date automatically.
Front Matter Title
4 years ago by Snezhig
Plugin for Obsidian.md
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.
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Frontmatter Markdown Links
2 years ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Frontmatter Metadata Link Classes
a year ago by Varvara Zmeeva / zmeeva.io
Enhanced internal links with automatic classnames based on frontmatter metadata.
Frontmatter Tag Sugest
5 years ago by Jonathan Miller
Autocompletes tags in Obsidian YAML frontmatter. No more deleting #!
Frontmatter to HTML Attributes
6 months ago by Tarek Saier
FuzzyTag
4 years ago by Adrian
Gantt this
a month ago by Altarok
Obsidian plugin showing multiple TTRPG calendars at once in one gantt chart.
Git File Explorer
3 years ago by Mateus Molina
Gnome Terminal Loader
3 years ago by David Carmichael
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.
Graphic Organizer
6 months ago by Nick Le Guillou - Superhuman Curiosity
Guid Renamer
2 years ago by Taskscape LTD, Kacper Pabianiak
Renames the currently selected file by providing a unique file name based on GUID pattern
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.
Hanko
2 years ago by Telehakke
Obsidian plugin.
Hephaistos Importer
2 years ago by Skallaturi
Non-official plugin for importing characters from Hephaistos.online to Obsidian.md
Hot Reload
2 months ago by pjeby
Automatically reload Obsidian plugins in development when their files are changed
Hotstrings
2 years ago by wakywayne
HTML Reader
4 years ago by Nuthrash
This is a plugin for Obsidian (https://obsidian.md). Can open document with .html and .htm file extensions.
IMSwitch in Math Block
2 years ago by XXM
Inbox Organiser
2 years ago by Jamie Hurst
Obsidian plugin to capture any new notes into an inbox and periodically prompt to organise these into other folders within the vault.
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.
InlineAI
2 years ago by FBarrca
Insert Arknights URL Banner
a year ago by Rerurate_514
Obsidianのプラグイン、img_dwnldr_wikigg_ak_ktに保存されている画像を選択してbannersプロパティに簡単に設定できるプラグイン
Insert Multiple Attachments
2 years ago by mnaoumov
Obsidian Plugin that allows to insert multiple attachments at a time
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
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.
KOI Sync
2 years ago by Luke Miller
Last Position
2 years ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
Life Tracker
3 months ago by Sébastien Dubois
Capture and visualize the data that matters in your life
Link indexer
6 years ago by Yuliya Bagriy
Linkify
4 years ago by Matthew Chan
LinkMagic
2 years ago by AndyReifman
Local Any Files
2 years ago by ShermanTsang
A obsidian plugin used to extract and download files in your obsidian note.
Local Backup
2 months ago by velviagris
Automatically creates a local backup of the vault.
Local REST API with MCP
4 months ago by Adam Coddington
A secure REST API and Model Context Protocol (MCP) server for your vault.
Luhman
5 years ago by Dylan Elliott
Markdown Hijacker
a year ago by Yongmini
Beyond the Vault. One hub for every Markdown, everywhere
Mastodon Threading
2 years ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
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.
Media Companion
2 years ago by Nick de Bruin
Memos AI Sync
2 years ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Merge Notes
3 years ago by fnya
Merge Notes is Plugin for Obsidian
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
Missing Link File Creator
2 years ago by Lemon695
The plugin creates both missing links and the corresponding files.
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
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.
New Filename
2 years ago by Amin Sennour
Simple plugin to change the default name for a new note from "Untitled" to a UUID.
New Note Fixer
2 years ago by mnaoumov
Obsidian Plugin that unifies the way non-existing notes are created when clicking on their links
Note 2 Tag Generator
2 years ago by Augustin
Note aliases
4 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Note archiver
3 years ago by thenomadlad
Note Favicon
a year ago by mdklab
Obsidian plugin – Show Favicon from Metadata
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Note Types
a month ago by jsmorabito
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Notebook Navigator
2 months ago by Johan Sanneblad
A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.
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.
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
NSFW filter
2 years ago by catvatar
Obsidian Plugin adding a button to toggle visiblity of NSFW notes
One Step Wiki Link
a year ago by Busyo
用于 Obsidian 一步插入当前界面匹配到的所有外链(维基链接)
Open File by Magic Date
4 years ago by simplgy
Open or Create File
a year ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Open Related Url
4 years ago by Dan Pickett
Organized daily notes
2 years ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
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.
Paste Image Into Property
2 years ago by Nito
Paste image rename
4 years ago by Reorx
Renames pasted images and all the other attachments added to the vault
Personal OS
2 years ago by A.Buot
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
PixNote
22 days ago by Sofia Milton
Plugin REPL
2 years ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
Prompt ChatGPT
3 years ago by Coduhuey
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.
Publish Note to Mowen Note
a year ago by ziyou
This is a mowen plugin for Obsidian (https://obsidian.md)
pycalc
2 years ago by pycalc
Random Wikipedia Article
a year ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
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.
Recent Files
6 years ago by Tony Grosinger
Display a list of most recently opened files
Recently Added Files
2 years ago by Lemon695
List files by last added, includes pictures, pdfs, etc.
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Remote Fetch
a year ago by Shaharyar
Remove Empty Folders
3 years ago by fnya
Remove Empty Folders for Obsidian
Rename File to Selection
a year ago by Aava
Rename your file to the current text selection.
Reveal Active File Button
5 years ago by Clare Macrae
Obsidian plugin to add a button to the top of the Obsidian File Explorer, to reveal the active file.
RSS Copyist
3 years ago by aoout
Get the RSS articles as notes.
Rsync
2 years ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Run
3 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Runsh
2 years ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
S3agle
2 years ago by Turner Monroe (turnercore)
Screwdriver
4 years ago by vorotamoroz
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.
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.
Simple Archiver
a year ago by Mike Farr
An Obsidian plugin that enables you to quickly archive a single note or an entire folder of notes.
Simple Banner
a year ago by Sandro Ducceschi
Visually enhance your Obsidian notes with a customizable banner. Supports icons and time/date display.
Simple Image Inserter
3 years ago by Joey Holtzman
Add images from the file system into Obsidian notes through a built-in file explorer
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.
Snippets
6 years ago by Pelao
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
Social Archiver
2 months ago by Jun Lim
Release repository for Social Archiver - Archive social media posts from 8 platforms into Obsidian
Sort Frontmatter
3 years ago by Kanzi
Sort frontmatter automatically
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.
Store
a month ago by shimeoki
Manage your notes within a single folder.
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
sync-db-os
2 years ago by ketd
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Task Mover
2 years ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
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
Telegram Sync
3 years ago by Burtasov Volodymyr
Transfer messages and files from Telegram to Obsidian
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Template Folder
a year ago by LucasOe
Obsidian plugin to move notes to a folder when applying a template.
Templater
6 years ago by SilentVoid
A template plugin for obsidian
Tencent COS for Imgur
2 years ago by bobostudio
🔥 Obsidian 腾讯云 COS 图床插件
Testing Vault
3 years ago by Michael Pedersen
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
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.
Timeline Canvas Creator
a year ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Title As Link Text
2 years ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Title-Only Tab
a year ago by tristone13th
a plugin of obsidian for to change showing tab name to short
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Trash Explorer
4 years ago by Per Mortensen
Restore and delete files from the Obsidian .trash folder
Unique attachments
5 years ago by Dmitry Savosh
Obsidian plugin. Renames attachments, making their names unique.
Update frontmatter modified date
3 years ago by Alan Grainger
Automatically update a frontmatter/YAML modified date field
Update Relative Links
4 years ago by val
Update time on edit
5 years ago by beaussan
Update Time Updater
2 years ago by MURATAGAWA Kei
Obsidian plugin to update the 'update time' element when saving or manually.
URL Formatter
a year ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
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.
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.
Vault Transfer
3 years ago by ImaginaryProgramming
Transfers a note from one vault to another.
VaultSync
2 years ago by Justin Bird
Obsidian plugin to link your vault to a cloud storage provider.
VSCode Editor
3 years ago by Sun Xvming
Edit Code Files like VSCode in Obsidian.
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Wayback Archiver
a year ago by ISHIZUE
Obsidian plugin which automatically archives web links via Wayback Machine and appends archived versions in notes.
WebDAV Explorer
6 months ago by 蓝星晓夜
WebDAV Server Explorer.
Webdav File Explorer
3 years ago by red0orange
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
Weekly Review
4 years ago by Brandon Boswell
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.