Agent Skills
› chaitanyagiri/munder-difflin
› md-fetch-summarize
md-fetch-summarize
GitHub获取指定URL内容并生成简洁的Markdown摘要。提取标题、段落概述及关键要点,忽略广告等无关信息,直接返回结构化总结而不保存文件。
Trigger Scenarios
用户要求“抓取并总结”
用户要求“总结这个URL”
用户询问页面内容
用户提供URL并询问其包含的信息
Install
npx skills add chaitanyagiri/munder-difflin --skill md-fetch-summarize -g -y
SKILL.md
Frontmatter
{
"name": "md-fetch-summarize",
"version": "1.0.0",
"description": "Fetch a URL and return a concise markdown summary of its content.\nRead-only: no files are written; the summary is returned as output only.\nUse when asked to \"fetch and summarize\", \"summarize this URL\", \"what does\nthis page say\", or \"get the content of <url>\".\nProactively suggest when the user pastes a URL and asks what it contains. (munder-difflin)\n",
"allowed-tools": [
"WebFetch",
"Bash"
]
}
Fetch & Summarize
Given a URL, fetch its content and return a concise markdown summary.
Steps:
- Fetch the page with
WebFetch(orBashwithcurl -sL <url> | head -200as a fallback). - Extract the main content — ignore nav, footer, ads, and boilerplate.
- 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
- Title (the page's
Do not save or write the fetched content anywhere. Return the summary directly.
Version History
- df15a9a Current 2026-07-05 15:41


