用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HybridAIOne/hybridclaw --skill obsidian命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | obsidian |
| description | Read, search, organize, and create notes in the Obsidian vault. |
| user-invocable | true |
| metadata | {"hybridclaw":{"category":"memory","short_description":"Obsidian vault notes.","tags":["obsidian","markdown","notes","vault"],"related_skills":["notion","project-manager","write-blog-post"]}} |
Obsidian vaults are normal folders on disk. Notes are usually *.md. Do not
touch .obsidian/, *.canvas files, or plugin data unless the user explicitly
asks.
*.md.obsidian/*.canvasResolve the vault path first. Use this order:
MEMORY.mdOBSIDIAN_VAULT_PATHobsidian-cli print-default --path-only~/Library/Application Support/obsidian/obsidian.json
Use the vault with "open": true.~/Documents/Obsidian Vault~/Documents/Obsidian~/Library/Mobile Documents/iCloud~md~obsidian/DocumentsDo not treat the current workspace as the vault unless the user explicitly says
so, the workspace contains .obsidian/, or Obsidian's config points there.
If the resolved vault came from steps 3-6, tell the user which path you found and ask for confirmation before making write changes. For read-only discovery or search, you may proceed, but note the source of the vault path.
If you find a stable, unambiguous vault path, save a short fact to MEMORY.md,
for example Obsidian vault: /absolute/path/to/vault. Do not save ambiguous or
temporary vaults.
Assume:
VAULT="/absolute/path/to/vault"
Prefer obsidian-cli when available for vault-aware search and safe moves.
Otherwise use the shell commands below.
Pick default vault:
obsidian-cli print-default --path-only
printenv OBSIDIAN_VAULT_PATH
cat "$HOME/Library/Application Support/obsidian/obsidian.json"
sed -n '1,220p' "$VAULT/Folder/Note.md"
This is a bounded first read. If the note is longer than 220 lines, say so
and continue with a wider or full read instead of pretending you saw the
whole file.rg --files "$VAULT" -g '*.md'obsidian-cli search "keyword"
obsidian-cli search-content "keyword"
Shell fallback:
rg --files "$VAULT" -g '*.md' | rg -i 'keyword'
rg -n --glob '*.md' 'keyword' "$VAULT"obsidian-cli create "Folder/New note" --content "# Title"
Shell fallback:
set -C && printf '# Title\n' > "$VAULT/Folder/New note.md"; set +Cprintf '\nNew content\n' >> "$VAULT/Folder/Existing note.md"obsidian-cli move "Old Path/Note" "New Path/Note"
Shell fallback:
mv -n "$VAULT/Old Path/Note.md" "$VAULT/New Path/Note.md"
If you move manually, search for and fix stale links before finishing.obsidian-cli delete "Path/Note"
Shell fallback:
rm "$VAULT/Path/Note.md"Wikilinks:
[[Note Name]] when nearby notes use wikilinks