parallel-data-enrichment

द्वारा parallel-web

बल्क डेटा एनरिचमेंट। कंपनियों, लोगों या उत्पादों की सूचियों में वेब-स्रोतित फ़ील्ड (CEO नाम, फंडिंग, संपर्क जानकारी) जोड़ता है। CSV फ़ाइलों को समृद्ध करने या… के लिए उपयोग करें।

npx skills add https://github.com/parallel-web/parallel-cursor-plugin --skill parallel-data-enrichment

Data Enrichment

Enrich: $ARGUMENTS

Before starting

Inform the user that enrichment may take several minutes depending on the number of rows and fields requested.

Optional: Suggest output columns

If the user gave a vague intent ("enrich these companies with useful info") and you're not sure what columns to add, ask the API for a suggestion before kicking off the run:

parallel-cli enrich suggest "Find CEO and recent funding info" --json

The response is an envelope: {title, processor, enriched_columns, warnings}. Extract just the enriched_columns array (not the whole envelope) and pass it as the value of --enriched-columns on enrich run, in place of --intent — the two flags are alternative ways to specify what to enrich, not combined. If suggest returned a processor, pass it through explicitly via --processor on the run call (it's a tuned recommendation for the schema). Skip this whole section if the user already specified the fields they want.

enrich suggest requires parallel-cli ≥ 0.3.0. If it errors with anything resembling no such command / No such command / unknown command, do not bail — skip the suggestion step, fall through to step 1 with --intent, complete the run, and mention parallel-cli update (or pipx upgrade parallel-web-tools) in the final response so the user picks up the feature next time.

Step 1: Start the enrichment

Use ONE of these command patterns (substitute user's actual data):

For inline data:

parallel-cli enrich run --data '[{"company": "Google"}, {"company": "Microsoft"}]' --intent "CEO name and founding year" --target "output.csv" --no-wait --json

For CSV file:

parallel-cli enrich run --source-type csv --source "input.csv" --target "output.csv" --source-columns '[{"name": "company", "description": "Company name"}]' --intent "CEO name and founding year" --no-wait --json

If this is a follow-up to a previous research task and you have its interaction_id, add context chaining:

parallel-cli enrich run --data '...' --intent "..." --target "output.csv" --no-wait --json --previous-interaction-id "$INTERACTION_ID"

The enrichment will run with the full context of that prior research — so you can enrich entities discovered earlier without restating what was already found. Note: enrichment does not itself produce a new interaction_id, so you cannot chain a further follow-up off of an enrichment.

IMPORTANT: Always include --no-wait so the command returns immediately instead of blocking.

Parse the --json output to extract taskgroup_id and url. The output is {taskgroup_id, url, num_runs} — there is no interaction_id field, do not look for one. Immediately tell the user:

  • Enrichment has been kicked off
  • The monitoring URL where they can track progress

Tell them they can background the polling step to continue working while it runs.

Step 2: Poll for results

Pick a concrete output path (e.g., /tmp/enrichment-acme.json). Note: the file is JSON regardless of the extension you choose — it's an array of {input, output} objects, not a CSV. Name it .json to avoid confusing yourself or the user.

parallel-cli enrich poll "$TASKGROUP_ID" --timeout 540 --output "/tmp/enrichment-<descriptive-name>.json"

Important:

  • Use --timeout 540 (9 minutes) to stay within tool execution limits
  • The --target from step 1 is unused in --no-wait mode — only --output here determines where results are saved, and the file is always JSON

If the poll times out

Enrichment of large datasets can take longer than 9 minutes. If the poll exits without completing:

  1. Tell the user the enrichment is still running server-side
  2. Re-run the same parallel-cli enrich poll command to continue waiting

Response format

After step 1: Share the monitoring URL (for tracking progress).

After step 2:

  1. Report number of rows enriched
  2. Preview first few rows from the output file (it's a JSON array of {input, output} objects)
  3. Tell the user the full path to the output file

Do NOT re-share the monitoring URL after completion — the results are in the output file.

If the parallel-cli binary is not installed

If the shell reports command not found: parallel-cli (i.e. the binary itself is missing — distinct from a No such command error from a stale CLI, which the in-body guidance above covers), stop immediately. Do NOT search the web yourself, do NOT use any built-in search tools, and do NOT try to answer the query from your own knowledge. Instead, tell the user:

  1. parallel-cli is not installed
  2. Run /parallel-setup to install it
  3. Then retry their request

parallel-web की और Skills

parallel-monitor
parallel-web
लगातार वेब पर बदलावों को नियमित अंतराल पर ट्रैक करें। इसका उपयोग तब करें जब उपयोगकर्ता 'मॉनिटर करें', 'बदलाव ट्रैक करें', 'देखें', या 'जब कुछ हो तो मुझे सचेत करें' जैसा कुछ कहे…
migrate-to-parallel
parallel-web
Exa, Tavily, Perplexity, या Firecrawl वेब-डेटा इंटीग्रेशन को पूरी तरह से उपयुक्त Parallel उत्पादों में माइग्रेट करें, जबकि एप्लिकेशन व्यवहार को संरक्षित रखें। उपयोग करें…
parallel-data-enrichment
parallel-web
कंपनी, व्यक्ति या उत्पाद डेटा का बल्क संवर्धन वेब-स्रोतित फ़ील्ड्स जैसे CEO नाम, फंडिंग और संपर्क जानकारी के साथ। इनलाइन JSON डेटा या CSV फ़ाइलें स्वीकार करता है; संवर्धित परिणाम CSV में आउटपुट करता है। मॉनिटरिंग URL और पोलिंग कमांड के माध्यम से प्रगति ट्रैकिंग के साथ एसिंक्रोनस रूप से चलता है। parallel-cli टूल और इंटरनेट एक्सेस की आवश्यकता होती है; कॉन्फ़िगर करने योग्य टाइमआउट के साथ बड़े डेटासेट संभालता है। प्राकृतिक भाषा इरादे विवरणों (जैसे, "CEO नाम और स्थापना वर्ष") के माध्यम से लचीले फ़ील्ड अनुरोधों का समर्थन करता है।
parallel-deep-research
parallel-web
विषयों की व्यापक जाँच, जिसमें जटिल विषयों के लिए विन्यास योग्य गहराई, विलंबता और लागत व्यापार-संतुलन शामिल है। तीन प्रोसेसर स्तर (pro-fast, ultra-fast, ultra) जो 30 सेकंड से 25 मिनट तक होते हैं, लागत आधार रेखा के 1x से 3x तक होती है। पोलिंग के साथ अतुल्यकालिक निष्पादन: तुरंत शोध शुरू करें, URL के माध्यम से प्रगति की निगरानी करें, बिना रुके परिणाम प्राप्त करें। आउटपुट स्वरूपित मार्कडाउन रिपोर्ट और JSON मेटाडेटा; त्वरित अवलोकन के लिए कार्यकारी सारांश stdout पर मुद्रित होता है। स्पष्ट के लिए डिज़ाइन किया गया...
parallel-findall
parallel-web
प्राकृतिक भाषा विवरण से मेल खाने वाली संस्थाओं (कंपनियां, लोग, उत्पाद, आदि) की खोज करें। तब उपयोग करें जब उपयोगकर्ता 'सभी X खोजें' या 'हर Y सूचीबद्ध करें जो…' पूछे —…
parallel-memory
parallel-web
पिछले Parallel Task, Monitor, और FindAll रन को याद करें जब वे सहायक हो सकते हैं; पूछे जाने पर रन हटाएं या मेमोरी साफ़ करें।
parallel-web-extract
parallel-web
एक साथ कई URL से सामग्री निकालें, टोकन-कुशलता से। वेबपेज, लेख, PDF और JavaScript-भारी साइटों को एक ही कमांड से संभालता है। बिल्ट-इन WebFetch की तुलना में टोकन ओवरहेड कम करने के लिए फोर्क्ड कॉन्टेक्स्ट में चलता है। वैकल्पिक फोकस उद्देश्यों के साथ कई URL की बैच निष्कर्षण का समर्थन करता है। parallel-cli इंस्टॉलेशन और प्रमाणीकरण की आवश्यकता होती है; अनुवर्ती प्रश्नों के लिए निकाली गई सामग्री को मार्कडाउन के रूप में स्थानीय फ़ाइल में आउटपुट करता है।
parallel-web-search
parallel-web
वर्तमान जानकारी, शोध और तथ्य-खोज के लिए इंटरनेट पर तेज़ वेब खोज। एकल उद्देश्य-आधारित क्वेरी या समानांतर में कई कीवर्ड खोजें निष्पादित करता है, अंशों और मेटाडेटा के साथ 10 तक परिणाम लौटाता है। --after-date के माध्यम से समय-संवेदनशील फ़िल्टरिंग और --include-domains के साथ डोमेन-विशिष्ट खोजों का समर्थन करता है। आसान पार्सिंग और अनुवर्ती क्वेरी के लिए शीर्षक, URL, प्रकाशन तिथियों और अंशों के साथ संरचित JSON आउटपुट करता है। मार्कडाउन का उपयोग करके प्रत्येक दावे के लिए इनलाइन उद्धरण की आवश्यकता होती है...