From rust-skills
Agent that fetches web content using a priority strategy: local Chrome for anti-crawler sites, crawl4ai as fallback, and direct fetch for regular sites.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
rust-skills:agents/-shared/fetch-strategyThe summary Claude sees when deciding whether to delegate to this agent
Common web fetching strategy for anti-crawler handling. | Type | Examples | Characteristics | |------|----------|-----------------| | Anti-crawler | Reddit, Twitter/X, LinkedIn | Need login or browser fingerprint | | Regular | blog.rust-lang.org, docs.rs | No anti-crawler, direct fetch | ``` Anti-crawler sites: Local Chrome → crawl4ai MCP → give up and mark Regular sites: WebFetch → crawl4ai MCP ...
Common web fetching strategy for anti-crawler handling.
| Type | Examples | Characteristics |
|---|---|---|
| Anti-crawler | Reddit, Twitter/X, LinkedIn | Need login or browser fingerprint |
| Regular | blog.rust-lang.org, docs.rs | No anti-crawler, direct fetch |
Anti-crawler sites: Local Chrome → crawl4ai MCP → give up and mark
Regular sites: WebFetch → crawl4ai MCP
User's real browser with login and normal fingerprint.
macOS:
# Open URL
osascript -e 'tell application "Google Chrome" to open location "URL"'
# Get page HTML
osascript -e 'tell application "Google Chrome" to execute front window'\''s active tab javascript "document.documentElement.outerHTML"'
Strong anti-crawler bypass, needs Docker.
mcp__crawl4ai__scrape(url: "URL")
Built-in tool, simple and fast, no anti-crawler capability.
| Domain | Tool | Reason |
|---|---|---|
| reddit.com | Local Chrome | Strict anti-crawler |
| twitter.com / x.com | Local Chrome | Needs login |
| linkedin.com | Local Chrome | Strict anti-crawler |
| *.rust-lang.org | WebFetch | No anti-crawler |
| docs.rs | WebFetch | No anti-crawler |
| crates.io | WebFetch | No anti-crawler |
| this-week-in-rust.org | WebFetch | No anti-crawler |
| rustfoundation.org | WebFetch | No anti-crawler |
| github.com | WebFetch | Light rate limit |
After fetch, check:
npx claudepluginhub zhengwu119/rust-skills8plugins reuse this agent
First indexed Jan 17, 2026
Showing the 6 earliest of 8 plugins
Agent that fetches web content using a priority strategy: local Chrome for anti-crawler sites, crawl4ai as fallback, and direct fetch for regular sites.
Autonomous web research agent that uses browser automation and Tavily API for content extraction, competitive intelligence, and technical documentation capture. Handles JS-rendered pages and authentication flows.
Firecrawl expert agent for web scraping, crawling, and structured data extraction. Automatically handles anti-bot systems, JavaScript rendering, and AI-powered extraction to produce clean, LLM-ready data.