Parallel Cli
Parallel Cli
Section titled “Parallel Cli”Optional vendor skill for Parallel CLI — agent-native web search, extraction, deep research, enrichment, FindAll, and monitoring. Prefer JSON output and non-interactive flows.
Skill metadata
Section titled “Skill metadata”| Source | Optional — install with hermes skills install official/research/parallel-cli |
| Path | optional-skills/research/parallel-cli |
| Version | 1.1.0 |
| Author | Hermes Agent |
| License | MIT |
| Tags | Research, Web, Search, Deep-Research, Enrichment, CLI |
| Related skills | duckduckgo-search, mcporter |
Reference: full SKILL.md
Section titled “Reference: full SKILL.md”The following is the complete skill definition that Hermes loads when this skill is triggered. This is what the agent sees as instructions when the skill is active.
Parallel CLI
Section titled “Parallel CLI”Use 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:
- Parallel is a paid service with a free tier, not a fully free local tool.
- It overlaps with Hermes native
web_search/web_extract, so do not prefer it by default for ordinary lookups. - Prefer this skill when the user mentions Parallel specifically or needs capabilities like Parallel’s enrichment, FindAll, or monitor workflows.
parallel-cli is designed for agents:
- JSON output via
--json - Non-interactive command execution
- Async long-running jobs with
--no-wait,status, andpoll - Context chaining with
--previous-interaction-id - Search, extract, research, enrichment, entity discovery, and monitoring in one CLI
When to use it
Section titled “When to use it”Prefer this skill when:
- The user explicitly mentions Parallel or
parallel-cli - The task needs richer workflows than a simple one-shot search/extract pass
- You need async deep research jobs that can be launched and polled later
- You need structured enrichment, FindAll entity discovery, or monitoring
Prefer Hermes native web_search / web_extract for quick one-off lookups when Parallel is not specifically requested.
Installation
Section titled “Installation”Try the least invasive install path available for the environment.
Homebrew
Section titled “Homebrew”brew install parallel-web/tap/parallel-clinpm install -g parallel-web-cliPython package
Section titled “Python package”pip install "parallel-web-tools[cli]"Standalone installer
Section titled “Standalone installer”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 ensurepathAuthentication
Section titled “Authentication”Interactive 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.
Core rule set
Section titled “Core rule set”- Always prefer
--jsonwhen you need machine-readable output. - Prefer explicit arguments and non-interactive flows.
- For long-running jobs, use
--no-waitand thenstatus/poll. - Cite only URLs returned by the CLI output.
- Save large JSON outputs to a temp file when follow-up questions are likely.
- Use background processes only for genuinely long-running workflows; otherwise run in foreground.
- Prefer Hermes native tools unless the user wants Parallel specifically or needs Parallel-only workflows.
Quick reference
Section titled “Quick reference”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|simulateCommon flags and patterns
Section titled “Common flags and patterns”Commonly useful flags:
--jsonfor structured output--no-waitfor async jobs--previous-interaction-id <id>for follow-up tasks that reuse earlier context--max-results <n>for search result count--mode one-shot|agenticfor search behavior--include-domains domain1.com,domain2.com--exclude-domains domain1.com,domain2.com--after-date YYYY-MM-DD
Read from stdin when convenient:
echo "What is the latest funding for Anthropic?" | parallel-cli search - --jsonecho "Research question" | parallel-cli research run - --jsonSearch
Section titled “Search”Use for current web lookups with structured results.
parallel-cli search "What is Anthropic's latest AI model?" --jsonparallel-cli search "SEC filings for Apple" --include-domains sec.gov --jsonparallel-cli search "bitcoin price" --after-date 2026-01-01 --max-results 10 --jsonparallel-cli search "latest browser benchmarks" --mode one-shot --jsonparallel-cli search "AI coding agent enterprise reviews" --mode agentic --jsonUseful constraints:
--include-domainsto narrow trusted sources--exclude-domainsto strip noisy domains--after-datefor recency filtering--max-resultswhen you need broader coverage
If you expect follow-up questions, save output:
parallel-cli search "latest React 19 changes" --json -o /tmp/react-19-search.jsonWhen summarizing results:
- lead with the answer
- include dates, names, and concrete facts
- cite only returned sources
- avoid inventing URLs or source titles
Extraction
Section titled “Extraction”Use to pull clean content or markdown from a URL.
parallel-cli extract https://example.com --jsonparallel-cli extract https://company.com --objective "Find pricing info" --jsonparallel-cli extract https://example.com --full-content --jsonparallel-cli fetch https://example.com --jsonUse --objective when the page is broad and you only need one slice of information.
Deep research
Section titled “Deep research”Use for deeper multi-step research tasks that may take time.
Common processor tiers:
lite/basefor faster, cheaper passescore/profor more thorough synthesisultrafor the heaviest research jobs
Synchronous
Section titled “Synchronous”parallel-cli research run \ "Compare the leading AI coding agents by pricing, model support, and enterprise controls" \ --processor core \ --jsonAsync launch + poll
Section titled “Async launch + poll”parallel-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 --jsonparallel-cli research poll trun_xxx --jsonparallel-cli research processors --jsonContext chaining / follow-up
Section titled “Context chaining / follow-up”parallel-cli research run "What are the top AI coding agents?" --jsonparallel-cli research run \ "What enterprise controls does the top-ranked one offer?" \ --previous-interaction-id trun_xxx \ --jsonRecommended Hermes workflow:
- launch with
--no-wait --json - capture the returned run/task ID
- if the user wants to continue other work, keep moving
- later call
statusorpoll - summarize the final report with citations from the returned sources
Enrichment
Section titled “Enrichment”Use when the user has CSV/JSON/tabular inputs and wants additional columns inferred from web research.
Suggest columns
Section titled “Suggest columns”parallel-cli enrich suggest "Find the CEO and annual revenue" --jsonPlan a config
Section titled “Plan a config”parallel-cli enrich plan -o config.yamlInline data
Section titled “Inline data”parallel-cli enrich run \ --data '[{"company": "Anthropic"}, {"company": "Mistral"}]' \ --intent "Find headquarters and employee count" \ --jsonNon-interactive file run
Section titled “Non-interactive file run”parallel-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"YAML config run
Section titled “YAML config run”parallel-cli enrich run config.yamlStatus / polling
Section titled “Status / polling”parallel-cli enrich status <task_group_id> --jsonparallel-cli enrich poll <task_group_id> --jsonUse explicit JSON arrays for column definitions when operating non-interactively. Validate the output file before reporting success.
FindAll
Section titled “FindAll”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" --jsonparallel-cli findall run "AI startups in healthcare" -n 25 --jsonparallel-cli findall status <run_id> --jsonparallel-cli findall poll <run_id> --jsonparallel-cli findall result <run_id> --jsonparallel-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.
Monitor
Section titled “Monitor”Use for ongoing change detection over time.
parallel-cli monitor list --jsonparallel-cli monitor get <monitor_id> --jsonparallel-cli monitor events <monitor_id> --jsonparallel-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.
Recommended Hermes usage patterns
Section titled “Recommended Hermes usage patterns”Fast answer with citations
Section titled “Fast answer with citations”- Run
parallel-cli search ... --json - Parse titles, URLs, dates, excerpts
- Summarize with inline citations from the returned URLs only
URL investigation
Section titled “URL investigation”- Run
parallel-cli extract URL --json - If needed, rerun with
--objectiveor--full-content - Quote or summarize the extracted markdown
Long research workflow
Section titled “Long research workflow”- Run
parallel-cli research run ... --no-wait --json - Store the returned ID
- Continue other work or periodically poll
- Summarize the final report with citations
Structured enrichment workflow
Section titled “Structured enrichment workflow”- Inspect the input file and columns
- Use
enrich suggestor provide explicit enriched columns - Run
enrich run - Poll for completion if needed
- Validate the output file before reporting success
Error handling and exit codes
Section titled “Error handling and exit codes”The CLI documents these exit codes:
0success2bad input3auth error4API error5timeout
If you hit auth errors:
- check
parallel-cli auth - confirm
PARALLEL_API_KEYor runparallel-cli login/parallel-cli login --device - verify
parallel-cliis onPATH
Maintenance
Section titled “Maintenance”Check current auth / install state:
parallel-cli authparallel-cli --helpUpdate commands:
parallel-cli updatepip install --upgrade parallel-web-toolsparallel-cli config auto-update-check offPitfalls
Section titled “Pitfalls”- Do not omit
--jsonunless the user explicitly wants human-formatted output. - Do not cite sources not present in the CLI output.
loginmay require PTY/browser interaction.- Prefer foreground execution for short tasks; do not overuse background processes.
- For large result sets, save JSON to
/tmp/*.jsoninstead of stuffing everything into context. - Do not silently choose Parallel when Hermes native tools are already sufficient.
- Remember this is a vendor workflow that usually requires account auth and paid usage beyond the free tier.