From market-radar
This skill should be used when the user wants to interact with Obsidian from Claude Code. Triggers when the user asks to "search obsidian", "query bases", "read note properties", "set note properties", "create notes in obsidian", or work with Obsidian-specific files like .base files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/market-radar:obsidian-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
此 skill 提供通过 Obsidian CLI 操作 Obsidian 的能力,支持用户在 Claude Code 中查询、搜索、操作 Obsidian vault。
此 skill 提供通过 Obsidian CLI 操作 Obsidian 的能力,支持用户在 Claude Code 中查询、搜索、操作 Obsidian vault。
# 创建文件
obsidian create path="folder/note.md" content="# Title\n\nContent"
# 读取文件
obsidian read file="note-name"
# 列出文件
obsidian files folder="folder-path"
# 搜索文件
obsidian search query="search term" path="folder"
# 读取属性
obsidian property:read file="note-name" name="property-name"
# 设置属性
obsidian property:set file="note-name" name="property-name" value="value"
# 列出所有 .base 文件
obsidian bases
# 查询 base 结果
obsidian base:query file="base-name" view="view-name" format=json
obsidian create path="intelligence/Threat-Landscape/_index.base" content="filters:
and:
- file.ext == \"md\"
- file.name != \"_index\"
views:
- type: table
name: \"按发布时间\"
order:
- note.published_at
direction: DESC"
obsidian search query="ransomware" path="intelligence"
obsidian base:query file="Threat-Landscape/_index" view="最近 7 天新增" format=json
file 参数使用文件名(不需要完整路径和扩展名)path 参数需要完整路径(从 vault 根目录开始)\n 表示换行,\t 表示制表符references/cli-commands.md - 完整 CLI 命令参考npx claudepluginhub cyberstrat-forge/cyber-nexus --plugin market-radarRuns Obsidian CLI commands for vault ops: search, backlinks, tags, tasks, properties, daily notes, file read/write/create/move. Use for indexed features; fallback to file tools otherwise.
Interact with an Obsidian vault via its CLI — read, create, search notes, manage tasks and properties. Also supports plugin/theme development with reload, error capture, screenshots, and DOM inspection commands.
Searches, creates, and organizes notes in an Obsidian vault. Uses wikilinks and index notes. Relevant when managing a personal knowledge base or research notes.