Daily Note Plus

by o1xhack
5
4
3
2
1
Score: 35/100

Description

This plugin has not been manually reviewed by Obsidian staff. Automatically creates missing daily notes

Reviews

No reviews yet.

Stats

stars
downloads
0
forks
1
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Daily Note Plus

Latest release Total downloads License Obsidian version

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

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.

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.

  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.
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

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.

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.

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.

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