Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

obsidian-cliObsidian CLI 知识库

Agent Skill

obsidian-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,728

周安装

72

GitHub Stars

154

下载量

576
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:obsidian-cli(Obsidian CLI 知识库)
来源仓库:https://github.com/pablo-mano/obsidian-cli-skill
仓库路径:skills/obsidian-cli
安装命令:
npx skills add https://github.com/pablo-mano/obsidian-cli-skill --skill obsidian-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pablo-mano/obsidian-cli-skill --skill obsidian-cli

简介

obsidian-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库内容进一步核验具体用法和功能边界。

SKILL.md

Obsidian CLI

The official Obsidian CLI (released in v1.12, February 2026) lets you control every aspect of Obsidian from the terminal. It communicates with a running Obsidian desktop instance via IPC.

Read references/command-reference.md when you need specific flags, output formats, or subcommands for any command group. It covers all 130+ commands with full parameter tables and has a table of contents at the top.

Prerequisites

RequirementDetails
Obsidian Desktopv1.12.0+
CLI enabledSettings → Command line interface → Toggle ON
Obsidian runningThe desktop app must be running for CLI to work (IPC)

Platform Notes

  • macOS / Linux: The obsidian binary is registered in PATH automatically when you enable CLI in settings.
  • Windows: Requires an Obsidian.com redirector file placed alongside Obsidian.exe. Must run with normal user privileges — admin terminals produce silent failures.

- If colon subcommands (property:set, daily:append, etc.) with parameters return exit 127, check that Obsidian.com exists alongside Obsidian.exe. If missing, you have an outdated installer — download the latest from obsidian.md/download and reinstall. - Git Bash / MSYS2 users: Bash resolves obsidian to Obsidian.exe (GUI) instead of Obsidian.com (CLI), causing colon+params to fail with exit 127 even when Obsidian.com is present. Create a wrapper script — see Troubleshooting.

  • Headless Linux: Use the .deb package (not snap). Run under xvfb. Prefix commands with DISPLAY=:5 (or your xvfb display number). Ensure PrivateTmp=false if running as a service.

Syntax

All parameters use key=value syntax. Quote values containing spaces.

obsidian <command> [subcommand] [key=value ...] [flags]

Multi-Vault

Target a specific vault by making it the first argument:

obsidian "My Vault" daily:read
obsidian "Work Notes" search query="meeting"

If omitted, the CLI targets the most recently active vault.

Command Overview

The CLI provides 130+ commands across these groups:

GroupKey CommandsPurpose
filesread, create, append, prepend, move, rename, delete, files, folders, file, randomNote CRUD and file discovery
dailydaily, daily:read, daily:append, daily:prepend, daily:pathDaily note operations
searchsearch, search:contextFull-text search; search:context returns matching lines
propertiesproperties, property:read, property:set, property:remove, aliasesFrontmatter/metadata management
tagstags, tagTag listing, counts, and filtering
taskstasks, taskTask querying, filtering, and toggling
linksbacklinks, links, unresolved, orphans, deadendsGraph and link analysis
bookmarksbookmarks, bookmarkList and add bookmarks
templatestemplates, template:read, template:insertTemplate listing, rendering, insertion
pluginsplugins, plugin, plugin:enable, plugin:disable, plugin:install, plugin:uninstall, plugins:restrictPlugin management
syncsync, sync:status, sync:history, sync:read, sync:restore, sync:deletedObsidian Sync operations
themesthemes, theme, theme:set, theme:install, theme:uninstallTheme management
snippetssnippets, snippets:enabled, snippet:enable, snippet:disableCSS snippet management
commandscommands, command, hotkeys, hotkeyExecute Obsidian commands by ID; inspect hotkeys
basesbases, base:query, base:views, base:createObsidian Bases (v1.12+ database feature)
historyhistory, history:list, history:read, history:restoreFile version recovery (File Recovery plugin)
workspaceworkspace, tabs, tab:openWorkspace layout and tab management
diffdiffCompare local vs sync file versions
deveval, dev:screenshot, dev:debug, dev:console, dev:errors, dev:css, dev:dom, devtoolsDeveloper/debugging tools
vaultvault, vaults, version, reload, restartVault info and app control
otheroutline, wordcount, recentsUtility commands

Quick Reference — Most Common Commands

Reading & Writing Notes

obsidian read path="folder/note.md"
obsidian create path="folder/note" content="# New Note"
obsidian create path="folder/note" template="meeting-notes"
obsidian append path="folder/note.md" content="New paragraph"
obsidian prepend path="folder/note.md" content="Top content"
obsidian move path="old/note.md" to="new/note.md"
obsidian delete path="folder/note.md"
obsidian delete path="folder/note.md" permanent

Daily Notes

obsidian daily                          # Open today's daily note
obsidian daily:read                     # Print content of today's note
obsidian daily:append content="- [ ] New task"
obsidian daily:prepend content="## Morning Notes"

Search

obsidian search query="project alpha"
obsidian search query="TODO" path="projects" limit=10
obsidian search query="meeting" format=json   # Returns JSON array of file paths
obsidian search query="urgent" case

Properties & Tags

obsidian properties path="note.md"
obsidian property:set path="note.md" name="status" value="active"
obsidian property:read path="note.md" name="status"
obsidian property:remove path="note.md" name="draft"
obsidian tags counts sort=count
obsidian tag name="project/alpha"

Tasks

obsidian tasks                          # All tasks (done + todo) — same as tasks all in v1.12
obsidian tasks all                      # All tasks (done + todo)
obsidian tasks done                     # Completed only
obsidian tasks daily                    # Tasks in today's daily note
obsidian task path="note.md" line=12 toggle
obsidian tasks | grep "\[ \]"           # Workaround: filter to incomplete only

Developer & Automation

obsidian eval code="app.vault.getFiles().length"
obsidian dev:screenshot path="folder/screenshot.png"  # Path must be vault-relative
obsidian dev:debug on                                 # Required before dev:console
obsidian dev:console limit=20
obsidian dev:errors

TUI Mode

Running obsidian with no arguments launches an interactive TUI (Terminal User Interface):

KeyAction
↑↓Navigate files
EnterOpen file
/Search
nCreate new file
dDelete file
rRename file
qQuit

Common Agent Patterns

Daily Journal Automation

# Append a timestamped entry
obsidian daily:append content="## $(date '+%H:%M') — Status Update
- Completed: feature branch merge
- Next: code review for PR #42
- Blocked: waiting on API credentials"

Create Note from Template with Metadata

obsidian create path="projects/new-feature" template="project-template"
obsidian property:set path="projects/new-feature.md" name="status" value="planning"
obsidian property:set path="projects/new-feature.md" name="created" value="$(date -I)"
obsidian daily:append content="- Started [[projects/new-feature|New Feature]]"

Vault Analytics Script

obsidian files total                    # Total file count
obsidian tags counts sort=count         # Most used tags
obsidian tasks | grep "\[ \]"          # Incomplete tasks across vault
obsidian orphans                        # Notes needing integration
obsidian unresolved                     # Broken links to fix

Search and Extract for AI Processing

obsidian search query="meeting notes" format=json | jq '.[]'
obsidian read path="meetings/standup.md" | grep "Action item"

Sync Management

obsidian sync:status                    # Check sync health
obsidian sync:history path="important.md"  # Version history
obsidian sync:restore path="important.md" version=3  # Rollback

Execute Obsidian Commands

# Find a command ID, then execute it
obsidian commands | grep "graph"
obsidian command id="graph:open"

# Open settings, trigger a plugin action
obsidian command id="app:open-settings"
obsidian command id="dataview:dataview-force-refresh-views"

Tips

  1. Paths are vault-relative — use folder/note.md, not absolute filesystem paths.
  2. create paths omit .md — the extension is added automatically.
  3. move requires full target path including .md extension.
  4. Pipe-friendly — plain text output works with grep, awk, sed, jq.
  5. JSON output — use format=json on search for a JSON array of file paths. The files command does not support JSON output.
  6. Stderr noise — GPU/Electron warnings on headless are harmless; filter with 2>/dev/null.
  7. daily:prepend inserts content after frontmatter, not at byte 0.
  8. Use eval to run arbitrary JavaScript against the Obsidian API (app.*).
  9. template:insert inserts into the currently active file in the Obsidian UI — it does not accept a path= parameter. If no file is open, it returns Error: No active editor. Open a file first. To create a file from a template via CLI, use obsidian create path="..." template="..." instead.
  10. property:set stores list values as stringsvalue="tag1, tag2" writes a literal comma-separated string, not a YAML array. For proper array fields, edit the note's frontmatter directly (e.g. via read → modify → create --force) or use eval to call the Obsidian API.
  11. eval requires single-line JavaScript — multiline JS passed inline fails with a token error. Write the script to a temp file instead: cat > /tmp/obs.js << 'JS' var files = app.vault.getMarkdownFiles(); files.length; JS obsidian eval code="$(cat /tmp/obs.js)"
  12. Multi-vault targeting may not work in all environmentsobsidian "My Vault" command can return Error: Command "My Vault" not found on some setups. If this happens, omit the vault name (CLI targets the most recently active vault) and switch vaults manually in the Obsidian UI.
  13. When colon subcommands are unavailable (e.g. Windows Git Bash without wrapper), prefer non-colon alternatives: use properties instead of property:read, and obsidian daily:path + append instead of daily:append.

Troubleshooting

ProblemCauseFix
Empty output / hangsObsidian not running, or admin terminal (Windows)Start Obsidian; use normal-privilege terminal
Command not foundCLI not registered in PATHRe-enable CLI in Settings; restart terminal
Unicode errorsFixed in v1.12.2+Update Obsidian
Wrong vault targetedMulti-vault ambiguityPass vault name as first arg
IPC socket not found (Linux)PrivateTmp=true in systemdSet PrivateTmp=false
Snap confinement issuesSnap restricts IPCUse .deb package instead
Multi-vault "Name" command failsVault name matching issueOmit vault name; target most recent vault
property:set list value is a stringCLI stores value as-isEdit frontmatter directly or use eval
Colon+params exit 127 (missing .com)Outdated installer — Obsidian.com absentReinstall from obsidian.md/download
Colon+params exit 127 (Git Bash / MSYS2)Bash resolves obsidian to .exe not .comCreate ~/bin/obsidian wrapper: #!/bin/bash / /c/path/to/Obsidian.com "$@" and add export PATH="$HOME/bin:$PATH" to ~/.bashrc

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.52%
按下载量换算216

Claude

28.74%
按下载量换算166

Cursor

18.73%
按下载量换算108

Gemini CLI

9.77%
按下载量换算56

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills