TopRank Skills

Home / Claw Skills / Document / Doc Summarizer
Official OpenClaw rules 54%

Doc Summarizer

doc summarizer

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Doc Summarizer 技能。 若已安装,则直接安装 Doc Summarizer 技能。

Overview

Skill Key
ckchzh2022/doc-summarizer
Author
ckchzh2022
Source Repo
openclaw/skills
Version
-
Source Path
skills/ckchzh2022/doc-summarizer
Latest Commit SHA
af2ac4ad86637f185f94819c45d12246b1226e26

Extracted Content

SKILL.md excerpt

# doc-summarizer

**Name:** doc-summarizer

**Description:** 文档摘要和智能总结助手。支持文件摘要、文本总结、翻译摘要、会议纪要提取、邮件要点、报告生成、思维导图、URL抓取摘要输出文件、本地文件读取摘要输出文件、批量目录摘要、增强版文档对比。Document summarizer with translation, meeting notes extraction, email digest, mind map generation, URL fetch-to-file summary, local file read-to-file summary, batch directory summarization, and enhanced document comparison with keyword analysis. 文档总结、会议纪要、邮件摘要、翻译润色、URL网页抓取、文件输出、批量摘要、文档对比、版本差异、文档太多看不完。

## Usage

All commands are run via the helper script:

```bash
bash ~/.openclaw/workspace/skills/doc-summarizer/scripts/summarize.sh <command> [args...]
```

### Commands

| Command | Description |
|---------|-------------|
| `file <filepath>` | 读取本地文件(.txt .md .html)生成摘要 |
| `text "长文本"` | 对输入文本直接生成摘要 |
| `url <url>` | 抓取网页内容并生成摘要(使用 curl) |
| `bullets <filepath>` | 从文件中提取要点列表 |
| `keywords <filepath>` | 从文件中提取关键词 |
| `compare <file1> <file2>` | 对比两个文档的异同 |
| `wordcount <filepath>` | 字数统计 + 阅读时间估算 |
| `translate "文本" [--to en\|cn]` | 翻译摘要(自动检测语言,中英互译) |
| `meeting "会议记录"` | 会议纪要提取(决议/行动项/截止日期) |
| `email "邮件内容"` | 邮件要点提取 + 三种风格建议回复 |
| `report "长文本"` | 生成结构化分析报告(执行摘要/关键发现/建议) |
| `mindmap "文本"` | 生成思维导图(ASCII 树形结构,3层层次) |
| `fetch <url>` | 抓取URL网页→生成摘要文件(summary_域名_日期.md) |
| `read <filepath>` | 读取本地文件(.txt/.md/.csv)→生成摘要文件(summary_文件名.md) |
| `batch <目录路径>` | 批量摘要 — 遍历目录下所有.txt/.md文件,生成汇总报告(batch_summary_日期.md) |
| `doc-compare <file1> <file2>` | 增强版文档对比 — 字数变化、新增/删除内容、关键词变化、相似度评估 |
| `help` | 显示帮助信息 |

### Examples

```bash
# 摘要本地 Markdown 文件
summarize.sh file ~/notes/meeting.md

# 摘要网页
summarize....

Related Claw Skills