Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/taracodlabs/aiden --skill obsidian명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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