From WebSearch
Fetches and summarizes web page content from a URL. Replaces the built-in WebFetch tool; passes HTML content to Claude for analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-websearch:webfetchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill replaces the built-in WebFetch tool when unavailable.
This skill replaces the built-in WebFetch tool when unavailable.
Fetch web page content and return it for analysis.
Run the fetch script with the URL and prompt as JSON stdin:
echo '{"url":"URL","prompt":"QUESTION"}' | node "${CLAUDE_PLUGIN_ROOT}/skills/webfetch/scripts/webfetch.cjs"
The script accepts JSON on stdin with this schema:
url (string, required, must be a valid URL): The URL of the page to fetchprompt (string, required): The question to answer about the page contentThe script outputs the page content to stdout. Errors and diagnostic messages are written to stderr.
HTTP URLs are automatically upgraded to HTTPS. Cross-host redirects are reported but not followed. Only HTML content types (text/html, application/xhtml) are supported.
Use the fetched content to answer the user's question about the page.
npx claudepluginhub djarvur/cc-websearchSummarizes web content by fetching URLs, extracting quote-grounded key passages, and structuring output for documentation, articles, API references, READMEs. Reports partial accessibility.
Fetches and summarizes URLs and PDFs, returning concise summaries or clean Markdown. Supports Feishu, WeChat, GitHub, Twitter, and general web pages.
Fetches URLs and extracts main content (title, description, paragraphs) with 80-99% HTML size reduction via smart extraction. Use for ad-hoc web research and quick page previews.