원클릭으로
obsidian-cli
Use only when interacting with an already running Obsidian GUI instance through the obsidian CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use only when interacting with an already running Obsidian GUI instance through the obsidian CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when creating or editing Obsidian Bases `.base` files with filters, formulas, and views.
Use when creating or editing Obsidian-flavored Markdown with wikilinks, embeds, callouts, and frontmatter.
Use when searching markdown knowledge bases, notes, and docs with QMD.
Package new software or update existing packages using Nix
Common mistakes in NixOS code and standards for reviewing and refactoring NixOS repositories.
| name | obsidian-cli |
| description | Use only when interacting with an already running Obsidian GUI instance through the obsidian CLI. |
| version | 1.0.0 |
| author | Cody Tucker |
| license | MIT |
| metadata | {"hermes":{"tags":["obsidian","notes","cli"],"related_skills":["obsidian-markdown","obsidian-bases","qmd"]}} |
| prerequisites | {"commands":["obsidian"]} |
Use the obsidian CLI only when working against an already running Obsidian GUI app in the user's graphical session. The CLI is not headless; it connects to a live Obsidian instance and fails when run from a service context without that instance.
For headless Hermes work, use direct Markdown file operations in the vault instead of the obsidian command.
Do not use this skill from Hermes' systemd service context unless the user confirms Obsidian is running and reachable from that process.
Personal.vault=<name> first when you need a specific vault.obsidian help
obsidian read file="My Note"
obsidian create name="New Note" content="# Hello" silent
obsidian append file="My Note" content="New line"
obsidian search query="search term" limit=10
obsidian daily:read
obsidian daily:append content="- [ ] New task"
obsidian property:set name="status" value="done" file="My Note"
obsidian tasks daily todo
obsidian tags sort=count counts
obsidian backlinks file="My Note"
file=<name> resolves like a wikilink.path=<path> uses an exact path from vault root.silent to avoid opening files unnecessarily.--copy when clipboard output is useful.obsidian help for the up-to-date command list, including developer commands.