一键导入
obsidian
Read, search, and create notes in Obsidian vaults
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read, search, and create notes in Obsidian vaults
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Search and download arXiv papers (no API key needed)
Delegate coding and file edits to Anthropic Claude Code CLI
Read/write Windows clipboard text, HTML, images, history (PowerShell)
Running scripts and code on Windows
Delegate coding tasks to OpenAI Codex CLI
Windows Defender: scans, threat history, signatures (PowerShell)
| 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