Spider crawl scrape
Skill spider-rs/spider-claude-plugin/skills/spider-crawl-scrape
npx -y skills add spider-rs/spider-claude-plugin --skill spider-crawl-scrapeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Crawl websites, scrape individual pages, search the web, extract links, and bypass bot protection with Spider Cloud. Use when the user wants to pull content from one URL or many, gather documentation, search the web and fetch results, or get past anti-bot blocks — and wants the right parameters for clean, LLM-ready output.
SKILL.md
2.8 KB, as published. Nobody here has run it
Spider: crawling, scraping & search
Tools for fetching web content at scale. All return clean, LLM-ready output when
you ask for return_format: "markdown".
spider_scrape — one page
Fetch and extract a single page. Cheaper and faster than crawl when you only need one URL.
return_format—markdown(best for context),text,raw(HTML)readability— cleaner article extractionroot_selector— scope extraction to a DOM subtree
spider_crawl — many pages
Crawl a site following links. Best for docs sites, sitemaps, multi-page content.
limit— max pages (0= unlimited)depth— max link depth from the start URLreturn_format—markdownrecommendedfilter_output_main_only— strip nav/footer noise
spider_crawl: { url: "https://react.dev/reference/react", limit: 50,
return_format: "markdown", filter_output_main_only: true }
spider_search — web search
Search the web, optionally fetching full page content.
search— the querynum— max resultsfetch_page_content—truereturns full content, not just URLstbs— time filter (qdr:hhour,qdr:dday,qdr:wweek,qdr:mmonth)
spider_links — discover URLs
Extract links from a page without fetching their content. Use to decide what to crawl next.
spider_unblocker — bot-protected sites
Access content behind anti-bot protection using fingerprinting and proxy
rotation. Costs extra credits on top of a base scrape — try spider_scrape
first, escalate only when blocked.
spider_transform — HTML → markdown/text
Convert HTML you already have to markdown or text without making a web request.
spider_screenshot — page image
Server-side screenshot via the REST API. Returns base64 PNG; supports full-page capture and custom viewports.
AI extraction (requires AI subscription)
Each takes a plain-English prompt:
spider_ai_scrape— structured JSON from a page ("Extract product name, price, rating for each item")spider_ai_crawl— crawl guided by intent ("Find all pricing pages and extract plan details")spider_ai_search— search with AI ranking/filteringspider_ai_links— find and categorize links by description
Tips
- Search then scrape in one call with
fetch_page_content: true. - Scrape then transform:
return_format: "raw"thenspider_transformto reformat with no extra API call. - Call
spider_get_creditsbefore large crawls.