Skip to main content

obsidian

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

Aller à l'installation

Informations de source

Dépôt
moltis-org/moltis
Dernière activité de la source
20 avril 2026 à 22:05
Langue détectée de SKILL.md
anglais
Étoiles
2 867
Forks
350

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
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.
Voir sur GitHub