openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > 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...

效率与工具

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.2

统计:⭐ 0 · 271 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :良性

Package:abstract-sum/obsidian-clip

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :良性

OpenClaw 评估

This skill is internally consistent: it fetches or summarizes a web page and saves a local Obsidian note using a simple bundled shell script, and it only needs optional, local configuration.

目的

The name/description (create/save Obsidian clips) matches the actual behavior: SKILL.md describes fetching & summarizing pages and the repo includes a script that writes markdown files into an Obsidian vault. There are no unexpected credentials, cloud APIs, or unrelated binaries requested.

说明范围

Runtime instructions tell the agent to fetch pages (prefer lightweight extraction; use a real browser when needed) and to ask the user to log in if blocked by paywalls. This is coherent for a clipping tool, but it means the agent may perform web requests and use browser capabilities or ask the user to provide access to gated content — expected but worth noting for privacy.

安装机制

No install spec; the skill is instruction-only with a single included Bash script. Nothing is downloaded or written to system locations beyond the user's Obsidian vault path.

证书

No required environment variables or secrets. Two optional environment variables (OBSIDIAN_VAULT and OBSIDIAN_CLIP_LANG) are reasonable and documented. The script also respects LANG/LC_ALL for language detection — appropriate for multilingual output.

持久

always:false and the skill only writes to the user-configurable Obsidian vault (defaults to a path under $HOME). It does not modify other skills or system-wide agent settings.

综合结论

This skill appears safe and does what it says: it summarizes URLs and writes a note to a local Obsidian vault using the included script. Before enabling or using it, check these practical points: (1) confirm the vault path (OBSIDIAN_VAULT) so notes are saved where you expect; (2) be aware that the agent may fetch pages or open a browser to access content — do not use it to fetch pages that require you to expose credentials to an untrusted/host…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Obsidian Clip」。简介:Create and manage Obsidian “Clip” notes (web/article/page clips). Use when the …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/abstract-sum/obsidian-clip/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: obsidian-clip
description: 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/.
---

# Obsidian Clip

Turn a URL into a **readable, reusable Clip note** in an Obsidian vault.

## Storage

- Vault: `${OBSIDIAN_VAULT}` (recommended to set; fallback supported by script)
- 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 `OBSIDIAN_CLIP_LANG=zh` or `OBSIDIAN_CLIP_LANG=en`

Structure:

1) **Theme / 主题一句话** (1 sentence, plain)
2) **Takeaways / 要点** (5–10 bullets, each ≤ 1 line)
3) **How I’ll use it / 我怎么用** (1–3 bullets; actions / why it matters)
4) **Limits / 规则/限制** (optional; paywall/login required, license, caveats)

## Workflow

1) **Fetch the page**
   - Prefer lightweight extraction tools (e.g., `web_fetch`) first.
   - 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.
2) **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.
3) **Save to Obsidian** using the bundled script.

## Bundled script

Path: `scripts/clip_save.sh`

Example:

```bash
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` / `--tags` can be repeated.
- Keep `--keywords` short (2–5 tokens joined by `-`).