mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-26 01:01:40 +00:00
- Added detailed descriptions for new skills categories: Machine Learning Operations and Note Taking. - Introduced a new Obsidian skill with commands for reading, listing, searching, creating, and appending notes. - Enhanced the skills tool to load and display category descriptions from DESCRIPTION.md files, improving user guidance and discovery of available skills.
1 KiB
1 KiB
| name | description |
|---|---|
| obsidian | Read, search, and create notes in the Obsidian vault. |
Obsidian Vault
Location: /home/teknium/Documents/Primary Vault
Note: Path contains a space - always quote it.
Read a note
cat "/home/teknium/Documents/Primary Vault/Note Name.md"
List notes
# All notes
find "/home/teknium/Documents/Primary Vault" -name "*.md" -type f
# In a specific folder
ls "/home/teknium/Documents/Primary Vault/AI Research/"
Search
# By filename
find "/home/teknium/Documents/Primary Vault" -name "*.md" -iname "*keyword*"
# By content
grep -rli "keyword" "/home/teknium/Documents/Primary Vault" --include="*.md"
Create a note
cat > "/home/teknium/Documents/Primary Vault/New Note.md" << 'ENDNOTE'
# Title
Content here.
ENDNOTE
Append to a note
echo "
New content here." >> "/home/teknium/Documents/Primary Vault/Existing Note.md"
Wikilinks
Obsidian links notes with [[Note Name]] syntax. When creating notes, use these to link related content.