name: webfetch description: Fetch and read live content from URLs, including markdown conversion for HTML pages.
Web Fetch Skill
When to use this skill
Use this skill when a user asks for current or exact content from a URL, such as:
- "Summarize this page"
- "What does this doc say?"
- "Fetch this link and extract the key points"
Tool to use
Call the webFetch tool with:
url(required): must start withhttp://orhttps://format(optional):markdown(default),text, orhtmltimeout(optional): seconds, max120
Usage guidelines
- Prefer
format: "markdown"for article/docs pages. - Use
format: "text"when the user wants plain extracted text. - Use
format: "html"only when raw HTML is explicitly requested. - If the tool returns an
error, explain it clearly and offer a retry suggestion. - If successful, provide a concise summary first, then include specific details the user asked for.
Output handling
- The tool response includes a
titleandoutput. - For image URLs, it may return
imageDataUrl; describe what happened instead of dumping the entire data URL unless explicitly requested.