skills/findall/SKILL.md
CLI for prospecting and entity discovery. Use when the user wants to find companies, people, startups, or other entities matching specific criteria. Triggers on: "find all", "find companies", "find startups", "prospect", "lead generation", "build a list of", "discover companies", "search for companies that".
npx skillsauth add janwilmake/parallel-findall-cli findallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Discover companies, people, or entities matching complex criteria using natural language.
npm install -g findall-cli
findall run <output-dir> "<objective>"
Options:
| Option | Description | Default |
|--------|-------------|---------|
| -k, --api-key <key> | API key (or set PARALLEL_API_KEY) | - |
| -g, --generator <tier> | base, core, pro, preview | core |
| -l, --limit <number> | Max matches (5-1000) | 50 |
| --skip-preview | Skip schema editor | false |
| --auto-approve | Non-interactive mode | false |
# Find AI startups with recent funding
findall run ./leads "Find AI companies that raised Series A in 2024"
# Find security-compliant vendors
findall run ./vendors "Find SaaS companies with SOC2 Type II certification"
# Find hiring companies
findall run ./prospects "Find fintech startups with 50-200 employees hiring engineers"
# Non-interactive for scripts
findall run ./results "Find e-commerce platforms in Europe" --skip-preview --auto-approve
base - Fast, simple criteriacore - Balanced (recommended)pro - Complex criteria, higher accuracypreview - ExperimentalResults saved to output directory:
matches.json - Matched entities with details and citationsmatches.csv - CSV export for spreadsheetssummary.json - Run statisticscandidates.json - All evaluated entitiesBe specific in objectives:
Use higher limits for broad searches:
findall run ./results "..." --limit 200 --generator pro
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.