web-fetcher
Fetch web pages and extract readable content for AI use. Use when reading, summarizing, or crawling a specific URL or small set of URLs. Prefer low-friction URL-to-Markdown services first, then fall back to browser-based retrieval, search snippets, or cached/indexed copies when sites are protected by Cloudflare or similar bot checks.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/aurthes/aurthes-web-fetcher-v2Web Fetcher
Fetch readable web content with a reliability-first fallback chain.
Core rule
Do not promise direct access to every site. Some sites use Cloudflare, login walls, bot detection, or legal restrictions. In those cases, switch to the next fallback instead of insisting the first method should work.
Preferred fetch order
1) Direct readable fetch
Try lightweight conversion services first:
-
r.jina.ai
https://r.jina.ai/http://example.com -
markdown.new
https://markdown.new/https://example.com -
defuddle
https://defuddle.md/https://example.com
For deterministic retries, use the bundled script:
python {baseDir}/scripts/fetch_url.py "https://example.com/article"
The script returns JSON with:
- chosen method
- attempt history
- blocked/thin-content detection
- final content when successful
Use these when the user wants article text, page summaries, or structured extraction from normal public pages.
2) Detect failure modes early
Treat the fetch as failed or unreliable if you see signs like:
Just a moment...Performing security verificationEnable JavaScript and cookies- CAPTCHA / challenge pages
- login wall instead of target content
- obvious truncation / missing article body
When this happens, stop treating the result as the page content.
3) Browser fallback for protected sites
For sites blocked behind Cloudflare or requiring real browser execution:
- Prefer a real browser session via OpenClaw browser tools when available.
- If the user is using the Chrome relay/extension, ask them to attach the tab and then inspect the live rendered page.
- Snapshot the page and extract only the needed fields.
Use browser fallback for:
- JS-heavy pages
- Cloudflare-protected pages
- sites that render key content after load
- pages where the direct markdown services return verification screens
4) Search / indexed fallback
If direct fetch and browser fetch are not available or still fail:
- search for the exact page / journal / article title
- use search snippets, publisher mirror pages, cached summaries, or secondary sources
- prefer official publisher pages when search can surface the needed field
- clearly label data as secondary-source derived if it was not read directly from the target page
This is often enough for metadata tasks like:
- editor-in-chief names
- journal impact factors
- publication frequency
- ISSN
- institutional affiliations
5) Partial-completion mode
If a site is inconsistent, return a mixed result instead of stalling:
- fill the rows that can be verified directly
- mark blocked / unresolved rows clearly
- explain what failed and which fallback was used
Practical extraction strategy
For one page
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-aurthes-aurthes-web-fetcher-v2": {
"enabled": true,
"auto_update": true
}
}
}