---
id: daily-obsidian-vault
name: "obsidian-vault"
url: https://skills.yangsir.net/skill/daily-obsidian-vault
author: mattpocock
domain: writing
tags: ["knowledge-management", "obsidian", "documentation", "note-taking", "organization"]
install_count: 4700
rating: 4.40 (62 reviews)
github: https://github.com/mattpocock/skills
---

# obsidian-vault

> 管理Obsidian知识库，遵循标题命名和索引笔记规范，实现扁平化高效知识管理

**Stats**: 4,700 installs · 4.4/5 (62 reviews)

## Before / After 对比

### 知识库组织

**Before**:

文件散落各处，命名混乱，查找困难，重复内容多，知识复用率低

**After**:

统一命名规范，索引笔记聚合相关内容，快速定位复用知识

| Metric | Before | After | Change |
|---|---|---|---|
| 查找时间 | 120sec | 15sec | -88% |

## Readme

# obsidian-vault

# 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

- Use **Title Case** for filename

- Write content as a unit of learning (per vault rules)

- Add `[[wikilinks]]` to related notes at the bottom

- 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*"

```
Weekly Installs216Repository[mattpocock/skills](https://github.com/mattpocock/skills)GitHub Stars4.6KFirst Seen6 days agoSecurity Audits[Gen Agent Trust HubPass](/mattpocock/skills/obsidian-vault/security/agent-trust-hub)[SocketPass](/mattpocock/skills/obsidian-vault/security/socket)[SnykPass](/mattpocock/skills/obsidian-vault/security/snyk)Installed oncodex206gemini-cli203cursor203opencode203kimi-cli202github-copilot202

---
*Source: https://skills.yangsir.net/skill/daily-obsidian-vault*
*Markdown mirror: https://skills.yangsir.net/api/skill/daily-obsidian-vault/markdown*