URL content extraction via Parallel API. Extracts clean markdown from webpages, articles, PDFs, and JS-heavy sites. Use for reading specific URLs with LLM-ready output.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install parallel-extract或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install parallel-extract⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/parallel-extract/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: parallel-extract description: "URL content extraction via Parallel API. Extracts clean markdown from webpages, articles, PDFs, and JS-heavy sites. Use for reading specific URLs with LLM-ready output." homepage: https://parallel.ai ---
Extract clean, LLM-ready content from URLs. Handles webpages, articles, PDFs, and JavaScript-heavy sites that need rendering.
Trigger this skill when the user asks for:
Use Search to discover; use Extract to read.
parallel-cli extract "https://example.com/article" --json
parallel-cli extract "<url>" [options]
| Flag | Description | |------|-------------| | --url " | URL to extract (repeatable, max 10) | | --objective " | Focus extraction on specific content | | --json | Output as JSON | | --excerpts / --no-excerpts | Include relevant excerpts (default: on) | | --full-content / --no-full-content | Include full page content | | --excerpts-max-chars N | Max chars per excerpt | | --excerpts-max-total-chars N | Max total excerpt chars | | --full-max-chars N | Max full content chars | | -o | Save output to file |
Basic extraction:
parallel-cli extract "https://example.com/article" --json
Focused extraction:
parallel-cli extract "https://example.com/pricing" \
--objective "pricing tiers and features" \
--json
Full content for PDFs:
parallel-cli extract "https://example.com/whitepaper.pdf" \
--full-content \
--json
Multiple URLs:
parallel-cli extract \
--url "https://example.com/page1" \
--url "https://example.com/page2" \
--json
When extracting, provide context:
Good: --objective "Find the installation steps and system requirements"
Poor: --objective "Read the page"
Returns structured JSON with:
url — source URLtitle — page titleexcerpts[] — relevant text excerpts (if enabled)full_content — complete page content (if enabled)publish_date — when availableWhen turning extracted content into a user-facing answer:
For long conversations, save results and use sessions_spawn:
parallel-cli extract "<url>" --json -o /tmp/extract-<topic>.json
Then spawn a sub-agent:
{
"tool": "sessions_spawn",
"task": "Read /tmp/extract-<topic>.json and summarize the key content.",
"label": "extract-summary"
}
| Exit Code | Meaning | |-----------|---------| | 0 | Success | | 1 | Unexpected error (network, parse) | | 2 | Invalid arguments | | 3 | API error (non-2xx) |
curl -fsSL https://parallel.ai/install.sh | bash
export PARALLEL_API_KEY=your-key
安装 Parallel Extract 后,可以对 AI 说这些话来触发它
Help me get started with Parallel Extract
Explains what Parallel Extract does, walks through the setup, and runs a quick demo based on your current project
Use Parallel Extract to uRL content extraction via Parallel API
Invokes Parallel Extract with the right parameters and returns the result directly in the conversation
What can I do with Parallel Extract in my design & creative workflow?
Lists the top use cases for Parallel Extract, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/parallel-extract/ 目录(个人级,所有项目可用),或 .claude/skills/parallel-extract/(项目级)。重启 AI 客户端后,用 /parallel-extract 主动调用,或让 AI 根据上下文自动发现并使用。
Parallel Extract 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Parallel Extract 可免费安装使用。请查阅仓库了解许可证信息。
URL content extraction via Parallel API. Extracts clean markdown from webpages, articles, PDFs, and JS-heavy sites. Use for reading specific URLs with LLM-ready output.
Parallel Extract 属于「Design & Creative」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my design & creative tasks using Parallel Extract
Identifies repetitive steps in your workflow and sets up Parallel Extract to handle them automatically