Agent Skills
› FoundDream/miniclawd
› summarize
summarize
GitHub该技能用于将网页文章、文件或文本内容总结为简洁的关键点。支持URL抓取和文件读取,提供简报、要点、结构化及高管摘要等多种格式,并自动处理语言适配与关键信息保留。
Trigger Scenarios
用户要求总结网页或文章内容
用户需要提取文档核心观点
用户请求生成简报或关键要点
Install
npx skills add FoundDream/miniclawd --skill summarize -g -y
SKILL.md
Frontmatter
{
"name": "summarize",
"description": "Summarize web articles, documents, or any content into concise key points."
}
Summarize Skill
Summarize content from URLs, files, or text into digestible formats.
Summarizing URLs
- Use
web_fetchtool to get the content:
web_fetch(url="https://example.com/article")
- Extract and summarize the key points
Summarizing Files
- Use
read_filetool to read the content:
read_file(path="/path/to/document.md")
- Process and summarize
Summary Formats
Brief Summary (Default)
- 2-3 sentences capturing the main idea
- Best for quick understanding
Key Points
- Bullet list of 5-7 main points
- Include important facts, numbers, quotes
Structured Summary
## TL;DR
One sentence summary
## Key Points
- Point 1
- Point 2
- Point 3
## Details
Expanded explanation if needed
## Takeaways
What reader should remember or do
Executive Summary
For business/technical documents:
## Overview
Brief context
## Key Findings
- Finding 1
- Finding 2
## Recommendations
- Action item 1
- Action item 2
## Next Steps
What happens next
Language Handling
- Summarize in the same language as the source by default
- If user specifies a language, translate the summary
- Keep technical terms in original language when appropriate
Tips
- Preserve important numbers, dates, and names
- Note if content seems incomplete or paywalled
- For long documents, offer to summarize by section
- Mention content type (news, research, blog, etc.)
Version History
- 2d65665 Current 2026-07-24 12:16


