AI Agent Skills
Use Parsew with AI coding agents like Claude Code, Cursor, and Windsurf.
Overview
Parsew provides official skills — reusable capabilities that teach AI agents how to use the Parsew API. Once installed, your agent can scrape websites, extract data, and analyze brands on your behalf.
Skills work with popular AI coding agents including Claude Code, Cursor, Windsurf, and others.
Installation
npx skills add parsew/skillsSetup
Make sure your PARSEW_API_KEY environment variable is set:
export PARSEW_API_KEY=sr_your_secret_keyYou can get an API key from your dashboard.
Available Skills
| Skill | What it does | Credits |
|---|---|---|
| parsew-scrape | Scrape a single URL and convert to markdown | 1 |
| parsew-extract | Extract structured data using a JSON schema | 5 |
| parsew-batch-scrape | Scrape 1–100 URLs asynchronously | 1/URL |
| parsew-brand | Extract brand identity (colors, logos, fonts, personality) | 2–5 |
| parsew-map | Discover and filter links on a page | 1 |
Example Usage
Once the skills are installed, just ask your agent naturally:
- "Scrape this page and summarize the content"
- "Extract all product names and prices from this URL"
- "Scrape all the blog posts on example.com"
- "What colors and fonts does stripe.com use?"
- "Find all links on this page that match /docs/"
Your agent will automatically use the right Parsew skill based on your request.
Optional: Install the SDK
For Node.js and TypeScript projects, your agent can use the @parsew/sdk package for a better developer experience:
npm install @parsew/sdkThe skills work with both the SDK and raw curl commands — your agent will pick the right approach based on your project.