web-fetch
Installation
SKILL.md
Web Fetch Skill
Fetch web content using the best available method, in priority order:
1. WebFetch Tool (Primary — always try this first)
Use the built-in WebFetch tool for all web page fetching. It renders pages in a real Electron BrowserWindow with full JavaScript execution, handles SPAs, dynamic content, anti-bot protections, and returns clean markdown. This is NOT a simple HTTP request.
WebFetch(url="https://example.com/article", prompt="Extract the main content")
- Handles JavaScript-rendered pages (React, Vue, etc.)
- Shares session cookies (can access logged-in content)
- Auto-extracts article content via Readability
- Returns clean markdown, ready to use
Always start with WebFetch. Only move to the next option if WebFetch fails or is insufficient.