obsidian-notes
Use when saving notes to Obsidian vault, creating documentation, capturing knowledge, or logging any information. This skill determines the correct PARA location and applies the appropriate template from the vault.
SKILL.md
| Name | obsidian-notes |
| Description | Use when saving notes to Obsidian vault, creating documentation, capturing knowledge, or logging any information. This skill determines the correct PARA location and applies the appropriate template from the vault. |
name: obsidian-notes description: Use when saving notes to Obsidian vault, creating documentation, capturing knowledge, or logging any information. This skill determines the correct PARA location and applies the appropriate template from the vault.
Obsidian Notes
Overview
Save notes to a PARA-structured Obsidian vault by selecting the appropriate location and template. Templates are read dynamically from the vault itself.
Vault Location
The vault is at ~/Obsidian/me/ (identified by the .obsidian/ subdirectory).
PARA Structure
~/Obsidian/me/
├── 0.Inbox/ # Quick captures, unsorted notes, daily captures (default for new files)
├── 1.Projects/ # Active projects with defined outcomes
├── 2.Areas/ # Ongoing areas of life: personal, health, relationships, finances, hobbies, career
├── 3.Resources/ # Reference material: books, articles, recipes, technical notes, prompts
├── 4.Archives/ # Completed/inactive items
└── 5.Meta/ # System files: templates, attachments
Location Decision Tree
- Quick capture or unsorted? →
0.Inbox/ - Active project with a defined end goal? →
1.Projects/[project-name]/ - Ongoing area of life? →
2.Areas/— personal life, health, relationships, hobbies, career, finances, travel, home - Reference material or knowledge? →
3.Resources/— books, articles, recipes, technical notes, AI prompts - Completed or inactive? →
4.Archives/
Template Discovery
Templates live in 5.Meta/Templates/ within the vault.
To find the right template:
- List all
.mdfiles in5.Meta/Templates/ - Match note type to template filename/frontmatter
- If no match, use minimal frontmatter
Available templates:
Book Template (Book Template.md)
Use for book summaries and reading notes. Frontmatter:
---
type: book
author:
title:
category:
status: # "reading" | "completed" | "abandoned"
rating: # 1-5
created: {{date}}
completed:
---
Sections: Summary, Key Concepts, Top Insights, Practical Applications, Highlights & Notes, Related Resources, Review
Gravel Ultra Race Template (Gravel Ultra Race Template.md)
Use for race preparation and planning. Frontmatter:
---
race_name:
date:
distance_km:
elevation_m:
location:
estimated_time_hours:
status: # "planned" | "registered" | "completed"
surface_type:
website:
---
Sections: Race Overview, Pre-Race Preparation, Logistics, Nutrition Strategy, Performance Strategy, Pre-Race TODOs, post-race procedures
Creating Notes
- Determine location — Use the decision tree to pick the right PARA folder/subfolder
- Find template — Read from
5.Meta/Templates/and match type - Apply template — Replace placeholders:
{{date}}→ Current date (YYYY-MM-DD){{title}}→ Note title{{time}}→ Current time (HH:MM)
- Write file — Save to determined location
File Naming
- Date-based (diary, daily captures, inbox):
YYYY-MM-DD.md - Book/article:
Title - Author.md - People:
First Last.md - General notes:
Descriptive Title.md(sentence case) - Attachments: stored in
5.Meta/Assets/
Minimal Frontmatter
When no template matches, use:
---
type: note
created: {{date}}
---
Examples
Quick capture
User: "Save this quick thought about refactoring"
Location: 0.Inbox/Refactoring thought.md
Template: Minimal frontmatter
Book note
User: "Create a note for the book 'Atomic Habits'"
- Read
5.Meta/Templates/Book Template.md - Location:
3.Resources/Books/Atomic Habits - James Clear.md - Apply Book Template with frontmatter filled in
Race planning
User: "Create a race note for Transcarpathia 2026"
- Read
5.Meta/Templates/Gravel Ultra Race Template.md - Location:
2.Areas/Bikes/Races/Transcarpathia 2026.md(browse existing structure to find the right folder) - Apply Gravel Ultra Race Template
Diary entry
User: "Log today's diary entry"
Location: 2.Areas/Mind/Diary/2026/2026-02-16.md (browse existing structure to find the right folder)
Frontmatter:
---
journal: Diary
journal-date: 2026-02-16
---
Reference material
User: "Save this article about Kubernetes networking"
Location: 3.Resources/IT/Kubernetes networking.md (browse existing structure to find the right folder)
Template: Minimal frontmatter
Notes
- Always include YAML frontmatter with at least
typeandcreated(except diary entries which usejournalandjournal-date) - Use wikilinks
[[]]for internal links - Create subfolders as needed within PARA directories
- The vault uses Polish and English content interchangeably