Skip to main content
Back to registry

web-scraping

jamditis/claude-skills-journalism

Patterns for reliable, ethical web scraping with fallback strategies and anti-bot handling.

Installs1
Install command
npx skills add https://github.com/jamditis/claude-skills-journalism --skill web-scraping
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykWARN
About this skill
Patterns for reliable, ethical web scraping with fallback strategies and anti-bot handling. Implement multiple extraction strategies with automatic fallback: Use browser developer tools to discover APIs: When you copy a cURL from dev tools, it includes many parameters. Strip it down by: Source: Leon Yin, "Finding Undocumented APIs," Inspect Element , 2023 Detect paywalls, anti-bot pages, and other failures: - Open developer tools (right-click → Inspect, or F12) - Go to the Network tab to monitor all requests - Filter by Fetch/XHR to show only API calls - Trigger the action you want to capture (search, scroll, click) - Analyze the response — usually JSON with key-value pairs - Copy as cURL (right-click the request) - Convert to code using curlconverter.com - Remove unnecessary cookies — test without them first - Keep authentication tokens if required - Identify the input parameters you can modify (like prefix for search terms) - Test parameter values — some expire, so periodically verify - Always check robots.txt before scraping - Respect rate limits and add delays between requests - Don't scrape personal data without consent - Cache responses to avoid redundant requests - Identify yourself with a descriptive User-Agent when appropriate - Stop if you receive explicit blocking signals

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does web-scraping do?

Patterns for reliable, ethical web scraping with fallback strategies and anti-bot handling.

Is web-scraping good?

web-scraping does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does web-scraping work with?

web-scraping currently lists compatibility with cursor, kimi-cli, github-copilot.

What are alternatives to web-scraping?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install web-scraping?

npx skills add https://github.com/jamditis/claude-skills-journalism --skill web-scraping

Related skills

More from jamditis/claude-skills-journalism

Related skills

Alternatives in Software Engineering