Wojciech Polak154 downloadsRevisit your daily notes from previous years: on this day, this week, this month, or this day of the month.
An Obsidian plugin that resurfaces your daily notes from previous years in the sidebar, so you can revisit what you were doing on this day, this week, this month, or on this day-of-month across the years.
It is the Obsidian counterpart to the standalone On This Day web app. Same idea, except it reads your Obsidian daily notes instead of ICS calendars.
The repository title includes "for Obsidian" for clarity. Inside Obsidian the plugin is listed as Daily Echoes.
Other "on this day" plugins tend to match every document in the vault, and they give you a single "today" view. This one:
The plugin uses your Daily notes (or Periodic Notes) configuration to find daily
notes and parse each note's date from its filename. With the Daily notes format
YYYY/YYYY-MM-DD and folder Log, for example, a note at
Log/2021/2021-07-20.md is understood as 20 July 2021.
An entry has to live under the configured daily-notes folder and parse as a valid date. The plugin ignores everything else.
| Mode | Shows earlier entries that fall on |
|---|---|
| Day (default) | the same month and day-of-month as today |
| Week | within 3 days either side of today's date (7-day window) |
| Month | the same calendar month as today |
| Day-of-Month | the same day number (e.g. the 20th) of any month |
Every entry is labelled with how long ago it was (e.g. 2 years ago).
Everything happens locally. The plugin makes no network requests and collects no telemetry. It reads your daily notes through the paths the core Daily notes settings already define. It walks every markdown file in the vault only when you turn on Include other notes, because that setting asks it to date notes outside the daily-notes folder.
Once published, look for "Daily Echoes" under Settings → Community plugins → Browse.
npm ci && npm run build) or download a release.main.js, manifest.json, and styles.css into
<your-vault>/.obsidian/plugins/daily-echoes/.npm install
npm run dev # watch build
npm run build # type-check + production build
npm run lint # oxlint
npm run format # oxfmt
npm run test # vitest (test:watch for watch mode)
npm run check # lint + format check + build + test
npm run deploy # build, then install into a local vault for testing
Linting and formatting use the oxc toolchain (oxlint + oxfmt).
npm run deploy copies the built plugin straight into a vault. Create a
gitignored .env in the repo root pointing at your vault's plugins folder:
OBSIDIAN_VAULT_PLUGINS="/path/to/YourVault/.obsidian/plugins"
The destination subfolder comes from manifest.json's id. Run
./scripts/install-to-vault.sh --dry-run to preview without writing.
See CONTRIBUTING.md.