Agent-native web search, deep research, and enrichment.
55
63%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Critical
Do not install without reviewing
Fix and improve this skill with Tessl
tessl review fix ./optional-skills/research/parallel-cli/SKILL.mdUse parallel-cli when the user explicitly wants Parallel, or when a terminal-native workflow would benefit from Parallel's vendor-specific stack for web search, extraction, deep research, enrichment, entity discovery, or monitoring.
This is an optional third-party workflow, not a Hermes core capability.
Important expectations:
web_search / web_extract, so do not prefer it by default for ordinary lookups.parallel-cli is designed for agents:
--json--no-wait, status, and poll--previous-interaction-idPrefer this skill when:
parallel-cliPrefer Hermes native web_search / web_extract for quick one-off lookups when Parallel is not specifically requested.
Try the least invasive install path available for the environment.
brew install parallel-web/tap/parallel-clinpm install -g parallel-web-clipip install "parallel-web-tools[cli]"curl -fsSL https://parallel.ai/install.sh | bashIf you want an isolated Python install, pipx can also work:
pipx install "parallel-web-tools[cli]"
pipx ensurepathInteractive login:
parallel-cli loginHeadless / SSH / CI:
parallel-cli login --deviceAPI key environment variable:
export PARALLEL_API_KEY="***"Verify current auth status:
parallel-cli authIf auth requires browser interaction, run with pty=true.
--json when you need machine-readable output.--no-wait and then status / poll.parallel-cli
├── auth
├── login
├── logout
├── search
├── extract / fetch
├── research run|status|poll|processors
├── enrich run|status|poll|plan|suggest|deploy
├── findall run|ingest|status|poll|result|enrich|extend|schema|cancel
└── monitor create|list|get|update|delete|events|event-group|simulateCommonly useful flags:
--json for structured output--no-wait for async jobs--previous-interaction-id <id> for follow-up tasks that reuse earlier context--max-results <n> for search result count--mode one-shot|agentic for search behavior--include-domains domain1.com,domain2.com--exclude-domains domain1.com,domain2.com--after-date YYYY-MM-DDRead from stdin when convenient:
echo "What is the latest funding for Anthropic?" | parallel-cli search - --json
echo "Research question" | parallel-cli research run - --jsonUse for current web lookups with structured results.
parallel-cli search "What is Anthropic's latest AI model?" --json
parallel-cli search "SEC filings for Apple" --include-domains sec.gov --json
parallel-cli search "bitcoin price" --after-date 2026-01-01 --max-results 10 --json
parallel-cli search "latest browser benchmarks" --mode one-shot --json
parallel-cli search "AI coding agent enterprise reviews" --mode agentic --jsonUseful constraints:
--include-domains to narrow trusted sources--exclude-domains to strip noisy domains--after-date for recency filtering--max-results when you need broader coverageIf you expect follow-up questions, save output:
parallel-cli search "latest React 19 changes" --json -o /tmp/react-19-search.jsonWhen summarizing results:
Use to pull clean content or markdown from a URL.
parallel-cli extract https://example.com --json
parallel-cli extract https://company.com --objective "Find pricing info" --json
parallel-cli extract https://example.com --full-content --json
parallel-cli fetch https://example.com --jsonUse --objective when the page is broad and you only need one slice of information.
Use for deeper multi-step research tasks that may take time.
Common processor tiers:
lite / base for faster, cheaper passescore / pro for more thorough synthesisultra for the heaviest research jobsparallel-cli research run \
"Compare the leading AI coding agents by pricing, model support, and enterprise controls" \
--processor core \
--jsonparallel-cli research run \
"Compare the leading AI coding agents by pricing, model support, and enterprise controls" \
--processor ultra \
--no-wait \
--json
parallel-cli research status trun_xxx --json
parallel-cli research poll trun_xxx --json
parallel-cli research processors --jsonparallel-cli research run "What are the top AI coding agents?" --json
parallel-cli research run \
"What enterprise controls does the top-ranked one offer?" \
--previous-interaction-id trun_xxx \
--jsonRecommended Hermes workflow:
--no-wait --jsonstatus or pollUse when the user has CSV/JSON/tabular inputs and wants additional columns inferred from web research.
parallel-cli enrich suggest "Find the CEO and annual revenue" --jsonparallel-cli enrich plan -o config.yamlparallel-cli enrich run \
--data '[{"company": "Anthropic"}, {"company": "Mistral"}]' \
--intent "Find headquarters and employee count" \
--jsonparallel-cli enrich run \
--source-type csv \
--source companies.csv \
--target enriched.csv \
--source-columns '[{"name": "company", "description": "Company name"}]' \
--intent "Find the CEO and annual revenue"parallel-cli enrich run config.yamlparallel-cli enrich status <task_group_id> --json
parallel-cli enrich poll <task_group_id> --jsonUse explicit JSON arrays for column definitions when operating non-interactively. Validate the output file before reporting success.
Use for web-scale entity discovery when the user wants a discovered dataset rather than a short answer.
parallel-cli findall run "Find AI coding agent startups with enterprise offerings" --json
parallel-cli findall run "AI startups in healthcare" -n 25 --json
parallel-cli findall status <run_id> --json
parallel-cli findall poll <run_id> --json
parallel-cli findall result <run_id> --json
parallel-cli findall schema <run_id> --jsonThis is a better fit than ordinary search when the user wants a discovered set of entities that can be reviewed, filtered, or enriched later.
Use for ongoing change detection over time.
parallel-cli monitor list --json
parallel-cli monitor get <monitor_id> --json
parallel-cli monitor events <monitor_id> --json
parallel-cli monitor delete <monitor_id> --jsonCreation is usually the sensitive part because cadence and delivery matter:
parallel-cli monitor create --helpUse this when the user wants recurring tracking of a page or source rather than a one-time fetch.
parallel-cli search ... --jsonparallel-cli extract URL --json--objective or --full-contentparallel-cli research run ... --no-wait --jsonenrich suggest or provide explicit enriched columnsenrich runThe CLI documents these exit codes:
0 success2 bad input3 auth error4 API error5 timeoutIf you hit auth errors:
parallel-cli authPARALLEL_API_KEY or run parallel-cli login / parallel-cli login --deviceparallel-cli is on PATHCheck current auth / install state:
parallel-cli auth
parallel-cli --helpUpdate commands:
parallel-cli update
pip install --upgrade parallel-web-tools
parallel-cli config auto-update-check off--json unless the user explicitly wants human-formatted output.login may require PTY/browser interaction./tmp/*.json instead of stuffing everything into context.d92bfa0
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.