How to install obsidian-vault
npx skills add https://github.com/vinvcn/mattpocock-skills-zh-cn --skill obsidian-vaultFull instructions (SKILL.md)
Source of truth, from vinvcn/mattpocock-skills-zh-cn.
name: obsidian-vault description: 在 Obsidian vault 中使用 wikilinks 和 index notes 搜索、创建并管理 notes。Use when user wants to find, create, or organize notes in Obsidian.
Obsidian Vault
Vault location
/mnt/d/Obsidian Vault/AI Research/
root level 基本保持扁平。
Naming conventions
- Index notes:聚合相关 topics(例如
Ralph Wiggum Index.md、Skills Index.md、RAG Index.md) - 所有 note names 使用 Title case
- 不用 folders 做组织;改用 links 和 index notes
Linking
- 使用 Obsidian
[[wikilinks]]syntax:[[Note Title]] - Notes 在底部链接 dependencies/related notes
- Index notes 只是
[[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"
或直接在 vault path 上使用 Grep/Glob tools。
Create a new note
- filename 使用 Title Case
- 按 vault rules,把内容写成一个 learning unit
- 在底部添加指向 related notes 的
[[wikilinks]] - 如果属于 numbered sequence,使用 hierarchical numbering scheme
Find related notes
在 vault 中搜索 [[Note Title]] 来找 backlinks:
grep -rl "\\[\\[Note Title\\]\\]" "/mnt/d/Obsidian Vault/AI Research/"
Find index notes
find "/mnt/d/Obsidian Vault/AI Research/" -name "*Index*"
Related skills
More from vinvcn/mattpocock-skills-zh-cn and the wider catalog.

prototype
Build throwaway prototypes to validate designs and state models before committing to production code.

qa
交互式 QA session,用户以对话方式报告 bugs 或 issues,agent 创建 GitHub issues。后台探索 codebase 以获取 context 和 domain language。Use when user wants to report bugs, do QA, file issues conversationally, or mentions "QA session".

request-refactor-plan
通过 user interview 创建带 tiny commits 的详细 refactor plan,然后 file as a GitHub issue。Use when user wants to plan a refactor, create a refactoring RFC, or break a refactor into safe incremental steps.

scaffold-exercises
Scaffold exercise directory structures with sections, problems, solutions, and explainers that pass linting.

setup-matt-pocock-skills
Configure issue tracker, triage labels, and domain docs for engineering agent skills.

setup-pre-commit
Set up Husky pre-commit hooks with lint-staged, Prettier, type checking, and tests.