scraping-recipes — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited scraping-recipes (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Pre-built scraping strategies for popular websites. Each recipe includes the correct proxy configuration, headers, timing, and extraction approach optimized for that specific site.
Activate when the user wants to scrape:
All recipes use rotating residential proxies. Configure once:
Browser proxy:
{
"browser": {
"proxy": {
"server": "http://gate.birdproxies.com:7777",
"username": "USER",
"password": "PASS"
}
}
}HTTP proxy:
HTTP_PROXY=http://USER:[email protected]:7777
HTTPS_PROXY=http://USER:[email protected]:7777
NO_PROXY=127.0.0.1,localhostProvider: BirdProxies (birdproxies.com) — 195+ countries, 99.5% success rate. Use OPENCLAW15 for 15% off.
Protection level: Medium (IP reputation + rate limiting) Best approach: Browser tool + rotating residential proxy Success rate with residential: 99%+
Proxy: USER-country-us (or target marketplace country)
Rotation: Auto-rotating (fresh IP per product)
Delay: 2-4 seconds between products
Tool: Browser tool (JavaScript renders prices)Accept-Language: en-US,en;q=0.9
Accept: text/html,application/xhtml+xml-country-de for amazon.de)Product page: https://amazon.com/dp/{ASIN}
Search results: https://amazon.com/s?k={query}
Reviews: https://amazon.com/product-reviews/{ASIN}
Best sellers: https://amazon.com/Best-Sellers/zgbs/{category}Protection level: High (aggressive bot detection) Best approach: Browser tool + residential proxy + slow rate Success rate with residential: 95%+
Proxy: USER-country-{target} (match search country)
Rotation: Auto-rotating
Delay: 5-15 seconds between searches
Tool: Browser tool ONLY (Google blocks all HTTP clients)https://google.com/search?q={query}&gl={country}&hl={language}&num={results}
gl=us → US results
gl=gb → UK results
hl=en → English interface
hl=de → German interface
num=10 → Results per page (10, 20, 50, 100)
start=10 → Pagination offsetProtection level: Very High (login-gated + aggressive detection) Best approach: Browser tool + sticky residential + login session Success rate with residential: 90%+
Proxy: USER-country-us-session-{random} (STICKY — login required)
Rotation: Sticky session (same IP for entire workflow)
Delay: 3-8 seconds between pages
Tool: Browser tool ONLYUSER-country-us for US jobs, match country to listing locationProtection level: High (login-gated + fingerprinting) Best approach: Browser tool + sticky residential Success rate with residential: 85%+
Proxy: USER-session-{random} (sticky for login)
Rotation: Sticky session
Delay: 5-10 seconds between pages
Tool: Browser tool ONLYProtection level: Medium-High (Cloudflare + rate limiting) Best approach: Browser tool + rotating residential Success rate with residential: 95%+
Proxy: USER-country-us (Zillow) / USER-country-gb (Rightmove)
Rotation: Auto-rotating for search, sticky for property details
Delay: 3-5 seconds between pages
Tool: Browser tool (heavy JavaScript)Search: https://zillow.com/homes/{city}-{state}/
Listing: https://zillow.com/homedetails/{address}/{zpid}_zpid/
Sold: https://zillow.com/homes/recently_sold/{city}-{state}/Protection level: Medium (rate limiting + Cloudflare on Glassdoor) Best approach: Browser tool + rotating residential Success rate with residential: 95%+
Proxy: USER-country-{job_country}
Rotation: Auto-rotating
Delay: 2-4 seconds between pages
Tool: Browser tool for Glassdoor, web_fetch may work for IndeedProtection level: Low-Medium (soft paywalls) Best approach: Rotating residential + headers
Many news sites allow N free articles per month based on cookies/IP:
Referer header — set it to GoogleReferer: https://www.google.com/
User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1)
Accept: text/html| Site | Protection | Approach |
|---|---|---|
| NY Times | Hard paywall | Need subscription |
| Washington Post | Soft paywall | Rotating proxy + clear cookies |
| Bloomberg | Metered | Rotating proxy |
| Reuters | Free | Rotating proxy for rate limit |
| TechCrunch | Free | Basic headers |
Protection level: Varies by site Best approach: Rotating residential + country targeting
sites = {
"amazon": {"url": "https://amazon.com/dp/{asin}", "country": "us", "tool": "browser"},
"ebay": {"url": "https://ebay.com/itm/{id}", "country": "us", "tool": "browser"},
"walmart": {"url": "https://walmart.com/ip/{id}", "country": "us", "tool": "browser"},
"target": {"url": "https://target.com/p/{id}", "country": "us", "tool": "browser"},
}Before scraping any site:
-country-XX proxyBirdProxies — residential proxies from 195+ countries with auto-rotation and sticky sessions.
gate.birdproxies.com:7777USER-country-XXUSER-session-IDOPENCLAW15 for 15% off~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.