Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Join the community
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Daily Note Plus

o1xhacko1xhack13 downloads

Automatically creates missing daily notes

Add to Obsidian
  • Overview
  • Scorecard
  • Updates4

Create missing Obsidian daily notes without opening each day, including backfilled ranges that use nested folder formats.

English · 简体中文


Why?

  • Backfill any date range — create missing daily notes for a selected period instead of opening each date by hand.
  • Respect your Daily Notes setup — uses your configured folder, format, and template from Daily Notes or Periodic Notes.
  • Nested paths work — detects existing notes with formats such as YYYY/MM/DD and YYYY/YYYY.MM.DD.
  • Startup automation stays optional (fixed in v0.2.1) — create today's note, auto-fill missed notes, or run the command manually without duplicate creation attempts.
  • Safer backfill modal (new in v0.3.0) — use quick date presets, live range stats, and disabled confirmation for invalid or empty work.

Nested Daily Note Formats

Daily Note Plus checks existing notes using the full path relative to your configured daily note folder, then parses that path with the full date format.

Daily Notes folder: DailyNotes
Date format:        YYYY/MM/DD
Existing note:      DailyNotes/2025/05/12.md
Parsed date:        2025-05-12

This fixes the common failure mode where a plugin only reads the final file name, such as 12.md, and cannot tell which year or month it belongs to.

Backfill Missing Notes

Use the Create missing daily notes command to select a start and end date. Daily Note Plus scans the notes that already exist and only creates the missing dates.

Range:    2025-12-28 to 2026-01-03
Existing: 2025/12/28.md, 2026/01/01.md
Creates:  2025/12/29.md, 2025/12/30.md, 2025/12/31.md, 2026/01/02.md, 2026/01/03.md

If more than seven notes would be created on startup, Daily Note Plus asks for confirmation before continuing.

The backfill modal includes quick presets for the last 7 days, last 30 days, this month, and last month. Presets only fill the date inputs; no files are created until you select Start backfill. The modal also shows the inclusive range length and how many daily notes already exist in that range.

Invalid ranges disable the confirmation button. Future end dates are clamped to today, and very large ranges are capped at 3650 days to avoid accidental oversized backfills.

Options

Create missing daily notes modal

Quick Start

  1. Install Daily Note Plus from Obsidian's Community plugins browser.
  2. Enable Obsidian's Daily Notes core plugin, or enable Periodic Notes if you use that workflow.
  3. Configure your daily note folder and format, such as YYYY-MM-DD, YYYY/YYYY.MM.DD, or YYYY/MM/DD.
  4. Run Create missing daily notes from the command palette.

Install

Community plugins (recommended)

This is the default install method now that Daily Note Plus has been accepted into the Obsidian community plugin directory. If it does not appear immediately, wait for Obsidian's plugin list to refresh and try again.

  1. Open Settings -> Community plugins.
  2. Turn off Restricted mode if Obsidian asks you to.
  3. Select Browse.
  4. Search for Daily Note Plus.
  5. Select Install.
  6. Select Enable, or enable Daily Note Plus later from Settings -> Community plugins -> Installed plugins.
Migrate from BRAT

Use this if you installed Daily Note Plus through BRAT before the community plugin listing was available.

  1. Go to Settings -> Community plugins -> Installed plugins.
  2. Disable Daily Note Plus.
  3. Go to Settings -> BRAT.
  4. Find o1xhack/obsidian-daily-note-plus in BRAT's beta plugin list.
  5. Click the x button next to it, then confirm the removal from BRAT updates.
  6. Return to Settings -> Community plugins, select Browse, and search for Daily Note Plus.
  7. The plugin should show as Installed because it uses the same plugin ID, daily-note-plus.
  8. Enable Daily Note Plus again from the community plugin page or the installed plugins list.

Removing the repository from BRAT stops BRAT from managing updates. It does not delete the installed plugin files from your vault; Obsidian can then manage updates through its normal community plugin update flow.

Manual release install
  1. Download main.js, manifest.json, and styles.css from the latest release.
  2. Create this folder in your vault: .obsidian/plugins/daily-note-plus/
  3. Put the three downloaded files in that folder.
  4. Reload Obsidian.
  5. Go to Settings -> Community plugins and enable Daily Note Plus.
Build from source
git clone https://github.com/o1xhack/obsidian-daily-note-plus.git
cd obsidian-daily-note-plus
npm ci
npm run build

Copy main.js, manifest.json, and styles.css into .obsidian/plugins/daily-note-plus/ in your vault.

Configuration

Setting Default Description
Create daily note on startup On Creates today's daily note when the vault opens, but skips creation if today's note already exists.
Auto-create missed daily notes on startup Off Also backfills missing notes between the latest existing daily note and today.
Daily Notes folder Your Obsidian setting The root folder used when detecting and creating daily notes.
Daily Notes format Your Obsidian setting The full Moment date format, including folder segments like YYYY/MM/DD.
Daily Notes template Your Obsidian setting The template used by Obsidian's Daily Notes or Periodic Notes setup.

FAQ

Does it support nested folders like YYYY/MM/DD?

Yes. Daily Note Plus detects existing notes by parsing the full path relative to your configured daily note folder, so DailyNotes/2025/05/12.md is recognized as 2025-05-12 when the format is YYYY/MM/DD.

Will it duplicate notes that already exist?

It should not duplicate notes that strictly match your configured daily note format. It builds a date index before creating missing notes, then skips dates already present in that index.

Does it support file names with extra title text?

Not yet. Daily Note Plus intentionally uses strict parsing, so 2025-05-12 Beach day.md is not treated as a daily note unless your configured format also includes that title text pattern.

I installed with BRAT. Do I need to uninstall the plugin?

No. Remove o1xhack/obsidian-daily-note-plus from BRAT's beta plugin list so BRAT stops managing updates, then enable the same installed plugin through Obsidian's community plugin UI. Only use Obsidian's Uninstall action if you want to remove Daily Note Plus from the vault completely.

Roadmap

  • Rename the plugin to Daily Note Plus with plugin ID daily-note-plus.
  • Publish release 0.1.0.
  • Support existing-note detection for nested daily note formats.
  • Publish release 0.2.0 for Obsidian community review warnings.
  • Publish release 0.2.1 to prevent duplicate startup creation attempts.
  • Accepted into the Obsidian community plugin directory.
  • Publish release 0.3.0 with quick date presets, live range stats, input validation, and tests.
  • Add broader in-vault test coverage for common date formats and long backfill ranges.

Contributing

Issues and PRs are welcome. Before opening a PR, run:

npm run build

For larger behavior changes, open an issue first so the expected Daily Notes behavior is clear.

Acknowledgements

Daily Note Plus is derived from Mario Holubar's Daily note creator, licensed under the MIT License. This fork keeps the original backfill workflow and adds path-aware detection for nested daily note formats.

It also depends on obsidian-daily-notes-interface for Daily Notes settings and note creation.

License

MIT — see LICENSE.


Author: o1xhack

83%
HealthExcellent
ReviewCaution
About
Create missing daily notes across a selected date range without opening each day. Use your configured Daily Notes/Periodic Notes folder, format, and template and detect nested paths (e.g. YYYY/MM/DD or YYYY/YYYY.MM.DD) to backfill only truly missing dates with optional startup automation.
DatesAutomationFolders
Details
Current version
0.3.0
Last updated
20 hours ago
Created
2 days ago
Updates
4 releases
Downloads
13
Compatible with
Obsidian 0.15.0+
License
MIT
Report bugRequest featureReport plugin
Sponsor
Support
Author
o1xhacko1xhacko1xhack
GitHubo1xhack
  1. Community
  2. Plugins
  3. Dates
  4. Daily Note Plus

Related plugins

Waypoint

Easily generate dynamic MOCs in your folder notes using waypoints. Enables folders to show up in the graph view and removes the need for messy tags!

Rollover Daily Todos

Rollover any unchecked checkboxes from your last daily note into today's note.

Vault Changelog

Maintain a changelog of recently edited notes.

Update frontmatter modified date

Automatically update a frontmatter modified date field when the file is modified.

Day and Night

Automatically toggle themes between day theme and night theme on a set time schedule.

Auto Note Mover

Automatically move the active notes to their respective folders according to rules you set.

Templater

Create and use dynamic templates.

Homepage

Open a note, base, or workspace on startup, or set it for quick access later.

BRAT

Easily install a beta version of a plugin for testing.

Day Planner

Day planning from a task list in a Markdown note with enhanced time block functionality.