一键导入
anakinscraper
Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | anakinscraper |
| description | Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction. |
| version | 1.0.0 |
| license | AGPL-3.0 |
| user-invocable | true |
| metadata | {"openclaw":{"requires":{"bins":["node"]},"emoji":"🕷️","homepage":"https://github.com/Anakin-Inc/anakinscraper-oss"}} |
Scrape any website and get back clean markdown or structured JSON data. Uses an anti-detect browser (Camoufox) to handle JavaScript-heavy sites and anti-bot protection.
git clone https://github.com/Anakin-Inc/anakinscraper-oss.git
cd anakinscraper-oss && make up
cp -r openclaw-skill ~/.openclaw/workspace/skills/anakinscraper
The skill calls the AnakinScraper REST API at http://localhost:8080 directly. No additional build step required.
Scrape a single URL synchronously. Returns markdown, cleaned HTML, and optionally structured JSON.
Use this when the user asks to:
Parameters:
url (required) — The URL to scrapeuseBrowser (optional, default false) — Force browser rendering for JavaScript-heavy sitesgenerateJson (optional, default false) — Extract structured JSON data using AIScrape a URL and extract structured data as JSON. Best for product pages, articles, listings.
Use this when the user asks to:
Parameters:
url (required) — The URL to extract data fromScrape multiple URLs at once (up to 10). Returns results for all URLs.
Use this when the user asks to:
Parameters:
urls (required) — Array of URLs to scrape (max 10)useBrowser (optional) — Force browser renderinggenerateJson (optional) — Extract structured JSON from each pageSubmit a scrape job asynchronously. Returns a job ID for later polling. Use for pages that take longer than 30 seconds.
Parameters:
url (required) — The URL to scrapeuseBrowser (optional) — Force browser renderinggenerateJson (optional) — Extract structured JSONCheck the status of an async scrape job. Poll until status is "completed" or "failed".
Parameters:
jobId (required) — The job ID returned by anakinscraper_scrape_asyncanakinscraper_scrape for most requests — it's synchronous and returns results immediately.anakinscraper_extract_json when the user wants structured data (products, articles, listings).anakinscraper_batch_scrape when scraping multiple URLs.anakinscraper_scrape_async + anakinscraper_get_job only for pages you know will be slow (complex SPAs, heavy anti-bot sites).useBrowser: true for JavaScript-heavy sites, SPAs, or sites with anti-bot protection.