ALWAYS use this skill when the user says "create note", "make note", "add note", "new note", "write a note", or creating ANY new .md file in an Obsidian vault. Validates PARA placement, enforces frontmatter conventions (created date, review tag), and matches existing note patterns before writing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/obsidian-second-brain:create-noteThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Comprehensive guide for creating properly formatted notes in an Obsidian vault. Ensures consistency by checking templates and existing notes before creation.
Comprehensive guide for creating properly formatted notes in an Obsidian vault. Ensures consistency by checking templates and existing notes before creation.
Before creating any note, validate folder placement using the para skill.
Apply the PARA decision framework:
01_Project/02_Area/03_Resource/04_Archive/If the user suggests a folder that violates PARA, push back and explain why before proceeding.
Common mistakes to catch:
02_Area/ → redirect to 01_Project/02_Area/ → redirect to 03_Resource/03_Resource/ → check if it's actually an active projectOnly proceed to creation after the folder is confirmed correct.
Every newly created note MUST include created with today's date and a review tag:
---
created: YYYY-MM-DD
tags:
- review
- [other relevant tags...]
---
These are non-negotiable for all new notes.
Before creating any new note:
Check the templates folder
99_metadata/templates/ (or wherever the user keeps templates) for a relevant templateCheck similar existing notes
03_Resource/Contact/ for format patternsDetermine correct location (PARA + topic)
01_Project/02_Area/03_Resource/<topic>/04_Archive// \ : * ? " < > |)Technical-folder convention (opinionated, optional):
Some users enforce all-lowercase filenames inside technical folders (03_Resource/Development/, 03_Resource/AI/, 03_Resource/English/) so links resolve case-insensitively across systems. Follow whichever convention exists in the user's vault — check 2-3 sibling notes before naming.
design-patterns/, react.js/---
created: YYYY-MM-DD
tags:
- review
---
# [Title Case of Filename]
[Content]
❌ Wrong (header before frontmatter):
# My Note
---
created: YYYY-MM-DD
---
When creating notes, automatically link to:
Strategy:
[[Note Name]]❌ Don't:
✅ Do:
created: YYYY-MM-DD in every new note's frontmatterreview tag in every new noteGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub thongntit/prompts --plugin obsidian-second-brain