AgentSkillsCN

obsidian-vault

Vault 的结构设计、文件命名规则、Frontmatter 用法及链接规范。 适用场景:“Vault 结构”、“文件命名”、“Frontmatter 使用”、“维基链接”、“Obsidian 规范”。

SKILL.md
--- frontmatter
name: obsidian-vault
description: |
  Vault structure, file naming, frontmatter, and linking conventions.
  Use when: "vault structure", "file naming", "frontmatter", "wiki links", "obsidian conventions".

Obsidian Vault

Conventions for working with this Obsidian vault.

When to Use

  • Creating new notes
  • Navigating vault structure
  • Linking between notes
  • Adding frontmatter

Vault Structure

code
/
├── .github/              # Agent configuration
│   ├── agents/
│   ├── skills/
│   └── instructions/
└── Second Brain/          # Your notes
  ├── Operations/        # Day-to-day operations
  │   ├── Periodic Notes/# Daily, Weekly
  │   │   ├── Daily/     # YYYY-MM-DD.md
  │   │   └── Weekly/    # YYYY-Www.md
  │   └── Meetings/      # Meeting notes
  ├── Personal/          # Life tracking
  └── Projects/          # Active projects
    └── {project-name}/
      ├── README.md
      └── CONTEXT.md

File Naming

TypeFormatExample
DailyYYYY-MM-DD.md2026-01-19.md
WeeklyYYYY-Www.md2026-W03.md
ProjectFolder namemy-project/

Frontmatter

Every note needs frontmatter:

yaml
---
type: daily | project | meeting
status: active | done | paused
tags: [type/daily, project/name]
created: YYYY-MM-DD
updated: YYYY-MM-DD
---

Tags

Hierarchical tags:

  • #type/daily, #type/project, #type/meeting
  • #status/active, #status/done, #status/paused
  • #project/{name}

Linking

Wiki links: [[Note Name]] or [[folder/Note|Display Text]]

Common patterns:

  • [[2026-01-19]] — Daily note
  • [[Second Brain/Projects/my-project/CONTEXT]] — Project context
  • [[2026-W03#Next]] — Section of weekly note