Skip to main content

obsidian

Read, search, and create notes in the Obsidian vault.

Jump to install

Source facts

Repository
moltis-org/moltis
Last source activity
April 20, 2026 at 22:05
Detected SKILL.md language
English
Stars
2,867
Forks
350

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
obsidian
description
Read, search, and create notes in the Obsidian vault.
origin
{"source":"hermes-agent","url":"https://github.com/nousresearch/hermes-agent","version":"9f22977f"}
requires
{"bins":["obsidian"]}
# Obsidian Vault **Location:** Set via `OBSIDIAN_VAULT_PATH` environment variable (e.g. in `your environment`). If unset, defaults to `~/Documents/Obsidian Vault`. Note: Vault paths may contain spaces - always quote them. ## Read a note ```bash VAULT="${OBSIDIAN_VAULT_PATH:-$HOME/Documents/Obsidian Vault}" cat "$VAULT/Note Name.md" ``` ## List notes ```bash VAULT="${OBSIDIAN_VAULT_PATH:-$HOME/Documents/Obsidian Vault}" # All notes find "$VAULT" -name "*.md" -type f # In a specific folder ls "$VAULT/Subfolder/" ``` ## Search ```bash VAULT="${OBSIDIAN_VAULT_PATH:-$HOME/Documents/Obsidian Vault}" # By filename find "$VAULT" -name "*.md" -iname "*keyword*" # By content grep -rli "keyword" "$VAULT" --include="*.md" ``` ## Create a note ```bash VAULT="${OBSIDIAN_VAULT_PATH:-$HOME/Documents/Obsidian Vault}" cat > "$VAULT/New Note.md" << 'ENDNOTE' # Title Content here. ENDNOTE ``` ## Append to a note ```bash VAULT="${OBSIDIAN_VAULT_PATH:-$HOME/Documents/Obsidian Vault}" echo " New content here." >> "$VAULT/Existing Note.md" ``` ## Wikilinks Obsidian links notes with `[[Note Name]]` syntax. When creating notes, use these to link related content.
View on GitHub