parallel-web-extract
Original:🇺🇸 English
Translated
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.
5installs
Added on
NPX Install
npx skill4agent add parallel-web/agent-skills parallel-web-extractTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →URL Extraction
Extract content from: $ARGUMENTS
Command
bash
parallel-cli extract "$ARGUMENTS" --jsonOptions if needed:
- to focus on specific content
--objective "focus area"
Claude Code
If you are running in Claude Code, run this command in a forked context using the Task tool:
Task tool:
subagent_type: "parallel:parallel-subagent"
prompt: |
Run: parallel-cli extract "$ARGUMENTS" --json
Parse the JSON from stdout. Return content as:
**[Page Title](URL)**
<extracted content verbatim - skip navigation, menus, boilerplate>
Keep content verbatim. Strip only obvious noise.Response format
Return content as:
Page Title
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
Setup
If is not found, install and authenticate:
parallel-clibash
curl -fsSL https://parallel.ai/install.sh | bash
parallel-cli loginOr set an API key:
export PARALLEL_API_KEY="your-key"