typescript/skills/obsidian/SKILL.md
Read, create, and search notes in an Obsidian vault from the command line.
npx skillsauth add kody-w/openrappter obsidianInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Work with Obsidian vaults from the command line.
cat "$OBSIDIAN_VAULT/Notes/my-note.md"
cat > "$OBSIDIAN_VAULT/Notes/new-note.md" << 'EOF'
---
tags: [project, ideas]
created: 2024-01-01
---
# New Note
Content goes here.
EOF
grep -rl "search term" "$OBSIDIAN_VAULT" --include="*.md"
find "$OBSIDIAN_VAULT" -name "*.md" -mtime -7 -type f | sort
open "obsidian://open?vault=MyVault&file=Notes/my-note"
development
Get current weather and forecasts (no API key required).
tools
Send and receive WhatsApp messages via wacli command-line tool.
tools
Start and manage voice calls via the openrappter voice-call plugin.
content-media
Extract frames from video files using ffmpeg for analysis or processing.