a6f05ab2d5
- Phase 0: AGENTS.md cleanup (dedup quotes, renumber sections, merge qmd) - Phase 1: typed relations (manage-relations.py, graph-search.py, check-staleness.py, detect-conflicts.py) - Phase 2: frontmatter validator, weekly lint, knowledge promotion, git hooks - Fix .gitignore to track tools/ and .githooks/ - Fix git remote URL (remove plaintext token) - New wiki pages: 504 pages, 34 raw sources
92 lines
1.8 KiB
Markdown
92 lines
1.8 KiB
Markdown
---
|
|
categories:
|
|
- "[[LLM Wiki]]"
|
|
tags:
|
|
- wiki
|
|
- tool
|
|
- obsidian
|
|
- web-clipper
|
|
- ingestion
|
|
created: 2026-04-08
|
|
source: "[[llm-wiki]]"
|
|
type: tool
|
|
aliases:
|
|
- Web Clipper
|
|
- 网页剪藏
|
|
- 剪藏插件
|
|
---
|
|
|
|
# Obsidian Web Clipper
|
|
|
|
> **一句话定义**:Obsidian 官方浏览器扩展,将网页内容快速转换为 Markdown 并保存到笔记库。
|
|
|
|
## 基本信息
|
|
|
|
| 属性 | 值 |
|
|
|------|-----|
|
|
| 官网 | https://obsidian.md/clipper |
|
|
| 平台 | Chrome / Firefox / Edge / Safari |
|
|
| 开发者 | Obsidian |
|
|
|
|
## 在 LLM Wiki 中的角色
|
|
|
|
### Ingestion(摄入)工具
|
|
|
|
Web Clipper 是 LLM Wiki **Ingest 操作**的关键工具:
|
|
|
|
```
|
|
网页内容 → Web Clipper → Markdown → raw/ (原始来源)
|
|
↓
|
|
LLM 处理 → wiki/ (Wiki 页面)
|
|
```
|
|
|
|
### 功能特点
|
|
|
|
| 功能 | 说明 |
|
|
|------|------|
|
|
| **一键剪藏** | 浏览器按钮快速保存当前页面 |
|
|
| **模板支持** | 自定义 frontmatter 和内容格式 |
|
|
| **URL 处理** | 自动提取标题、描述作为元数据 |
|
|
| **清理功能** | 去除广告和冗余元素 |
|
|
|
|
### 模板示例
|
|
|
|
```yaml
|
|
---
|
|
source: "{{url}}"
|
|
author: []
|
|
topics: []
|
|
created: {{date}}
|
|
---
|
|
|
|
# {{title}}
|
|
|
|
> {{description}}
|
|
|
|
## 内容
|
|
|
|
{{content}}
|
|
```
|
|
|
|
## 与其他工具的关系
|
|
|
|
| 工具 | 用途 |
|
|
|------|------|
|
|
| **Web Clipper** | 将网页摄入为 raw/ 来源 |
|
|
| **Obsidian** | 查看和管理笔记 |
|
|
| **LLM (Agent)** | 处理 raw/ 内容,生成 wiki/ 页面 |
|
|
|
|
## 相关页面
|
|
|
|
- [[Obsidian]] — Web Clipper 的宿主应用
|
|
- [[LLM Wiki]] — LLM Wiki 的 Ingest 操作
|
|
- [[知识库维护自动化]] — LLM 自动维护知识库
|
|
|
|
## 来源
|
|
|
|
---
|
|
## 工具推荐
|
|
|
|
- [[Obsidian Web Clipper]] - 网页剪裁工具
|
|
|
|
- [[llm-wiki]] — Karpathy 提及的摄入工具 |