askill
obsidian

obsidianSafety 85Repository

Read, create, and search notes in an Obsidian vault from the command line.

3 stars
1.2k downloads
Updated 2/22/2026

Package Files

Loading files...
SKILL.md

Obsidian

Work with Obsidian vaults from the command line.

Read a Note

cat "$OBSIDIAN_VAULT/Notes/my-note.md"

Create a Note

cat > "$OBSIDIAN_VAULT/Notes/new-note.md" << 'EOF'
---
tags: [project, ideas]
created: 2024-01-01
---

# New Note

Content goes here.
EOF

Search Notes

grep -rl "search term" "$OBSIDIAN_VAULT" --include="*.md"

List Recent Notes

find "$OBSIDIAN_VAULT" -name "*.md" -mtime -7 -type f | sort

Open in Obsidian

open "obsidian://open?vault=MyVault&file=Notes/my-note"

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

62/100Analyzed 2/25/2026

Basic but functional skill for working with Obsidian vaults from command line. Provides clear examples for reading, creating, searching, listing, and opening notes. Missing setup instructions and more advanced operations like note updates, frontmatter manipulation, and attachment handling. The skill is well-organized but thin on content, essentially a quick reference rather than comprehensive documentation.

85
75
70
45
60

Metadata

Licenseunknown
Version-
Updated2/22/2026
Publisherkody-w

Tags

No tags yet.