skills/orthogonal-lead-enrichment/SKILL.md
Enrich leads with email, phone, company data using multiple data sources
npx skillsauth add orthogonal-sh/skills lead-enrichmentInstall 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.
Enrich partial lead data with emails, phone numbers, and company information using multiple APIs.
Use Hunter to find email:
orth api run hunter /v2/email-finder --query domain=stripe.com first_name=John last_name=Doe
Verify the email is deliverable:
orth api run hunter /v2/email-verifier --query '[email protected]'
Use Sixtyfour for additional enrichment:
orth api run sixtyfour /enrich-lead --body '{
"lead_info": {
"first_name": "John",
"last_name": "Doe",
"company": "Stripe",
"linkedin_url": "https://linkedin.com/in/johndoe"
},
"struct": {"email": "Work email", "phone": "Phone number"}
}'
Use Sixtyfour to find phone:
orth api run sixtyfour /find-phone --body '{
"lead": {
"first_name": "John",
"last_name": "Doe",
"company": "Stripe"
}
}'
Get detailed company information:
orth api run hunter /v2/companies/find --query 'domain=stripe.com'
Fetch real-time LinkedIn profile:
orth api run fiber /v1/linkedin-live-fetch/profile/single --body '{"identifier": "https://linkedin.com/in/johndoe"}'
# 1. Start with name + company
export NAME="John Doe"
export COMPANY="Stripe"
export DOMAIN="stripe.com"
# 2. Find email (Hunter)
orth api run hunter /v2/email-finder --query domain=$DOMAIN first_name=John last_name=Doe
# 3. Verify email
orth api run hunter /v2/email-verifier --query "[email protected]"
# 4. Get full lead profile (Sixtyfour)
orth api run sixtyfour /enrich-lead --body '{"lead_info": {"first_name": "John", "last_name": "Doe", "company": "Stripe"}, "struct": {"email": "Work email"}}'
# 5. Find phone
orth api run sixtyfour /find-phone --body '{"lead": {"first_name": "John", "last_name": "Doe", "company": "Stripe"}}'
# 6. Get company details
orth api run hunter /v2/companies/find --query "domain=stripe.com"
List all endpoints, or add a path for parameter details:
orth api show fiber
orth api show hunter
orth api show sixtyfour
Example: orth api show olostep /v1/scrapes for endpoint parameters.
testing
Download videos from YouTube, Bilibili, Twitter, and thousands of other sites using yt-dlp. Use when the user provides a video URL and wants to download it, extract audio (MP3), download subtitles, or select video quality. Triggers on phrases like "下载视频", "download video", "yt-dlp", "YouTube", "B站", "抖音", "提取音频", "extract audio".
business
Send messages and manage Slack channels. Use when asked to send Slack messages, post to channels, list channels, or fetch message history.
development
Evaluate YC batch companies for investment — scrapes the YC directory, researches each company and its founders (work history, LinkedIn, website), assesses founder-company fit, and exports to Google Sheets with priority rankings. Use when asked to evaluate YC companies, research a YC batch, screen startups, or do due diligence on YC companies.
development
Take screenshots of websites and web pages