Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
k-dense-ai avatar

Parallel Web

  • 893 installs
  • 32k repo stars
  • Updated July 29, 2026
  • k-dense-ai/scientific-agent-skills

parallel-web is an agent skill that routes Claude Code workflows through parallel-cli for web search, URL extraction, CSV data enrichment, and deep research with academic source priority for developers who need web-sourc

About

parallel-web is a Claude agent skill from k-dense-ai/scientific-agent-skills (version 1.1, 693 catalog installs) that unifies parallel-cli web capabilities inside coding sessions. The SKILL.md routes requests to web search, URL extraction, CSV or inline JSON data enrichment, and deep research, defaulting to academic sources like arXiv, bioRxiv, and peer-reviewed journals for technical queries. Developers invoke Bash commands such as parallel-cli enrich run with --source-type csv, parallel-cli research status, and parallel-cli research poll, using --no-wait for non-blocking async jobs and --previous-interaction-id to chain follow-up questions. Setup installs parallel-cli via curl or uv and authenticates with PARALLEL_API_KEY from a .env file or parallel-cli login. Reach for parallel-web when you need batch company field enrichment, literature lookups, PDF extraction, or exhaustive multi-source reports without leaving the agent workflow.

  • parallel-cli enrich run with --no-wait for non-blocking taskgroup kickoff
  • Inline JSON rows or CSV sources with explicit source-columns metadata
  • Follow-up enrichment via --previous-interaction-id context chaining
  • User-facing expectation that multi-row jobs may take several minutes
  • JSON output parsing for taskgroup_id, interaction_id, and monitoring URL

Parallel Web by the numbers

  • 893 all-time installs (skills.sh)
  • +40 installs in the week ending Jul 29, 2026 (Skillselion tracking)
  • Ranked #312 of 2,726 Automation & Workflows skills by installs in the Skillselion catalog
  • Security screen: CRITICAL risk (skills.sh audit)
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/k-dense-ai/scientific-agent-skills --skill parallel-web

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs893
repo stars32k
Security audit1 / 3 scanners passed
Last updatedJuly 29, 2026
Repositoryk-dense-ai/scientific-agent-skills

How do you enrich CSV rows with parallel-cli?

Kick off parallel-cli enrichment jobs on CSV or inline rows so you can fill in missing company or market fields without blocking the agent session.

Who is it for?

Developers building scientific or market-data agents who already use parallel-cli and need one skill to search, extract, enrich, and research from inside Claude Code.

Skip if: Skip parallel-web when you only need a single quick webpage fetch and already have a built-in WebFetch tool with no batch enrichment or literature requirements.

When should I use this skill?

Fire parallel-web when the user asks to enrich a CSV or entity list, search academic literature, extract a URL or PDF, or run deep multi-source research via parallel-cli.

What you get

Enriched JSON or CSV output files, async run IDs, web search results, extracted page or PDF text, and deep research reports grounded in academic sources.

  • enriched JSON or CSV output files
  • async research run IDs
  • extracted webpage or PDF content

By the numbers

  • Version 1.1 documented in SKILL.md metadata
  • 693 catalog installs in Skillselion ingestion source
  • Routes across 4 parallel-cli capabilities: web search, extract, enrichment, and deep research

Files

SKILL.mdMarkdownGitHub ↗

Parallel Web Toolkit

A unified skill for all web-powered tasks: searching, extracting, enriching, and researching — with academic and scientific sources as the default priority.

Routing — pick the right capability

Read the user's request and match it to one of the capabilities below. For web search, extract, enrichment, and deep research, read the corresponding reference file for detailed instructions.

User wants to...CapabilityWhere
Look something up, research a topic, find current infoWeb Searchreferences/web-search.md
Fetch content from a specific URL (webpage, article, PDF)Web Extractreferences/web-extract.md
Add web-sourced fields to a list of companies/people/productsData Enrichmentreferences/data-enrichment.md
Get an exhaustive, multi-source report (user says "deep research", "exhaustive", "comprehensive")Deep Researchreferences/deep-research.md
Install or authenticate parallel-cliSetupBelow
Check status of a running research/enrichment taskStatusBelow
Retrieve completed research results by run IDResultBelow

Decision guide

  • Default to Web Search for a single lookup, research question, or "what is X?" query. It's fast and cost-effective. When the query touches a scientific or technical topic, include academic domains (see references/web-search.md) to surface peer-reviewed and preprint sources alongside general results.
  • Use Web Extract when the user provides a URL or asks you to read/fetch a specific page. Prefer this over the built-in WebFetch tool. Particularly useful for extracting full text from academic PDFs, preprint servers, and journal articles.
  • Use Data Enrichment when the user has multiple entities (a CSV, a list of companies/people/products, or even a short inline list) and wants to find or add the same kind of information for each one. The key signal is a repeated lookup across a set of items — e.g., "find the CEO for each of these companies" or "get the founding year for Apple, Stripe, and Anthropic." Even if the user doesn't say "enrich," use parallel-cli enrich whenever the task is the same query applied to multiple entities. Do NOT use Web Search in a loop for this — the enrichment pipeline handles batching, parallelism, and structured output automatically.
  • Use Deep Research only when the user explicitly asks for deep, exhaustive, or comprehensive research. It is 10-100x slower and more expensive than Web Search — never default to it. Deep research is especially valuable for literature reviews and multi-paper synthesis.
  • If parallel-cli is not found when running any command, follow the Setup section below.

Academic source priority

Across all capabilities, prefer academic and scientific sources when the query is technical or scientific in nature. This means:

  • Peer-reviewed journal articles and conference proceedings over blog posts or news articles
  • Preprints (arXiv, bioRxiv, medRxiv) when peer-reviewed versions aren't available
  • Institutional and government sources (NIH, WHO, NASA, NIST) over commercial sites
  • Primary research over secondary summaries

When citing academic sources, include author names and publication year where available (e.g., Smith et al., 2025) in addition to the standard citation format. If a DOI is present, prefer the DOI link.

Context chaining

Several capabilities support multi-turn context via interaction_id. When a research or enrichment task completes, it returns an interaction_id. If the user asks a follow-up question related to that task, pass --previous-interaction-id to carry context forward automatically. This avoids restating what was already found.

---

Setup

If parallel-cli is not installed, install and authenticate:

curl -fsSL https://parallel.ai/install.sh | bash

If unable to install that way, use uv instead:

uv tool install "parallel-web-tools[cli]"

Then authenticate. First, check if a .env file exists in the project root and contains PARALLEL_API_KEY. If so, load it with dotenv:

dotenv -f .env run parallel-cli auth

If dotenv isn't available, install it with pip install python-dotenv[cli] or uv pip install python-dotenv[cli].

If there's no .env file or it doesn't contain the key, fall back to interactive login:

parallel-cli login

Or set the key manually: export PARALLEL_API_KEY="your-key"

Verify with:

parallel-cli auth

If parallel-cli is not found after install, add ~/.local/bin to PATH.

Check task status

parallel-cli research status "$RUN_ID" --json

Report the current status to the user (running, completed, failed, etc.).

Get completed result

parallel-cli research poll "$RUN_ID" --json

Present results in a clear, organized format.

Related skills

How it compares

Choose parallel-web over a single-purpose search skill when the same agent session needs CSV enrichment, URL extraction, and academic literature routing in one parallel-cli integration.

FAQ

What does parallel-web do in Claude Code?

parallel-web is a k-dense-ai agent skill that routes web tasks to parallel-cli for search, URL extraction, CSV enrichment, and deep research. Version 1.1 covers four capabilities in one SKILL.md and defaults to academic sources for technical queries.

How does parallel-web enrich CSV company data?

parallel-web runs parallel-cli enrich run with --source-type csv, a source-columns JSON map, and a natural-language --intent for fields like CEO name or founding year. The --no-wait flag returns a run ID so the agent session stays unblocked.

What setup does parallel-web require?

parallel-web requires parallel-cli installed via curl or uv tool install parallel-web-tools and a PARALLEL_API_KEY from a .env file or parallel-cli login. Verify with parallel-cli auth before running enrich or research commands.

Is Parallel Web safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Automation & Workflowsanalyticspipelines

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.