| name | scrape-batch |
| description | 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. |
| argument-hint | [url1] [url2] [--browser] |
| allowed-tools | Bash(anakin scrape-batch *), Bash(mkdir *), Bash(head *), Bash(wc *), Bash(jq *) |
Batch scrape multiple URLs
Trigger
Scraping multiple web pages at once — comparing products, collecting articles, or gathering data from several sources.
Workflow
- Verify anakin-cli is authenticated by running
anakin status.
- Create the output directory if it doesn't exist:
mkdir -p .anakin
- Run the batch scrape:
anakin scrape-batch "$ARGUMENTS" -o .anakin/batch-results.json
- If the user provides more than 10 URLs, split into batches of 10:
anakin scrape-batch "<url1>" ... "<url10>" -o .anakin/batch-1.json
anakin scrape-batch "<url11>" ... "<url20>" -o .anakin/batch-2.json
- Read the output and present a summary of all scraped pages.
Commands
anakin scrape-batch "<url1>" "<url2>" "<url3>" -o .anakin/batch-results.json
anakin scrape-batch "<url1>" "<url2>" --browser -o .anakin/batch-spa.json
anakin scrape-batch "<url1>" "<url2>" --country de -o .anakin/batch-de.json
anakin scrape-batch "<url1>" "<url2>" "<url3>" --timeout 300 -o .anakin/batch.json
Options
--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 file
Limit
Max 10 URLs per request. For more URLs, split into multiple batch calls.
Guardrails
- Maximum 10 URLs per
scrape-batch command — split larger lists into batches.
- Always quote every URL to prevent shell interpretation.
- If individual URLs fail within a batch, report which ones failed and suggest retrying with
anakin scrape using --browser.
- Always use
-o to save output to a file rather than flooding the terminal.
Output
- Combined results from all URLs in a single JSON file
- Summary listing each URL with its scrape status