Skip to main content
Agent Skills let you add Parallel’s capabilities to AI coding agents like Cursor, Cline, GitHub Copilot, Windsurf, and 30+ other tools via the Agent Skills CLI. Skills are lightweight, declarative integrations that give your agent access to live web data without writing any code.
View the complete repository for this integration here

Available Skills

SkillDescription
parallel-web-searchFast web search for current events, fact-checking, and lookups
parallel-web-extractExtract clean content from URLs, including JavaScript-heavy sites and PDFs
parallel-deep-researchExhaustive, multi-source research reports with configurable depth
parallel-data-enrichmentBulk enrichment of companies, people, or products with web-sourced data

Prerequisites

1

Install the Parallel CLI

curl -fsSL https://parallel.ai/install.sh | bash
2

Get your API key

Get your API key from Parallel and set it as an environment variable:
export PARALLEL_API_KEY="your-api-key"
3

Authenticate the CLI

parallel-cli login

Installation

Install all skills globally so they’re available in every project:
npx skills add parallel-web/parallel-agent-skills --all --global
Or install a specific skill:
npx skills add parallel-web/parallel-agent-skills --skill parallel-web-search
To see all available skills before installing:
npx skills add parallel-web/parallel-agent-skills --list

Usage

Once installed, skills are automatically available to your agent. No additional configuration is needed — your agent will use them when appropriate based on your prompts.
  • Web search is used by default for any research, lookup, or question needing current information
  • Extract is used when your agent needs to fetch content from a specific URL
  • Deep research is triggered when you explicitly request exhaustive or comprehensive research
  • Data enrichment is used for bulk enrichment of lists of companies, people, or products

Supported Agents

Agent Skills work with any tool that supports the Vercel Skills CLI, including: For Claude Code, you can also use the Claude Code Plugin Marketplace integration.

Learn More

For detailed skill documentation, configuration options, and local development instructions, see the parallel-agent-skills repository on GitHub.