anakin-claude-plugin
Anakin turns any website into clean, LLM-ready data directly from Claude Code. Scrape single pages or batch up to 10 URLs at once, returning
Open source Repository Open in the app JSON README (API)
About
Anakin turns any website into clean, LLM-ready data directly from Claude Code. Scrape single pages or batch up to 10 URLs at once, returning markdown, JSON, or raw output. Run AI-powered web searches to find pages and sources instantly. Launch deep agentic research that autonomously explores the web and synthesizes comprehensive reports with cited sources. All output is saved to files to keep your context window clean. Supports headless browser rendering for JavaScript-heavy sites, geo...
Details
- Kind
- Plugins
- Topic
- Web search, scraping & browser
- Publisher
- anakin-inc
- Origin
- marketplace
- Category
- ferramentas
- Last push
- 2026-07-21T08:02:44Z
- Repository state
- ativo
- Language
- Shell
- License
- MIT
- Added
- 2026-08-30 01:48:58
- Updated
- 2026-08-30 01:48:58
- Origin id
anakin-inc/anakin-claude-plugin/anakin-claude-plugin
README
# Anakin Claude Code Plugin > **Looking for the MCP version?** [`Anakin-Inc/agent-skills`](https://github.com/Anakin-Inc/agent-skills) > packages Anakin as an MCP plugin — 21 tools, no Python install, and it adds > website monitoring, AI visibility, saved browser sessions, and AI browser > automation. It is the recommended plugin for new installs. > > This CLI-based plugin remains supported and continues to work. Convert websites into clean data at scale: scrape, batch-scrape, search, and deep research. ## Requirements This plugin requires [anakin-cli](https://pypi.org/project/anakin-cli/) (Python 3.10+): ```bash pip install anakin-cli anakin login --api-key "ak-your-key-here" ``` Get your API key from [anakin.io/dashboard](https://anakin.io/dashboard). ## Installation ### From marketplace First, add the Anakin marketplace to Claude Code: ``` /plugin marketplace add Anakin-Inc/anakin-claude-plugin ``` Then install the plugin: ``` /plugin install anakin@anakin ``` ### From local directory (development) ```bash claude --plugin-dir ./anakin-claude-plugin ``` ### Validate locally ```bash claude plugin validate . ``` Once installed, Claude will automatically use Anakin for web scraping, search, and research tasks. > **Development note:** After modifying plugin files, restart Claude Code to pick up changes. ## Components ### Skills | Skill | Invocation | Description | |:------|:-----------|:------------| | `scrape-website` | `/anakin:scrape-website [url]` | Scrape a single URL to markdown, JSON, or raw | | `scrape-batch` | `/anakin:scrape-batch [url1] [url2]` | Scrape up to 10 URLs at once | | `search-web` | `/anakin:search-web [query]` | AI-powered web search with instant results | | `deep-research` | `/anakin:deep-research [topic]` | Deep agentic multi-step research (1-5 min) | | `setup` | `/anakin:setup` | Install CLI, configure API key, set up output directory | | `anakin-cli` | *(auto)* | Background knowledge: escalation workflow, CLI rules, output organization | ### Agents | Agent | Description | |:------|:------------| | `data-extraction-architect` | Plan which anakin-cli commands to use for complex extraction tasks | ### Hooks | Hook | Event | Description | |:-----|:------|:------------| | `check-auth` | `PreToolUse` (Bash) | Verify anakin-cli is installed and authenticated before running anakin commands | ### Scripts | Script | Used By | Description | |:-------|:--------|:------------| | `check-auth.sh` | `hooks.json` | Shell script that checks CLI installation and auth status | ## Usage Examples Once the plugin is active, Claude will use Anakin automatically. You can also invoke skills directly: ``` /anakin:search-web latest React documentation /anakin:scrape-website https://example.com /anakin:deep-research pros and cons of microservices vs monolith /anakin:scrape-batch https://a.com https://b.com https://c.com ``` All output is saved to the `.anakin/` directory to keep your context window clean: ``` .anakin/ ├── search-react-docs.json ├── example.com.md ├── batch-results.json └── research-microservices.json ``` ## Architecture ``` anakin-claude-plugin/ ├── .claude-plugin/ │ ├── plugin.json # Plugin manifest │ └── marketplace.json # Marketplace catalog entry ├── skills/ │ ├── anakin-cli/ │ │ └── SKILL.md # Background knowledge (auto-loaded, not user-invocable) │ ├── scrape-website/ │ │ └── SKILL.md # Single URL scraping │ ├── scrape-batch/ │ │ └── SKILL.md # Batch URL scraping │ ├── search-web/ │ │ └── SKILL.md # Web search │ ├── deep-research/ │ │ └── SKILL.md # Deep agentic research │ └── setup/ │ └── SKILL.md # CLI setup and authentication ├── agents/ │ └── data-extraction-architect.md # Extraction strategy planner ├── hooks/ │ └── hooks.json # PreToolUse auth verification ├── scripts/ │ └── check-auth.sh # Auth check script for hooks ├── LICENSE ├── CHANGELOG.md ├── README.md └── .gitignore ``` The CLI source code lives in a separate repo: [Anakin-Inc/anakin-cli](https://github.com/Anakin-Inc/anakin-cli) ## Configuration | Variable | Description | |:---------|:------------| | `ANAKIN_API_KEY` | API key (env var, takes precedence over config file) | | `~/.anakin/config.json` | Stored API key (set via `anakin login`) | ## License MIT