Obsidian vault
My personal collection of portable SKILL.md agent skills and tooling for Claude Code, Cursor & Codex — currently focused on Traditional Chinese (Taiwan) writing, de-AI editing, and business docs.
npx -y skills add leoluyi/skills --skill obsidian-vaultAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Search, create, and manage notes in the Obsidian vault with wikilinks. Use when user wants to find, create, or organize notes in Obsidian.
SKILL.md
2.2 KB, as published. Nobody here has run it
Obsidian Vault
Vault location
/Users/leoluyi/Library/CloudStorage/Dropbox/__notes-vault
PARA / Johnny-Decimal structure, organized into numbered top-level folders:
00-inbox,inbox— unprocessed capture01-unique-notes— atomic/evergreen notes02-life,03-investment,04-work,05-tech— areas by domain97-projects,98-archived,99-system— projects, archive, vault system
AI and writing notes live in 05-tech/AI/.
Naming conventions
- Title Case for conceptual notes (e.g.
Writing With AI.md,Prompt Engineering) - lowercase-hyphen also used for utility notes (e.g.
ai-prompt.md) - Domain root notes in
05-techuse a[Category]bracket style (e.g.[Python],[Docker-Podman]) - Organize by the numbered folders plus links — not deep nesting
Frontmatter
Notes carry YAML frontmatter with:
---
id: kebab-case-id
aliases:
- Alternate Title
- 中文別名
tags:
- AI
urls:
- "[source label](https://...)" # optional
---
Linking
- Use Obsidian
[[wikilinks]]syntax:[[Note Title]] - Put related/dependency links in a
## Relatedsection at the bottom - Dangling links to notes that don't exist yet are fine — they mark notes worth writing
Workflows
Search for notes
V="/Users/leoluyi/Library/CloudStorage/Dropbox/__notes-vault"
# By filename
find "$V" -name "*.md" -not -path "*/.obsidian/*" | grep -i "keyword"
# By content
grep -rl "keyword" "$V" --include="*.md" --exclude-dir=.obsidian
Or use Grep/Glob tools directly on the vault path.
Create a new note
- Pick the right numbered folder (AI/writing →
05-tech/AI/) - Use Title Case for the filename
- Add frontmatter (
id,aliases,tags) - Write content as a unit of learning
- Add
[[wikilinks]]to related notes in a## Relatedsection at the bottom
Find backlinks to a note
grep -rl "\\[\\[Note Title\\]\\]" "/Users/leoluyi/Library/CloudStorage/Dropbox/__notes-vault" --include="*.md"