Install
openclaw skills install parallel-findallDiscover entities (companies, people, products) matching a natural-language description via the Parallel FindAll API. Use when the user wants to 'find all X' or 'list every Y that…' — different from web search (returns webpages) and deep research (returns a narrative report). Returns a structured list of entities.
openclaw skills install parallel-findallDiscover entities matching a natural-language description. FindAll is for "give me a list of things that match this criteria" tasks — companies, people, products, papers, anything enumerable. Returns structured entities, not webpages or prose.
Trigger this skill when the user asks for:
Use Search for "what is X?"; use FindAll for "list every X that matches Y".
parallel-cli findall run "AI startups that raised Series A in 2026" --json
parallel-cli findall run "<objective>" [options]
parallel-cli findall status frun_xxx --json
parallel-cli findall poll frun_xxx --json
parallel-cli findall result frun_xxx --json
parallel-cli findall extend frun_xxx <n> --json
parallel-cli findall cancel frun_xxx
| Flag | Description |
|---|---|
-g, --generator | Generator tier: preview, base, core (default), pro |
-n, --match-limit | Max matched candidates, 5-1000 (default: 10) |
--exclude '<json>' | Entities to exclude (JSON array of {name, url}) |
--no-wait | Return immediately with frun_xxx; poll separately |
--dry-run | Preview the schema FindAll will use, without creating a run |
--json | Output as JSON |
-o, --output <file> | Save full result to file |
Basic discovery:
parallel-cli findall run "Find roofing companies in Charlotte NC" --json
Larger result set with core generator:
parallel-cli findall run "AI startups that raised Series A in 2026" -n 50 --json
pro tier for deeper coverage:
parallel-cli findall run "YC W24 dev tools companies" -g pro -n 100 --json
Preview the schema before running:
parallel-cli findall run "Find Series B fintechs in Latin America" --dry-run --json
Exclude already-known entities:
parallel-cli findall run "Find AI startups in healthcare" \
--exclude '[{"name": "Hippocratic AI", "url": "hippocraticai.com"}]' \
--json
Async — launch then poll separately:
parallel-cli findall run "AI startups that raised Series A in 2026" --no-wait --json
# returns frun_xxx
parallel-cli findall status frun_xxx --json
parallel-cli findall poll frun_xxx --json # waits and returns result
Extend an existing run with more matches:
parallel-cli findall extend frun_xxx 50 --json
Cancel a running job:
parallel-cli findall cancel frun_xxx
1-3 sentences describing:
preview — fast scan, low coverage. Useful only for quick sanity checks.base — broad and fast, but noisy (query echoes, no-URL entries, category placeholders). Use only when the user explicitly accepts noise.core (default) — best balance of coverage and quality.pro — deeper coverage, slower. Use for high-stakes discovery where missing matches is costly.Pick the smallest -n that satisfies the user's intent. Default 10 is fine for "show me a few"; bump to 50–100 for "list every X". Max 1000.
findall run returns JSON with:
findall_id — frun_xxxstatus — running / completed / cancelled / failedschema — the JSON Schema FindAll built for the matchesmatches[] — array of entities, each with fields per the schema (typically name, url, plus skill-specific extracted fields)When relaying matches to the user:
url, query-echo names, or category placeholders. Especially important on -g base.findall_id so the user can extend or cancel later.For large result sets (-n ≥ 50), save and use sessions_spawn:
parallel-cli findall run "<objective>" -n 100 --json -o /tmp/findall-<topic>.json
Then spawn a sub-agent:
{
"tool": "sessions_spawn",
"task": "Read /tmp/findall-<topic>.json and produce a deduplicated table grouped by category.",
"label": "findall-summary"
}
| Exit Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Unexpected error (network, parse) |
| 2 | Invalid arguments |
| 3 | API error (non-2xx) |
Requires parallel-cli (installed and authenticated). If parallel-cli --version fails, or if a later command fails with an authentication error, tell the user to see https://docs.parallel.ai/integrations/cli and stop.