agentsclimarketplace

Obsidian vault

Skill leoluyi/skills/skills/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.

Install
npx -y skills add leoluyi/skills --skill obsidian-vault

Assembled 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 capture
  • 01-unique-notes — atomic/evergreen notes
  • 02-life, 03-investment, 04-work, 05-tech — areas by domain
  • 97-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-tech use 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 ## Related section 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

  1. Pick the right numbered folder (AI/writing → 05-tech/AI/)
  2. Use Title Case for the filename
  3. Add frontmatter (id, aliases, tags)
  4. Write content as a unit of learning
  5. Add [[wikilinks]] to related notes in a ## Related section at the bottom

Find backlinks to a note

grep -rl "\\[\\[Note Title\\]\\]" "/Users/leoluyi/Library/CloudStorage/Dropbox/__notes-vault" --include="*.md"

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.