Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

obsidian-cli-officialObsidian CLI official 搜索

Agent Skill

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

总安装

122,328

周安装

5,097

GitHub Stars

8

下载量

40,776
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install obsidian-cli-official

简介

官方黑曜石 CLI (v1.12+)。用于 Obsidian 注释、任务、搜索、标签、属性、链接等的完整命令行界面。

SKILL.md

name
obsidian-cli-official
description
|
homepage
https://help.obsidian.md/cli
metadata
openclaw
emoji
💎
requires
bins
["obsidian"]
platform
["macos", "windows", "linux"]

Obsidian Official CLI

Official command-line interface for Obsidian (v1.12+). 115 commands.

Prerequisites

  • Obsidian 1.12+ (free, public release since v1.12)
  • Obsidian must be running (CLI connects via IPC)
  • Enable CLI: Settings → General → Enable CLI

Setup

Add Obsidian to PATH:

macOS:

export PATH="$PATH:/Applications/Obsidian.app/Contents/MacOS"

Windows:

$env:PATH += ";$env:LOCALAPPDATA\Obsidian"

Linux:

  • Snap: Already in PATH
  • Flatpak: alias obsidian='flatpak run md.obsidian.Obsidian'
  • AppImage: Move to ~/.local/bin and chmod +x

Test: obsidian version

Syntax

  • Parameters: name=value or name="value with spaces"
  • Flags: just the name, e.g. open, overwrite
  • Newlines: use `\

` in content strings

  • Target vault: obsidian vault="My Vault" <command> (must be first)
  • Target file: file=<name> (wikilink-style) or path=<folder/file.md> (exact)
  • Copy output: append --copy to any command

Common Commands (with examples)

Daily Notes

obsidian daily                                    # Open today
obsidian daily:append content="- [ ] Buy milk"    # Add to today
obsidian daily:prepend content="# Important"      # Add to top
obsidian daily:read                               # Read today's content
obsidian daily:path                               # Get daily note path

Files

obsidian create name="Note" content="# Hello"     # Create note
obsidian create name="Note" template=Meeting       # Create from template
obsidian read file="Note"                          # Read note
obsidian append file="Note" content="More text"    # Append to note
obsidian prepend file="Note" content="Top text"    # Prepend to note
obsidian move file="Note" to="Archive/Note.md"     # Move note
obsidian rename file="Note" name="New Name"        # Rename note
obsidian delete file="Note"                        # Delete note
obsidian open file="Note"                          # Open note

Search

obsidian search query="meeting notes"              # Search vault
obsidian search:context query="TODO"               # Search with context
obsidian search:open query="project"               # Open search view

Tasks

obsidian tasks daily todo                          # Incomplete tasks in daily
obsidian tasks todo                                # All incomplete tasks
obsidian task daily line=3 toggle                  # Toggle task at line 3

Tags & Properties

obsidian tags counts                               # List all tags
obsidian tags counts sort=count                    # Sort by frequency
obsidian property:set name="status" value="done" file="Note"
obsidian property:read name="status" file="Note"
obsidian property:remove name="status" file="Note"
obsidian properties file="Note"                    # List all properties

Links

obsidian backlinks file="Note"                     # Incoming links
obsidian links file="Note"                         # Outgoing links
obsidian orphans                                   # No incoming links
obsidian deadends                                  # No outgoing links
obsidian unresolved                                # Broken links

Developer

obsidian devtools                                  # Open dev tools
obsidian eval code="app.vault.getFiles().length"   # Run JavaScript
obsidian dev:screenshot path=screenshot.png         # Screenshot
obsidian plugin:reload id=my-plugin                # Reload plugin

All Commands (115 total)

General (4)

  • help - Show help / help for specific command
  • version - Show Obsidian version
  • reload - Reload the app window
  • restart - Restart the app

Daily Notes (5)

  • daily - Open daily note
  • daily:path - Get daily note path
  • daily:read - Read daily note contents
  • daily:append - Append content to daily note
  • daily:prepend - Prepend content to daily note

Files & Folders (12)

  • file - Show file info
  • files - List files in vault
  • folder - Show folder info
  • folders - List folders in vault
  • open - Open a file
  • create - Create a new file
  • read - Read file contents
  • append - Append content to a file
  • prepend - Prepend content to a file
  • move - Move or rename a file
  • rename - Rename a file
  • delete - Delete a file

Search (3)

  • search - Search vault for text
  • search:context - Search with matching line context
  • search:open - Open search view

Tasks (2)

  • tasks - List tasks in the vault
  • task - Show or update a task

Tags (2)

  • tags - List tags in the vault
  • tag - Get tag info

Properties (4)

  • properties - List properties in the vault
  • property:set - Set a property on a file
  • property:remove - Remove a property from a file
  • property:read - Read a property value

Aliases (1)

  • aliases - List aliases in the vault

Links (5)

  • backlinks - List backlinks to a file
  • links - List outgoing links from a file
  • unresolved - List unresolved links
  • orphans - Files with no incoming links
  • deadends - Files with no outgoing links

Outline (1)

  • outline - Show headings for a file

Bookmarks (2)

  • bookmarks - List bookmarks
  • bookmark - Add a bookmark

Bases / Database (4)

  • bases - List all base files
  • base:views - List views in a base
  • base:create - Create a new item in a base
  • base:query - Query a base and return results

Templates (3)

  • templates - List templates
  • template:read - Read template content
  • template:insert - Insert template into active file

Commands & Hotkeys (4)

  • commands - List available command IDs
  • command - Execute an Obsidian command
  • hotkeys - List hotkeys
  • hotkey - Get hotkey for a command

Tabs & Workspaces (7)

  • tabs - List open tabs
  • tab:open - Open a new tab
  • workspace - Show workspace tree
  • workspaces - List saved workspaces
  • workspace:load - Load a saved workspace
  • workspace:save - Save current layout
  • workspace:delete - Delete a saved workspace

File History & Diff (6)

  • diff - List or diff local/sync versions
  • history - List file history versions
  • history:list - List files with history
  • history:read - Read a file history version
  • history:restore - Restore a file history version
  • history:open - Open file recovery

Sync (7)

  • sync - Pause or resume sync (on/off)
  • sync:status - Show sync status
  • sync:history - List sync version history
  • sync:read - Read a sync version
  • sync:restore - Restore a sync version
  • sync:open - Open sync history
  • sync:deleted - List deleted files in sync

Publish (6)

  • publish:site - Show publish site info
  • publish:list - List published files
  • publish:status - Show publish status
  • publish:add - Publish files
  • publish:remove - Unpublish files
  • publish:open - Open published site

Themes & Snippets (9)

  • themes - List installed themes
  • theme - Show active theme or get info
  • theme:set - Set active theme
  • theme:install - Install a community theme
  • theme:uninstall - Uninstall a theme
  • snippets - List installed CSS snippets
  • snippets:enabled - List enabled CSS snippets
  • snippet:enable - Enable a CSS snippet
  • snippet:disable - Disable a CSS snippet

Plugins (9)

  • plugins - List installed plugins
  • plugins:enabled - List enabled plugins
  • plugins:restrict - Toggle restricted mode
  • plugin - Get plugin info
  • plugin:enable - Enable a plugin
  • plugin:disable - Disable a plugin
  • plugin:install - Install a community plugin
  • plugin:uninstall - Uninstall a community plugin
  • plugin:reload - Reload a plugin

Vault (3)

  • vault - Show vault info
  • vaults - List known vaults
  • vault:open - Open a vault (TUI only)

Random Notes (2)

  • random - Open a random note
  • random:read - Read a random note

Unique Notes (1)

  • unique - Create unique note

Web Viewer (1)

  • web - Open URL in web viewer

Word Count (1)

  • wordcount - Count words and characters

Recently Opened (1)

  • recents - List recently opened files

Developer (10)

  • devtools - Toggle Electron dev tools
  • eval - Execute JavaScript
  • dev:screenshot - Take a screenshot
  • dev:console - Show captured console messages
  • dev:errors - Show captured errors
  • dev:css - Inspect CSS with source locations
  • dev:dom - Query DOM elements
  • dev:cdp - Run Chrome DevTools Protocol command
  • dev:debug - Attach/detach CDP debugger
  • dev:mobile - Toggle mobile emulation

Troubleshooting

"Cannot connect to Obsidian"

  • Ensure Obsidian is running
  • Enable CLI in Settings → General → Enable CLI

"Command not found: obsidian"

  • Add Obsidian to PATH (see Setup above)

"File not found"

  • file=Name resolves like wikilinks (no path, no .md)
  • path=folder/file.md for exact paths

中文说明

前置条件

  • Obsidian 1.12+(免费公开版本)
  • Obsidian 必须运行中
  • 启用 CLI:设置 → 通用 → 启用 CLI

常用命令

obsidian daily                    # 打开今日日记
obsidian create name="笔记"       # 创建笔记
obsidian search query="关键词"    # 搜索
obsidian tasks daily todo         # 列出未完成任务
obsidian tags counts              # 列出标签

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

90.39%
按下载量换算36,857

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install obsidian-cli-official 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills