---
name: obsidian-cli
description: Use the official Obsidian CLI when a task needs Obsidian's running app, index, configured features, command registry, or developer runtime. Use for currently open notes and tabs, workspace state, daily notes, typed properties, tasks, links/backlinks, Bases queries, template resolution, link-aware moves, plugin commands, and plugin/theme debugging; do not use it for ordinary filesystem operations.
license: MIT
metadata:
copilot-enabled-agents: claude, codex, opencode
copilot-builtin-version: "2"
Use the CLI only for behavior that depends on Obsidian's running application,
indexes, settings, command registry, or developer runtime. Use normal shell
filesystem tools for ordinary file reads, writes, directory listing, and text
search.
Copilot exposes the terminal-capable executable from the running Obsidian
installation as COPILOT_OBSIDIAN_CLI when it can resolve one.
Prefer that exact path over obsidian from PATH, and
always invoke it as a quoted executable rather than constructing a command
string. Before relying on the CLI, probe it using the active shell:
obsidian_cli="${COPILOT_OBSIDIAN_CLI:-obsidian}"
"$obsidian_cli" version
$obsidianCli = if ($env:COPILOT_OBSIDIAN_CLI) { $env:COPILOT_OBSIDIAN_CLI } else { "obsidian" }
& $obsidianCli version
A command being present on PATH is not sufficient: the probe must exit
successfully. Use the selected executable in place of obsidian in
the examples below, resolving it again in a later shell call when necessary. If
the probe fails, continue with ordinary filesystem tools where they can satisfy
the request. Briefly tell the user only when the missing runtime capability
matters. Do not install Obsidian, change PATH, register the CLI, or raise the
plugin's minimum Obsidian version on the user's behalf.
The CLI requires a compatible Obsidian installer and a running app. Commands
can differ by version, so inspect live help before using a command whose syntax
is not already established:
obsidian help <command>
When a request truly needs the runtime capability and the probe fails, tell the
user to open Obsidian and enable Settings → General → Command line
interface using a compatible installer. Leave registration and any platform
repair steps to the user.
Put vault=<name-or-id> before the command whenever the vault is
known. Use path= for an exact vault-relative path. Usefile= only when Obsidian's wikilink-style name resolution is
desired. Do not rely on the active vault or active file when a precise target
is available.
obsidian vault="My Vault" backlinks path="Projects/Plan.md" format=json
Parameters use name=value; boolean flags have no value. Quote
values containing spaces or shell-special characters.
Use live help for exact parameters, then prefer these families when they add
meaning beyond raw files:
daily, daily:path,daily:read, daily:append,daily:prepend.properties,property:read, property:set,property:remove, tags, tag, andaliases. Supply a type= toproperty:set when the property is not plain text.tasks for indexed listing and task with aref=path:line or exact file/line for status changes.backlinks, links,unresolved, orphans, and deadends.bases, base:views, andbase:query. Prefer format=json for structured agenttemplates and template:read ... resolvetabs ids lists the currently open tabs andworkspace ids shows the workspace tree and itsmove and rename when the vaultWhen the user asks about notes currently open in Obsidian:
obsidian vault="My Vault" tabs ids
obsidian vault="My Vault" workspace ids
Use tabs ids as the source of truth for open tabs. Keep entries
verbatim and classify them only when the output provides enough evidence:
.mdDo not infer a path from a display title, view type, or tab ID, and do not
discard entries that cannot be classified. For a request about open notes,
extract the Markdown paths while retaining the other tabs as workspace context.
Use workspace ids when tab groups or workspace hierarchy matter. Do
not substitute recents, which includes files that are no longer open.
If the tab output does not expose paths or view types clearly, correlate its tab
IDs with this read-only, structured workspace query:
obsidian vault="My Vault" eval code='JSON.stringify((()=>{const tabs=[];const active=app.workspace.getMostRecentLeaf();app.workspace.iterateAllLeaves(leaf=>{const path=leaf.view.file?.path??null;tabs.push({id:leaf.id,title:leaf.getDisplayText(),viewType:leaf.view.getViewType(),path,kind:path===null?"view":path.toLowerCase().endsWith(".md")?"markdown":"file",active:leaf===active})});return tabs})())'
The workspace query also returns sidebar and floating leaves. Only call an entry
an open tab when its ID appears in tabs ids; retain query-only
entries separately as workspace context. Preserve tab entries that have no
matching workspace entry instead of guessing their identity.
If the user asks for the single currently focused note and the tab output does
not identify it, use a read-only app query:
obsidian vault="My Vault" eval code="app.workspace.getMostRecentLeaf()?.view.file?.path ?? ''"
Use normal filesystem tools only for explicit paths returned by Obsidian, and
choose a reader appropriate to the file type. Do not read every open note when
paths or titles alone answer the request.
commands lists registered command IDs, including commands provided
by plugins. Filter by an ID prefix, then execute the selected command withcommand id=<command-id>. Never guess a command ID when it can be
discovered. Do not execute a discovered command whose effect is prohibited by
the host-session rules below.
obsidian vault="My Vault" commands filter="my-plugin:"
obsidian vault="My Vault" command id="my-plugin:run-action"
Use the CLI as the first choice for runtime verification after the normal build
or test command has produced artifacts:
plugin:reload id=<plugin-id> when needed. Never reload thedev:errors and dev:console level=error.dev:screenshot path=...,dev:dom selector=..., and dev:css selector=....dev:mobile on only when mobile emulation is relevant, andRead-only eval and dev:cdp queries are appropriate for
state that the documented inspection commands cannot expose. Keep expressions
small and return serializable values. Treat any expression or CDP call that
mutates application state as a risky operation requiring explicit user intent.
Never reload or restart the Obsidian app or window from an agent session. Never
reload, disable, or uninstall the Copilot plugin that is hosting the agent. In
particular, do not use:
These actions terminate the in-flight agent and can discard its work. This is a
hard prohibition, not a confirmation-gated operation. If verification requires
one, finish all non-destructive checks and tell the user to perform the reload
manually after the agent session has ended.
Do not perform the following merely because they are available:
Confirm that the user's request clearly authorizes the exact target and effect.
Prefer reversible variants, such as trash-backed deletion, when they satisfy
the request. Explicit intent does not override the host-session prohibition
above.
Do not teach or use the TUI, clipboard output, undocumented flags, platform
registration repairs, or CLI equivalents of generic filesystem operations in
this skill.
Adapted from kepano/obsidian-skills at revisiona1dc48e68138490d522c04cbf5822214c6eb1202. See LICENSE.