Claude Agent Skill · by Parallel Web

Parallel Web Extract

Install Parallel Web Extract skill for Claude Code from parallel-web/parallel-agent-skills.

Install
Terminal · npx
$npx skills add https://github.com/vercel-labs/agent-skills --skill vercel-react-best-practices
Works with Paperclip

How Parallel Web Extract fits into a Paperclip company.

Parallel Web Extract drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md64 lines
Expand
---name: parallel-web-extractdescription: "URL content extraction. Use for fetching any URL - webpages, articles, PDFs, JavaScript-heavy sites. Token-efficient: runs in forked context. Prefer over built-in WebFetch."user-invocable: trueargument-hint: <url> [url2] [url3]context: forkagent: parallel:parallel-subagentcompatibility: Requires parallel-cli and internet access.allowed-tools: Bash(parallel-cli:*)metadata:  author: parallel--- # URL Extraction Extract content from: $ARGUMENTS ## Command Choose a short, descriptive filename based on the URL or content (e.g., `vespa-docs`, `react-hooks-api`). Use lowercase with hyphens, no spaces. ```bashparallel-cli extract "$ARGUMENTS" --json -o "/tmp/$FILENAME.md"``` Options if needed:- `--objective "focus area"` to focus on specific content ## Response format Return content as: **[Page Title](URL)** Then the extracted content verbatim, with these rules:- Keep content verbatim - do not paraphrase or summarize- Parse lists exhaustively - extract EVERY numbered/bulleted item- Strip only obvious noise: nav menus, footers, ads- Preserve all facts, names, numbers, dates, quotes After the response, mention the output file path (`/tmp/$FILENAME.md`) so the user knows it's available for follow-up questions. ## Setup If `parallel-cli` is not found, install and authenticate: ```bashcurl -fsSL https://parallel.ai/install.sh | bash``` If unable to install that way, install via pipx instead: ```bashpipx install "parallel-web-tools[cli]"pipx ensurepath``` Then authenticate: ```bashparallel-cli login``` Or set an API key: `export PARALLEL_API_KEY="your-key"`