just-scrape can be installed as a skill for AI coding agents via Vercelβs skills.sh. This lets agents like Claude Code, Cursor, and others call ScrapeGraphAI commands directly during a coding session.
Install the skill
What this enables
Once installed, your coding agent can:- Scrape a website to gather data needed for a task
- Convert documentation pages to markdown for context
- Search the web and extract structured results
- Check your credit balance mid-session
- Browse request history
How agents use it
Agents calljust-scrape in --json mode for clean, token-efficient output:
Using with Claude Code
Claude Code is Anthropicβs agentic coding tool that runs directly in your terminal. Since Claude Code can execute shell commands, it works seamlessly withjust-scrape.
Setup
Set your API key
Add the key to your shell profile (
~/.zshrc, ~/.bashrc, etc.) so Claude Code inherits it automatically:Add just-scrape to CLAUDE.md
To make Claude Code aware ofjust-scrape in every session, add instructions to the CLAUDE.md file in your project root (or ~/.claude/CLAUDE.md for global access):
CLAUDE.md
Example prompts for Claude Code
Once configured, you can ask Claude Code things like:just-scrape command, parse the JSON output, and use the data to complete your task.
Claude Code + just-scrape in CI
You can also use Claude Code withjust-scrape in non-interactive mode for automated workflows:
Tips
- Set
SGAI_API_KEYin your shell profile so the skill picks it up automatically. - Always use
--jsonβ agents donβt need spinners or banners. - Pass
--schemawith a JSON schema to get typed, predictable output: