skills/parallel-web/references/web-extract.md
Use for a known public webpage, article, documentation page, or PDF.
Basic extraction:
parallel-cli extract "https://example.com/article" --json
Focus excerpts on a specific goal:
parallel-cli extract "https://company.com/pricing" \
--objective "Find pricing tiers and plan costs" \
--json
Request complete page content when excerpts are insufficient:
parallel-cli extract "https://example.com/article" \
--full-content \
--json
Useful options:
--objective "focus area" — describe the information to prioritize-q "keyword" — prioritize specific terms--full-content — include complete page content--no-excerpts — omit focused excerpts-o path.json — save JSON only when an artifact is usefulUse only an http:// or https:// URL the user supplied or that came from a trusted search result. Do not construct a URL from shell fragments.
For papers and scholarly pages, focus on the sections needed for the user's task:
parallel-cli extract "https://arxiv.org/abs/2501.00001" \
--objective "Extract bibliographic metadata, abstract, methodology, key findings, limitations, and conclusions" \
--json
Prefer an arXiv /abs/ page for structured metadata, but extract a user-supplied PDF directly when full text is needed.
-o was used.