بنقرة واحدة
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.