Joe28 downloadsAuto-insert stable YAML frontmatter metadata template on new notes.
An Obsidian plugin that bootstraps a stable YAML frontmatter convention for your notes.
updated date on saveWorks with Obsidian Properties, Dataview, Bases, and standard YAML frontmatter. Desktop and mobile (isDesktopOnly: false). Fully local — no network access.
When you create a new Markdown file, the plugin inserts a template only if all of the following are true:
.mdDefault template:
---
type: note
domain:
status: active
created: 2026-05-09
updated: 2026-05-09
source: personal
tags:
---
created / updated use today's date (YYYY-MM-DD). You can override the whole template in settings (supports {{date}}).
The plugin never overwrites existing frontmatter keys that are already set.
updated on saveWhen enabled (default on):
updated field, it is set to today's dateupdated is not addedcreated and note body are never modifiedTurn off under Settings → Frontmatter Bootstrap → Auto-update modified date on save.
Command palette: Metadata Health Check
Scopes:
Checks (read-only; only convention notes):
A note is in scope if its frontmatter has at least one core field: type, domain, status, source.
tags / aliases / other unrelated keystype, status, source; plus created if “Track created date” is on; plus updated if “Track updated date” is ondomain is optional: empty / whitespace → not vocabulary-checked; non-empty must be in domain vocabularytype / status / source): values must be in vocabulary when presentYYYY-MM-DDstatu → status)Results are written to the vault-root note Metadata Health Report.md (created or overwritten), with [[wikilinks]] to each file. That report file is excluded from subsequent scans. Other notes are not modified.
Settings → Community plugins → Frontmatter Bootstrap
| Section | What it controls |
|---|---|
| Notes behavior | Insert created / updated on new notes; auto-update updated on save |
| Field schemas | Vocabularies for type, status, source, domain (add / edit / delete; defaults for type/status/source) |
| Template | Optional custom YAML template ({{date}} → YYYY-MM-DD). If non-empty, replaces the default template |
| Advanced | Reset all settings (double-confirm) |
| Field | Defaults |
|---|---|
type |
note, project |
status |
active, done, archived |
source |
personal, external |
domain |
work, study, life, project, reference |
TABLE type, status, created
WHERE type = "project" AND status = "active"
SORT created DESC
LIST
WHERE domain = "work" AND status != "archived"
| Behavior | Detail |
|---|---|
| New notes only for insert | Empty .md without frontmatter |
| No body edits | Only frontmatter via Obsidian's frontmatter API |
| No bulk rewrite | Does not rewrite historical notes on install |
| No network / AI | Local only |
| Configurable | Date tracking and auto-updated can be disabled |
| Health check side effect | Creates/overwrites Metadata Health Report.md at vault root (skipped in later scans) |
If the plugin is not listed yet, use manual install or a beta tool such as BRAT with this repository.
main.js, manifest.json, and styles.css from the latest GitHub ReleaseVaultFolder/.obsidian/plugins/frontmatter-bootstrap/MIT
Joe — github.com/gmcheck
Build, local debug, packaging, health-check rules, and release steps: see docs/DEVELOPING.md.