Bulk data enrichment via Parallel API. Adds web-sourced fields (CEO names, funding, contact info) to lists of companies, people, or products. Use for enriching CSV files or inline data.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install parallel-enrichment或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install parallel-enrichment⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/parallel-enrichment/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: parallel-enrichment description: "Bulk data enrichment via Parallel API. Adds web-sourced fields (CEO names, funding, contact info) to lists of companies, people, or products. Use for enriching CSV files or inline data." homepage: https://parallel.ai ---
Bulk data enrichment that adds web-sourced fields to lists of companies, people, or products. Describe what you want in natural language.
Trigger this skill when the user asks for:
# Inline data
parallel-cli enrich run \
--data '[{"company": "Google"}, {"company": "Microsoft"}]' \
--intent "CEO name and founding year" \
--target output.csv
# CSV file
parallel-cli enrich run \
--source-type csv --source input.csv \
--target output.csv \
--intent "CEO name and founding year"
parallel-cli enrich run [options]
Note: There is no --json flag for enrich. Results are written to the target file.
| Flag | Description | |------|-------------| | --data " | Inline JSON array of records | | --source-type csv | Source file type | | --source | Input CSV file path | | --target | Output CSV file path | | --source-columns " | Describe input columns | | --enriched-columns " | Specify output columns | | --intent " | Natural language description of what to find | | --processor | Processing tier (see table below) |
| Processor | Use Case | |-----------|----------| | lite-fast | Simple lookups | | base-fast | Basic enrichment | | core-fast | Standard enrichment | | pro-fast | Deep enrichment (default) | | ultra-fast | Complex multi-source enrichment |
Inline data enrichment:
parallel-cli enrich run \
--data '[{"company": "Stripe"}, {"company": "Square"}, {"company": "Adyen"}]' \
--intent "CEO name, headquarters city, and latest funding round" \
--target ./companies-enriched.csv
CSV file enrichment:
parallel-cli enrich run \
--source-type csv \
--source ./leads.csv \
--target ./leads-enriched.csv \
--source-columns '[{"name": "company_name", "description": "Company name"}]' \
--intent "Find CEO name, company size, and LinkedIn company page URL"
With explicit output columns:
parallel-cli enrich run \
--data '[{"name": "Sam Altman"}, {"name": "Satya Nadella"}]' \
--source-columns '[{"name": "name", "description": "Person full name"}]' \
--enriched-columns '[
{"name": "current_company", "description": "Current company/employer"},
{"name": "title", "description": "Current job title"},
{"name": "twitter", "description": "Twitter/X handle"}
]' \
--target ./people-enriched.csv
Using AI to suggest columns:
# First, get AI suggestions
parallel-cli enrich suggest \
--source-type csv \
--source ./companies.csv \
--intent "competitor analysis data"
# Then run with suggested columns
parallel-cli enrich run \
--source-type csv \
--source ./companies.csv \
--target ./companies-analysis.csv \
--intent "competitor analysis: market position, key products, recent news"
Write 1-2 sentences describing:
Good:
--intent "Find CEO name, total funding raised, and number of employees for B2B SaaS companies"
Poor:
--intent "Find stuff about these companies"
When using --source-columns, provide context:
[
{"name": "company", "description": "Company name, may include Inc/LLC suffix"},
{"name": "website", "description": "Company website URL, may be partial"}
]
The CLI outputs:
The target CSV contains:
_parallel_status column indicating success/failure per rowAfter enrichment completes:
head -6 output.csvFor complex enrichments, use a YAML config:
# enrich-config.yaml
source:
type: csv
path: ./input.csv
columns:
- name: company_name
description: "Company legal name"
- name: website
description: "Company website URL"
target:
type: csv
path: ./output.csv
enriched_columns:
- name: ceo_name
description: "Current CEO full name"
- name: employee_count
description: "Approximate number of employees"
- name: funding_total
description: "Total funding raised in USD"
processor: pro-fast
Then run:
parallel-cli enrich run enrich-config.yaml
For large enrichments, save results and use sessions_spawn:
parallel-cli enrich run --source-type csv --source input.csv --target /tmp/enriched-<topic>.csv --intent "..."
Then spawn a sub-agent:
{
"tool": "sessions_spawn",
"task": "Read /tmp/enriched-<topic>.csv and summarize the results. Report row count, success rate, and preview first 5 rows.",
"label": "enrich-summary"
}
| Exit Code | Meaning | |-----------|---------| | 0 | Success | | 1 | Unexpected error (network, parse) | | 2 | Invalid arguments | | 3 | API error (non-2xx) |
Common issues:
_parallel_status column in outputcurl -fsSL https://parallel.ai/install.sh | bash
export PARALLEL_API_KEY=your-key
安装 Parallel Enrichment 后,可以对 AI 说这些话来触发它
Help me get started with Parallel Enrichment
Explains what Parallel Enrichment does, walks through the setup, and runs a quick demo based on your current project
Use Parallel Enrichment to bulk data enrichment via Parallel API
Invokes Parallel Enrichment with the right parameters and returns the result directly in the conversation
What can I do with Parallel Enrichment in my data & analytics workflow?
Lists the top use cases for Parallel Enrichment, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/parallel-enrichment/ 目录(个人级,所有项目可用),或 .claude/skills/parallel-enrichment/(项目级)。重启 AI 客户端后,用 /parallel-enrichment 主动调用,或让 AI 根据上下文自动发现并使用。
Parallel Enrichment 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Parallel Enrichment 可免费安装使用。请查阅仓库了解许可证信息。
Bulk data enrichment via Parallel API. Adds web-sourced fields (CEO names, funding, contact info) to lists of companies, people, or products. Use for enriching CSV files or inline data.
Parallel Enrichment 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Parallel Enrichment
Identifies repetitive steps in your workflow and sets up Parallel Enrichment to handle them automatically