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.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub djarvur/cc-websearch