Implementation of [[Agent skills]] for managing [[Obsidian]] - [Github](https://github.com/kepano/obsidian-skills?tab=readme-ov-file) by [[Kepano]] ## Installation ```bash git clone https://github.com/kepano/obsidian-skills ~/.claude/skills ``` In [[Claude Code]] #refine ```sh /plugin marketplace add kepano/obsidian-skills ``` In [[vscode]]: #refine ```sh npx skills add kepano/obsidian-skills ``` ## Creating notes Always specify the target folder explicitly using `path=`. Without it, `obsidian create` places the file in the vault root. ```bash # Correct - places note in Notes/ obsidian create path="Notes/My Note.md" content="..." silent # Wrong - places note in vault root obsidian create name="My Note" content="..." ``` The same applies to `obsidian move`: ```bash obsidian move file="My Note" to="Notes/My Note.md" silent ``` Never create concept notes in the vault root. All concept notes belong in `Notes/` per [[Vault Structure]].