Summarize any web page by URL or by pasting text. Returns a concise structured summary with key points, entities, and action items. Use when the user wants a quick digest of an article, documentation page, or any web content without reading the full source.
Memory
page-digest
Try itFetch a web page and produce a structured markdown digest: title, key points, entities, action items, and a one-paragraph TL;DR. Use when the user shares a URL and asks for a quick summary, briefing, or extraction of actionable information.
What it does
Fetch a web page and produce a structured markdown digest: title, key points, entities, action items, and a one-paragraph TL;DR. Use when the user shares a URL and asks for a quick summary, briefing, or extraction of actionable information.
The skill document
Page Digest
Turn any URL into a concise, structured markdown digest.
When to use
- User shares a link and wants "the gist" or "summary"
- Need to extract action items, key facts, or entities from an article
- Quick briefing before a meeting based on a web page
Prerequisites
web_fetchtool available in the agent runtime- Target URL must be publicly accessible (no auth-gated pages)
Steps
- Receive URL — Accept the target URL from the user or upstream process.
- Fetch content — Call
web_fetchwithextractMode: "markdown"andmaxChars: 20000. - Analyze — Read the fetched markdown and identify:
- Title (first H1 or page title)
- TL;DR (≤ 3 sentences)
- Key points (3-7 bullet points)
- Entities mentioned (people, orgs, products — max 5)
- Action items (if any — explicit next steps or recommendations)
- Format output — Produce a markdown digest with the sections above, in that order.
- Return — Deliver the digest to the caller.
Output format
## {Title}
**TL;DR:** {3-sentence summary}
### Key Points
- {point 1}
- {point 2}
- ...
### Entities
- {entity} — {brief role/context}
### Action Items
- {action item 1}
- {action item 2}
Example
Input: https://example.com/article-about-ai-regulation
Output:
## AI Regulation Bill Passes Senate
**TL;DR:** The U.S. Senate passed a sweeping AI regulation bill Thursday. The legislation requires companies to audit high-risk AI systems before deployment. The bill now moves to the House for consideration.
### Key Points
- Bipartisan vote of 68-32
- Covers high-risk AI in healthcare, finance, and critical infrastructure
- Penalties for non-compliance up to $10M or 2x profits
- Enforcement begins 18 months after signing
### Entities
- U.S. Senate — Legislative body that voted
- Senate Majority Leader — Sponsored the bill
- FDA — Will enforce medical AI provisions
### Action Items
- Review compliance timeline for affected systems
- Schedule legal review of audit requirements
Error handling
- If URL is unreachable: report the error with the URL, suggest alternatives
- If content is too short (< 200 chars): note it and produce what's available
- If content is too long (> 20000 chars): truncate and warn that the digest may be incomplete
Related skills
Fetch web pages and generate AI-powered summaries using Ollama LLM. Use when you need to (1) scrape and summarize web articles, (2) extract key points from w...
Extracts cognitive patterns, key insights, and action signals from any text input (messages, notes, articles, conversations). Turns raw content into structur...
Personalized recurring news digests: sources, filters, ranks, and delivers stories tied to your interests.
Search the web for a topic and produce a structured summary with key findings, sources, and actionable takeaways. Best for quick research briefs, competitive landscape scans, and topic overviews.
Quickly summarize any text, URL, or file content into a concise structured brief. Use when the user wants a TL;DR, executive summary, or needs to distill long content into key points without reading the full source.