Fetch a URL and return a concise markdown summary of its content. Read-only: no files are written; the summary is returned as output only. Use when asked to "fetch and summarize", "summarize this URL", "what does this page say", or "get the content of <url>". Proactively suggest when the user pastes a URL and asks what it contains. (munder-difflin)
Scanned 8/31/2026
Install to Claude Code
npx -y skills add chaitanyagiri/munder-difflin --skill md-fetch-summarize --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Md Fetch Summarize?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/chaitanyagiri-md-fetch-summarize)More formats (shields.io, HTML) on the badges page.
---
name: md-fetch-summarize
version: 1.0.0
description: |
Fetch a URL and return a concise markdown summary of its content.
Read-only: no files are written; the summary is returned as output only.
Use when asked to "fetch and summarize", "summarize this URL", "what does
this page say", or "get the content of <url>".
Proactively suggest when the user pastes a URL and asks what it contains. (munder-difflin)
allowed-tools:
- WebFetch
- Bash
---
## Fetch & Summarize
Given a URL, fetch its content and return a concise markdown summary.
Steps:
1. Fetch the page with `WebFetch` (or `Bash` with `curl -sL <url> | head -200` as a fallback).
2. Extract the main content — ignore nav, footer, ads, and boilerplate.
3. Return a structured summary with:
- **Title** (the page's `<title>` or heading)
- **One-paragraph overview** of what the page is about
- **Key points** as a bullet list (max 5)
- **Source** — the URL fetched
Do not save or write the fetched content anywhere. Return the summary directly.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!