Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

obsidian-vault-managerObsidian vault manager 搜索

Agent Skill

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

总安装

541

周安装

23

GitHub Stars

11

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/sjungling/claude-plugins --skill obsidian-vault-manager

简介

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

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • obsidian-vault-manager 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Obsidian Vault Manager

Prerequisites

Before performing vault operations:

  1. Verify obsidian CLI is installed: obsidian --version The CLI is the native obsidian binary that ships with the Obsidian desktop app — not a separate npm package.
  2. List available vaults: obsidian vaults
  3. Get vault path: obsidian vault "<name>" info=path

Overview

Use obsidian for vault operations that touch links or structure. For creating notes with substantial content (multi-line, frontmatter, etc.), use the Write tool directly after locating the vault path — the CLI's create command strips multi-line content when \n escapes are used.

Quick Reference

TaskCommandNotes
List vaultsobsidian vaultsAlways run first
Vault infoobsidian vault "<name>"Name, path, file count
Vault pathobsidian vault "<name>" info=pathPath only, good for scripting
List foldersobsidian "vault=<name>" foldersQuote vault name if it has spaces
Read noteobsidian "vault=<name>" read "<note name>"Reads by name (fuzzy)
Create noteobsidian "vault=<name>" create path="folder/name.md" content="$CONTENT"Use printf to build $CONTENT for multi-line
Overwrite noteobsidian "vault=<name>" create path="..." content="$CONTENT" overwrite
Append to noteobsidian "vault=<name>" append path="<path>" content="<text>"
Move noteobsidian "vault=<name>" move path="old.md" newpath="new.md"Auto-updates all links
Search contentobsidian "vault=<name>" search query="<term>" [path=<folder>] [format=json]
Daily noteobsidian "vault=<name>" dailyCreate/open today's note

See also:

Core Workflows

Step 1 — Find the Vault

# List vaults to confirm the name
obsidian vaults

# Get full info (name, path, file count)
obsidian vault "<name>"

# Get just the path (useful for scripting)
VAULT_PATH=$(obsidian vault "<name>" info=path)

Step 2 — Explore Structure

# List folders
obsidian "vault=<name>" folders

# Search for existing notes
obsidian "vault=<name>" search query="<topic>" path=<folder> format=json

Step 3 — Create Notes with Rich Content

Use printf to build the content variable — this correctly handles newlines and multi-line content including frontmatter:

CONTENT=$(printf '---\ntags:\n  - til\nindex: "[[Today I learned]]"\n---\n## Heading\n\nContent here.')
obsidian "vault=<name>" create path="til/2026-04-27 My Note.md" content="$CONTENT"

Look at an existing note first to match local formatting conventions (tag names, frontmatter fields, index backlinks, etc.):

obsidian "vault=<name>" read "<existing note name>"

Moving/Reorganizing Notes

# ✅ CORRECT: Auto-updates all links
obsidian "vault=<name>" move path="Random Notes/Design.md" newpath="Projects/Design.md"

# ❌ WRONG: Breaks all links to this note
mv "vault/Random Notes/Design.md" "vault/Projects/Design.md"

Common Mistakes

MistakeWhy WrongFix
Using obsidian-cliThat's a different npm package — the tool is obsidianUse obsidian
Using --flags syntaxThe CLI uses key=value positional args, not --flagsUse key=value format
create with \n in double-quoted stringEscapes get stripped, content truncatedUse printf to build a $CONTENT variable
Using mv to move notesBreaks all [[wiki-links]] to that noteUse obsidian move
Not checking existing note formatEach vault has different tagging/frontmatter conventionsRead an existing note first
Using absolute paths in wiki-linksBreaks when vault movesUse vault-relative paths

When to Use Standard Tools

  • Bulk content editing: Use Edit after reading with obsidian read
  • Complex search patterns: Use Grep directly on the vault path (use obsidian vault "<name>" info=path to get it)

Always preserve:

  • Frontmatter (YAML between ---)
  • Obsidian link syntax [[Note]]
  • Tag syntax #tag-name
  • Markdown structure

Success Criteria

Vault operations succeed when:

  • All [[wiki-links]] remain valid after moves
  • Notes created in correct vault location with full content intact
  • Formatting matches existing notes in the same folder
  • No broken links or orphaned notes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.22%
按下载量换算57

windsurf

21.35%
按下载量换算41

trae

19.18%
按下载量换算36

OpenCode

14.09%
按下载量换算27

Codex

7.2%
按下载量换算14

Antigravity

3.25%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills