Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

obsidian-cliObsidian CLI 知识库

Agent Skill

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

总安装

742

周安装

30

GitHub Stars

93

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill obsidian-cli

简介

obsidian-cli 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容核验具体用法和功能边界。

SKILL.md

Obsidian CLI

Official Obsidian CLI for terminal vault operations. Requires Obsidian running (headless via xvfb works) with CLI enabled and insider/early access mode.

All parameters use key=value syntax: obsidian read path="folder/note.md". On headless Linux, prefix with DISPLAY=:5 (or whatever your xvfb display is).

Core Commands

Daily Notes

obsidian daily                           # Open today's daily note
obsidian daily:read                      # Print today's note content
obsidian daily:append content="text"     # Append to today's note
obsidian daily:prepend content="text"    # Prepend to today's note

Reading and Writing Files

obsidian read path="folder/note.md"                          # Read note
obsidian create path="folder/note" content="# Title"         # Create note (path without .md)
obsidian create path="folder/note" template="templatename"    # Create from template
obsidian append path="folder/note.md" content="text"          # Append to note
obsidian prepend path="folder/note.md" content="text"         # Prepend to note
obsidian move path="old/note.md" name="new-name"              # Move/rename
obsidian delete path="folder/note.md"                         # Delete (to trash)
obsidian delete path="folder/note.md" permanent               # Permanent delete

File Discovery

obsidian files                      # List all files
obsidian files ext=md               # Only markdown files
obsidian files folder="subfolder"   # Files in specific folder
obsidian files total                # Just the count
obsidian folders                    # List all folders
obsidian file path="folder/note.md" # File info (size, dates)

Search

obsidian search query="search text"                    # Search vault
obsidian search query="text" path="folder" limit=10    # Scoped search
obsidian search query="text" format=json               # JSON output
obsidian search query="text" matches                   # Show match context
obsidian search query="text" case                      # Case-sensitive

Links and Graph

obsidian backlinks path="note.md"      # Backlinks to a note
obsidian backlinks path="note.md" counts  # With link counts
obsidian links path="note.md"          # Outgoing links (requires plugin)
obsidian unresolved                    # Unresolved [[links]]
obsidian orphans                       # Notes with no links in or out
obsidian deadends                      # Notes with no outgoing links

Properties (Frontmatter)

obsidian properties path="note.md"                          # All properties
obsidian property:read path="note.md" name="status"         # Read one property
obsidian property:set path="note.md" name="status" value="draft"  # Set property
obsidian property:remove path="note.md" name="status"       # Remove property
obsidian aliases path="note.md"                             # List aliases

Tags

obsidian tags                          # All tags
obsidian tags counts sort=count        # Tags sorted by frequency
obsidian tags path="note.md"           # Tags in specific file
obsidian tag name="tagname"            # Notes with specific tag

Tasks

obsidian tasks                              # All incomplete tasks
obsidian tasks all                          # All tasks (done + todo)
obsidian tasks done                         # Only completed tasks
obsidian tasks path="note.md"               # Tasks in specific file
obsidian tasks daily                        # Tasks in today's daily note
obsidian task path="note.md" line=5 toggle  # Toggle task status

Sync

obsidian sync                                  # Show sync status
obsidian sync on                               # Resume sync
obsidian sync off                              # Pause sync
obsidian sync:status                           # Detailed status
obsidian sync:history path="note.md"           # Version history
obsidian sync:read path="note.md" version=3    # Read specific version
obsidian sync:restore path="note.md" version=3 # Restore version
obsidian sync:deleted                          # Deleted files in sync

Templates

obsidian templates                          # List templates
obsidian template:read name="weekly-review" # Read template content
obsidian template:read name="weekly-review" resolve title="My Note"  # Render with variables
obsidian template:insert name="weekly-review"  # Insert into active file

Other Useful Commands

obsidian vault                         # Vault info (name, path, file count, size)
obsidian vaults                        # List all known vaults
obsidian outline path="note.md"        # Heading structure
obsidian wordcount path="note.md"      # Word/character count
obsidian recents                       # Recently opened files
obsidian version                       # Obsidian version
obsidian reload                        # Reload vault

Plugins

obsidian plugins                    # List all plugins
obsidian plugins:enabled            # List enabled plugins
obsidian plugin:enable id="canvas"  # Enable plugin
obsidian plugin:disable id="canvas" # Disable plugin
obsidian plugin:install id="name"   # Install from community
obsidian plugin:reload id="name"    # Reload plugin

Developer Commands

obsidian dev:screenshot path="screenshot.png"   # Screenshot
obsidian eval code="app.vault.getFiles().length" # Run JS in Obsidian
obsidian dev:console limit=20                    # Recent console output
obsidian dev:errors                              # Recent errors

Common Agent Patterns

Append to Daily Note with Linking

obsidian daily:append content="
## Reports
- [[reports/2026-02-10-morning|Morning Report]]
"

Create Note and Cross-Link

obsidian create path="reports/morning-report" content="# Morning Report"
obsidian daily:append content="- [[reports/morning-report|Morning Report]]"

Set Properties Programmatically

obsidian property:set path="note.md" name="status" value="draft"
obsidian property:set path="note.md" name="date" value="2026-02-10"

Setup

Requirements

  • Obsidian desktop app installed and running (v1.12.0+ with insider/early access)
  • CLI enabled: Settings > General > CLI toggle
  • insider and cli set to true in global config (~/.config/obsidian/obsidian.json on Linux, ~/Library/Application Support/obsidian/obsidian.json on macOS)

Headless Linux

Use deb package (not snap - snap confinement breaks CLI IPC). Run under xvfb. See references/headless-setup.md for config transfer details.

Multi-Vault

Use vault="Vault Name" parameter: obsidian vault="Notes" daily:read

Tips

  1. Parameter syntax: Always key=value, not positional. Quote values with spaces: content="hello world"
  2. Pipe-friendly: Plain text output, works with grep/awk/jq
  3. JSON output: format=json on search and other commands
  4. Headless prefix: DISPLAY=:5 obsidian <command> on headless Linux
  5. Paths are vault-relative, not filesystem-relative
  6. Stderr noise: GPU errors on headless are harmless, filter with 2>/dev/null or grep

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.83%
按下载量换算81

Claude

27.85%
按下载量换算65

Cursor

20.12%
按下载量换算47

Gemini CLI

9.92%
按下载量换算23

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/letta-ai/skills --skill obsidian-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills