scraping-automation
Installation
SKILL.md
Scraping Automation Skill
Build production-grade web scrapers with anti-detection, resilient extraction, and respectful crawling patterns.
Browser Context and Stealth Mode
BAD: Default browser fingerprint exposes automation.
// Detectable as bot, no stealth configuration
const browser = await playwright.chromium.launch();
const page = await browser.newPage();
await page.goto('https://example.com');
GOOD: Stealth mode with randomized fingerprints.