Skills obsidian-clip
Create and manage Obsidian “Clip” notes (web/article/page clips). Use when the user says “clip/剪藏/收藏/保存这个链接”, wants a readable summary of a URL, and wants it saved into an Obsidian vault under Clip/YYYY-MM/.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/abstract-sum/obsidian-clip" ~/.claude/skills/openclaw-skills-obsidian-clip && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/abstract-sum/obsidian-clip" ~/.openclaw/skills/openclaw-skills-obsidian-clip && rm -rf "$T"
manifest:
skills/abstract-sum/obsidian-clip/SKILL.mdsource content
Obsidian Clip
Turn a URL into a readable, reusable Clip note in an Obsidian vault.
Storage
- Vault:
(recommended to set; fallback supported by script)${OBSIDIAN_VAULT} - Folder:
Clip/YYYY-MM/ - Filename:
YYYY-MM-DD_标题_关键词.md
Output standard (must follow)
The skill supports Chinese and English notes.
- Default language: auto-detect (based on your system locale and whether the content contains CJK characters)
- Override language: set
orOBSIDIAN_CLIP_LANG=zhOBSIDIAN_CLIP_LANG=en
Structure:
- Theme / 主题一句话 (1 sentence, plain)
- Takeaways / 要点 (5–10 bullets, each ≤ 1 line)
- How I’ll use it / 我怎么用 (1–3 bullets; actions / why it matters)
- Limits / 规则/限制 (optional; paywall/login required, license, caveats)
Workflow
- Fetch the page
- Prefer lightweight extraction tools (e.g.,
) first.web_fetch - Use a real browser only when needed (JS-heavy sites / WeChat / login / extraction fails).
- If blocked by login/paywall, ask the user to log in, then retry.
- Prefer lightweight extraction tools (e.g.,
- Rewrite for readability
- Don’t make the output about tool limitations.
- If details are still inaccessible, produce a useful clip anyway: page定位 + 可用信息 + what you need to finish.
- Do not send screenshots/images unless the user explicitly requests.
- Save to Obsidian using the bundled script.
Bundled script
Path:
scripts/clip_save.sh
Example:
bash scripts/clip_save.sh \ --url "https://example.com" \ --title "页面标题" \ --theme "一句话主题" \ --bullets "要点1" --bullets "要点2" \ --actions "我怎么用1" \ --limits "规则/限制(可选)" \ --tags "clip" --tags "ai" \ --keywords "keyword1-keyword2" \ --date "YYYY-MM-DD"
Notes:
/--bullets
/--actions
/--limits
can be repeated.--tags- Keep
short (2–5 tokens joined by--keywords
).-