Anakinscraper logo

Anakinscraper

OrganizationPopular
Anakin-Inc
anakinscraper

Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction.

Overview

PublisherAnakin-Inc
Repositoryanakin
Skill nameanakinscraper
Stars
4.4K
Forks
181
Bundled files
Instructions only
LicenseAGPL-3.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by Anakin-Inc on GitHub. Read the source before you install it.

Installation

Install the Anakinscraper AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Anakin-Inc/anakin.git /tmp/anakin
mkdir -p .claude/skills
cp -r /tmp/anakin/openclaw-skill .claude/skills/anakinscraper
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Anakinscraper in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Anakinscraper on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Anakinscraper is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

AnakinScraper Skill

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.

Setup

  1. Start AnakinScraper (if not already running):
bash
git clone https://github.com/Anakin-Inc/anakinscraper-oss.git
cd anakinscraper-oss && make up
  1. Copy the skill into your OpenClaw workspace:
bash
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.

Available Tools

anakinscraper_scrape

Scrape a single URL synchronously. Returns markdown, cleaned HTML, and optionally structured JSON.

Use this when the user asks to:

  • "Scrape this website"
  • "Get the content from this URL"
  • "Turn this page into markdown"
  • "What's on this webpage?"

Parameters:

  • url (required) — The URL to scrape
  • useBrowser (optional, default false) — Force browser rendering for JavaScript-heavy sites
  • generateJson (optional, default false) — Extract structured JSON data using AI

anakinscraper_extract_json

Scrape a URL and extract structured data as JSON. Best for product pages, articles, listings.

Use this when the user asks to:

  • "Extract the product data from this page"
  • "Get structured data from this URL"
  • "Parse this listing page into JSON"
  • "What products are on this page?"

Parameters:

  • url (required) — The URL to extract data from

anakinscraper_batch_scrape

Scrape multiple URLs at once (up to 10). Returns results for all URLs.

Use this when the user asks to:

  • "Scrape these 5 URLs"
  • "Get content from all these pages"
  • "Batch scrape this list"

Parameters:

  • urls (required) — Array of URLs to scrape (max 10)
  • useBrowser (optional) — Force browser rendering
  • generateJson (optional) — Extract structured JSON from each page

anakinscraper_scrape_async

Submit 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 scrape
  • useBrowser (optional) — Force browser rendering
  • generateJson (optional) — Extract structured JSON

anakinscraper_get_job

Check the status of an async scrape job. Poll until status is "completed" or "failed".

Parameters:

  • jobId (required) — The job ID returned by anakinscraper_scrape_async

Usage Guidelines

  1. Default to anakinscraper_scrape for most requests — it's synchronous and returns results immediately.
  2. Use anakinscraper_extract_json when the user wants structured data (products, articles, listings).
  3. Use anakinscraper_batch_scrape when scraping multiple URLs.
  4. Use anakinscraper_scrape_async + anakinscraper_get_job only for pages you know will be slow (complex SPAs, heavy anti-bot sites).
  5. Set useBrowser: true for JavaScript-heavy sites, SPAs, or sites with anti-bot protection.
  6. Present the markdown field for readable content, generatedJson.data for structured data.

Frequently asked questions

What does the Anakinscraper AI skill do?

Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction.

Why use Anakinscraper on TypingMind?

Because you install it once and use it with any model. Anakinscraper is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Anakinscraper in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Anakin-Inc/anakin/tree/master/openclaw-skill. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Anakinscraper?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Anakinscraper?

As many as you like. As long as a model supports skills, you can use Anakinscraper with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Anakinscraper AI skill free?

Yes. It is published on GitHub by Anakin-Inc under the AGPL-3.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇