find-email-by-name
Find someone's email address given their name and company
Best use case
find-email-by-name is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Find someone's email address given their name and company
Teams using find-email-by-name should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/orthogonal-find-email-by-name/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How find-email-by-name Compares
| Feature / Agent | find-email-by-name | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Find someone's email address given their name and company
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Find Email by Name Find a person's email address when you know their name and company/domain. Essential for sales outreach, recruiting, and professional networking. ## When to Use - User needs to contact someone at a company - User asks "what's [person]'s email at [company]?" - User wants to reach out to a specific person - Sales prospecting or lead generation - Recruiting outreach ## How It Works Uses Hunter or Tomba APIs to find the most likely email address for a person based on their name and company domain. ## Usage ### Find Email with Hunter ```bash orth run hunter /v2/email-finder --query 'domain=stripe.com&first_name=Patrick&last_name=Collison' ``` ### Find Email with Tomba ```bash orth run tomba /v1/email-finder --query 'domain=intercom.com&company=Intercom&first_name=Eoghan&last_name=McCabe' ``` ### Find from LinkedIn Profile ```bash orth run tomba /v1/linkedin --query 'url=https://linkedin.com/in/johndoe' ``` ## Parameters ### Hunter - **domain** (required) - Company domain (e.g., stripe.com) - **first_name** (required) - Person's first name - **last_name** (required) - Person's last name - **company** (optional) - Company name (alternative to domain) ### Tomba - **domain** (required) - Company domain - **company** (required) - Company name (3-75 chars) - **first_name** / **last_name** or **full_name** - Person's name - **enrich_mobile** (optional) - Set to `true` to include phone number ## Response ### Hunter Response Returns `data` object: - **email** (string) - The found email address - **score** (integer) - Confidence 0-100 (higher = more likely correct) - **domain** (string) - Company domain searched - **accept_all** (boolean) - Whether server accepts any address - **company** (string) - Company name - **position** (string|null) - Job title if known - **twitter** (string|null) - Twitter handle if known - **linkedin_url** (string|null) - LinkedIn profile URL if known - **phone_number** (string|null) - Phone if known - **sources** (array) - Web pages where this email appeared - **verification** (object) - `date` and `status` (`valid`/`invalid`/`unknown`) ### Tomba Response Returns `data.email` object with email address and confidence data. Also includes web sources where the email was found. ## Examples **User:** "Find the email for Sarah Chen at Notion" ```bash orth run hunter /v2/email-finder --query 'domain=notion.so&first_name=Sarah&last_name=Chen' ``` **User:** "I need to contact John Smith who works at Google" ```bash orth run tomba /v1/email-finder --query 'domain=google.com&company=Google&first_name=John&last_name=Smith' ``` ## Error Handling - **400** - Missing required parameters (Hunter needs `domain` + `first_name` + `last_name`) - **422** - Tomba validation error — ensure both `domain` and `company` are provided - **429** - Rate limit exceeded — wait and retry - Score of 0 means no match found — try alternate name spellings or a different API - If Hunter returns `accept_all: true`, the email format may be correct but the specific mailbox can't be confirmed ## Tips - Use the company's main domain (not subdomains) - Try both Hunter and Tomba if one doesn't find results - Check confidence scores - high confidence means the email is likely correct - Always verify important emails before sending cold outreach - For LinkedIn profiles, Tomba's LinkedIn finder is very effective
Related Skills
verify-email
Verify if an email address is valid and deliverable
find-twitter-influencers
Find Twitter/X influencers to promote a product or brand. Use when asked to find influencers, discover Twitter accounts for partnerships, identify creators in a niche, or build an influencer outreach list.
find-skill
Find and install skills from the Orthogonal skill library. Use when you need capabilities you don't have, want to discover available skills, or need to add new tools to your agent.
find-dentists
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
email-campaign
Build email campaigns - find emails, verify them, and prepare outreach
yt-dlp-downloader
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".
slack
Send messages and manage Slack channels. Use when asked to send Slack messages, post to channels, list channels, or fetch message history.
yc-batch-evaluator
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.
website-screenshot
Take screenshots of websites and web pages
weather
Get current weather and forecasts using free APIs (no API key required). Use when asked about weather, temperature, forecasts, or climate conditions for any location.
weather-forecast
Get weather forecasts - temperature, precipitation, wind, and conditions
vhs-terminal-recordings
Create polished terminal GIF recordings using VHS (Video Hardware Software) by Charmbracelet. Use when asked to create terminal demos, CLI gifs, command-line recordings, or animated terminal screenshots for documentation, READMEs, or marketing.