From anakin
Scrape up to 10 URLs at once using anakin-cli and return combined results in a single output file. Use when scraping multiple web pages — comparing products, collecting articles, or gathering data from several sources.
How this skill is triggered — by the user, by Claude, or both
Slash command
/anakin:scrape-batchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scraping multiple web pages at once — comparing products, collecting articles, or gathering data from several sources.
Scraping multiple web pages at once — comparing products, collecting articles, or gathering data from several sources.
anakin status.mkdir -p .anakin
anakin scrape-batch "$ARGUMENTS" -o .anakin/batch-results.json
anakin scrape-batch "<url1>" ... "<url10>" -o .anakin/batch-1.json
anakin scrape-batch "<url11>" ... "<url20>" -o .anakin/batch-2.json
# Batch scrape multiple URLs
anakin scrape-batch "<url1>" "<url2>" "<url3>" -o .anakin/batch-results.json
# With headless browser for JS-heavy sites
anakin scrape-batch "<url1>" "<url2>" --browser -o .anakin/batch-spa.json
# Geo-targeted batch
anakin scrape-batch "<url1>" "<url2>" --country de -o .anakin/batch-de.json
# Extended timeout for many pages
anakin scrape-batch "<url1>" "<url2>" "<url3>" --timeout 300 -o .anakin/batch.json
--browser — Use headless browser (for JS-rendered pages)--country <code> — Country code for geo-targeting (default: us)--timeout <seconds> — Max wait time (default: 180)-o, --output <path> — Save to fileMax 10 URLs per request. For more URLs, split into multiple batch calls.
scrape-batch command — split larger lists into batches.anakin scrape using --browser.-o to save output to a file rather than flooding the terminal.npx claudepluginhub anakin-inc/anakin-claude-plugin --plugin anakinAutomates web crawling and data extraction using Firecrawl: scrape pages, crawl sites, extract structured data with AI, batch URLs, and map site structures.
Scrapes web content as clean markdown/HTML/JSON using Bright Data CLI. Handles single URLs, lists, and paginated sites. Requires Bright Data CLI setup.
Extracts structured data from websites using Python browser automation with openbrowser-ai. Handles JS-rendered content, pagination, multi-page scraping, and data processing with pandas.