Replacement for built-in WebFetch — Fetch and summarize web page content. Use this skill when the user provides a URL and asks about its content.
Scanned 8/30/2026
Install to Claude Code
npx -y skills add Djarvur/cc-websearch --skill webfetch --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Webfetch?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/djarvur-webfetch)More formats (shields.io, HTML) on the badges page.
---
name: webfetch
description: Replacement for built-in WebFetch — Fetch and summarize web page content. Use this skill when the user provides a URL and asks about its content.
allowed-tools: Bash(node *)
---
# WebFetch
This skill replaces the built-in WebFetch tool when unavailable.
Fetch web page content and return it for analysis.
## Usage
Run the fetch script with the URL and prompt as JSON stdin:
```bash
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 fetch
- `prompt` (string, required): The question to answer about the page content
The 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.
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!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.