docs(skills): modernize Obsidian wrapper file workflows#19332
Closed
counterposition wants to merge 1 commit into
Closed
docs(skills): modernize Obsidian wrapper file workflows#19332counterposition wants to merge 1 commit into
counterposition wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale
The bundled Obsidian skill still taught shell-first workflows for common vault operations. Hermes's file-tool schemas already recommend
read_fileinstead ofcat,write_fileinstead of heredocs,patchinstead of shell text rewrites, andsearch_filesinstead ofgrep/find/ls.This updates the skill so Obsidian vault work follows the same native file-tool guidance as the rest of Hermes.
Implementation
OBSIDIAN_VAULT_PATH, the fallback~/Documents/Obsidian Vault, and the existing read/list/search/create/append/wikilink workflows.$OBSIDIAN_VAULT_PATH.search_filesusage for filename glob searches versus content regex searches withfile_glob: "*.md".patchappend idiom: replace the anchor with the anchor plus new content.website/scripts/generate-skill-docs.py.User-visible benefit
Agents working in Obsidian vaults now get line-numbered and paginated reads, predictable JSON tool results, and fewer shell-quoting pitfalls for vault paths with spaces. The file tools also enforce write safety and stale-write checks at call time.
Risk
Low. This is a documentation/skill-instruction-only change. The main trade-off is that resolving the vault path can be a small extra step when the path is unknown.
Validation
uv run python website/scripts/generate-skill-docs.py.git diff --check.Note: running the skill-doc generator also currently surfaces unrelated optional-skill docs drift for
kanban-video-orchestrator; that generated churn was intentionally left out of this PR.