Summarize Skill
Summarize content from URLs, files, or text into digestible formats.
Summarizing URLs
- •Use
web_fetchtool to get the content:
code
web_fetch(url="https://example.com/article")
- •Extract and summarize the key points
Summarizing Files
- •Use
read_filetool to read the content:
code
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
code
## 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:
code
## 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.)