用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/taracodlabs/aiden --skill obsidian命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | obsidian |
| description | Read, search, and create notes in Obsidian vaults |
| category | productivity |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | obsidian, notes, vault, markdown, knowledge-base, zettelkasten, wiki, pkm |
Interact with Obsidian vaults directly through the file system. Obsidian notes are plain Markdown files, so you can read, search, create, and link notes without launching the Obsidian app.
Obsidian vaults are folders containing .md files and a .obsidian/ config dir. Ask the user for the vault path or search common locations.
# Find Obsidian vaults on Windows (searches common locations)
Get-ChildItem "$env:USERPROFILE" -Recurse -Filter ".obsidian" -Directory -ErrorAction SilentlyContinue |
Select-Object -ExpandProperty Parent | Select-Object FullName
# Full-text search across all notes in vault
$vault = "C:\Users\<you>\Documents\MyVault"
Get-ChildItem $vault -Recurse -Filter "*.md" |
Select-String -Pattern "your keyword" -SimpleMatch |
Select-Object Path, LineNumber, Line |
Format-Table -AutoSize
Obsidian tags appear as #tag in note body or tags: [tag] in frontmatter.
$vault = "C:\Users\<you>\Documents\MyVault"
$tag = "project"
Get-ChildItem $vault -Recurse -Filter "*.md" |
Select-String -Pattern "#$tag\b|tags:.*\b$tag\b" -SimpleMatch:$false |
Select-Object Path | Sort-Object Path -Unique
$note = "C:\Users\<you>\Documents\MyVault\Daily\2026-04-17.md"
Get-Content $note -Raw
$vault = "C:\Users\<you>\Documents\MyVault"
$folder = "Projects"
$title = "New Project Idea"
$date = Get-Date -Format "yyyy-MM-dd"
$content = @"
---
title: $title
date: $date
tags: [project, idea]
---
# $title
Write your note content here.
"@
$path = Join-Path $vault $folder "$title.md"
New-Item -ItemType Directory -Force -Path (Split-Path $path) | Out-Null
Set-Content -Path $path -Value $content -Encoding UTF8
Write-Host "Created: $path"
$vault = "C:\Users\<you>\Documents\MyVault"
$noteName = "Index" # without .md
Get-ChildItem $vault -Recurse -Filter "*.md" |
Select-String -Pattern "\[\[$noteName(\|[^\]]*)?\]\]" |
Select-Object Path | Sort-Object Path -Unique
"Search my Obsidian vault for notes about async/await"
→ Use step 2 with keyword async/await. Ask user for vault path first if not known.
"Create a daily note for today in my vault"
→ Use step 5 with folder Daily, title as today's date 2026-04-17, and standard daily note frontmatter.
"Find all notes tagged #book-review in my vault"
→ Use step 3 with tag book-review.
-Recurse with care on deep vault trees.obsidian/ directory contains config/plugins — do not modify it