Install
openclaw skills install @jzargona/lead-enrichment-scannerAutomated B2B lead generation and enrichment. Input: company names or domains. Output: enriched contact records with decision-maker names, emails, LinkedIn profiles, and personalized outreach drafts. Use when user says 'find leads', 'enrich contacts', 'B2B prospecting', 'build outbound list', or '50 qualified leads per week'.
openclaw skills install @jzargona/lead-enrichment-scannerActivate when the user wants to:
Create a text file with company names or domains (one per line):
cat > companies.txt <<EOF
Stripe
Notion
Linear
Figma
EOF
clawhub run lead-enrichment-scanner enrich \
--input companies.txt \
--output leads.csv
Useful flags:
--bulk — parallel processing (3x faster for large lists)--concurrency N — set parallel worker count (default 3)--resume — skip already-processed companies in output file (good for large jobs)--dry-run — preview what would happen without making requests--pro — use pro tier (up to 500 leads vs free tier's 10)--rate-limit N — seconds between requests (default 5)Default fields extracted:
Examples:
# Sequential, 10 leads (free tier)
clawhub run lead-enrichment-scanner enrich --input companies.txt --output leads.csv
# Parallel, faster for large lists
clawhub run lead-enrichment-scanner enrich --input big-list.txt --output leads.csv --bulk
# Preview what would happen
clawhub run lead-enrichment-scanner enrich --input big-list.txt --output leads.csv --dry-run
# Resume a previous interrupted run
clawhub run lead-enrichment-scanner enrich --input big-list.txt --output leads.csv --resume
# Pro tier (paid): up to 500 leads
clawhub run lead-enrichment-scanner enrich --input big-list.txt --output leads.csv --pro --bulk
clawhub run lead-enrichment-scanner drafts \
--input leads.csv \
--tone "consultative" \
--variants 3 \
--output drafts.md
Tones available: consultative, cold, warm, follow-up, referral.
clawhub run lead-enrichment-scanner enrich \
--input companies-large.txt \
--concurrency 3 \
--output leads-bulk.csv \
--bulk
# Only companies with 50-500 employees
clawhub run lead-enrichment-scanner filter \
--input leads.csv \
--min-employees 50 \
--max-employees 500 \
--output leads-segmented.csv
clawhub run lead-enrichment-scanner configure \
--respect-robots-txt true \
--rate-limit-seconds 5 \
--no-personal-emails true
leads.csv: enriched lead recordsdrafts.md: 3 personalized outreach variants per leadleads-segmented.csv: filtered subsetFor comparison, a human SDR produces 20-40 leads/day with manual research.
robots.txt of every domain scrapedFor SaaS founders (0-100 customers phase):
consultative (pain-point led)For agencies prospecting clients:
cold (direct, brief)For B2B sales teams:
warm (assumes inbound signal)Typical usage (200 leads/week): $1-2/week total.
Empty results for a company?
stripe.com vs Stripe Inc.)Email patterns too generic?
Outreach drafts too similar?
--tone referral for more authentic voicereferences/tone-guide.md — outreach tone customizationreferences/icp-templates.md — pre-built ICP definitionsreferences/crm-integration.md — HubSpot/Pipedrive/Salesforce setupreferences/compliance.md — GDPR/CAN-SPAM compliance notes