技能 效率工具 Obsidian知识库构建与管理

Obsidian知识库构建与管理

v20260426
obsidian-vault
本指南提供了基于Obsidian的个人知识库管理工作流。它指导用户如何在扁平化的文件结构中构建知识体系,强调使用索引笔记和维基链接([[wikilinks]])来增强笔记间的关联性。内容涵盖了创建、搜索、查找相关笔记(回链)的命令行操作,帮助用户高效地组织和检索知识。
获取技能
189 次下载
概览

Obsidian Vault

Vault location

/mnt/d/Obsidian Vault/AI Research/

Mostly flat at root level.

Naming conventions

  • Index notes: aggregate related topics (e.g., Ralph Wiggum Index.md, Skills Index.md, RAG Index.md)
  • Title case for all note names
  • No folders for organization - use links and index notes instead

Linking

  • Use Obsidian [[wikilinks]] syntax: [[Note Title]]
  • Notes link to dependencies/related notes at the bottom
  • Index notes are just lists of [[wikilinks]]

Workflows

Search for notes

# Search by filename
find "/mnt/d/Obsidian Vault/AI Research/" -name "*.md" | grep -i "keyword"

# Search by content
grep -rl "keyword" "/mnt/d/Obsidian Vault/AI Research/" --include="*.md"

Or use Grep/Glob tools directly on the vault path.

Create a new note

  1. Use Title Case for filename
  2. Write content as a unit of learning (per vault rules)
  3. Add [[wikilinks]] to related notes at the bottom
  4. If part of a numbered sequence, use the hierarchical numbering scheme

Find related notes

Search for [[Note Title]] across the vault to find backlinks:

grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"

Find index notes

find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"
信息
Category 效率工具
Name obsidian-vault
版本 v20260426
大小 1.48KB
更新时间 2026-04-28
语言