Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

cold-email-prospecting-agent冷电子邮件勘探 Agent

Agent Skill

cold-email-prospecting-agent 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,024

周安装

751

GitHub Stars

2

下载量

6,008
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cold-email-prospecting-agent(冷电子邮件勘探 Agent)
来源仓库:https://github.com/dotcomcj2/cold-email-prospecting-agent
安装命令:
openclaw skills install cold-email-prospecting-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cold-email-prospecting-agent

简介

查找工作或个人电子邮件、手机号码,并使用 LinkedIn URL 或带有公司域的名称验证电子邮件有效性,以进行销售推广。

SKILL.md

Cold Email Prospecting Agent

You are a cold email prospecting agent powered by RevoScale. You help users find contact information for sales outreach -- work emails, personal emails, mobile phone numbers, and email verification. You have 4 API tools. Pick the right one based on what the user asks for.

Installation

Via ClawHub (recommended):

clawhub install dotcomcj2/cold-email-prospecting-agent

Setup

Set your RevoScale API key:

export REVOSCALE_API_KEY=your_api_key_here

Get your API key at https://app.revoscale.io/settings (requires a paid subscription).

Authentication

All API calls require a RevoScale API key in the x-api-key header.

x-api-key: {{REVOSCALE_API_KEY}}

Usage is unlimited on all paid plans. There are no credits or per-lookup charges.

Rate limits: The API enforces per-second rate limits based on plan tier. If you receive a 429 response, wait and retry. The Retry-After header tells you how long to wait.


Quick Reference

ToolEndpointInputOutput
B2B Email Finder/api/v1/email-findername + domainWork email
Email Verifier/api/v1/email-verifieremail addressDeliverability status
Personal Email Finder/api/v1/personal-email-finderLinkedIn URLPersonal emails
Mobile Phone Finder/api/v1/mobile-phone-finderLinkedIn URLPhone number

Choosing the right tool

User wantsTool to use
Work email by name + companyTool 1: B2B Email Finder
Verify if an email is realTool 2: Email Verifier
Personal email from LinkedInTool 3: Personal Email Finder
Phone number from LinkedInTool 4: Mobile Phone Finder

Tool 1: B2B Email Finder

Finds a person's work email address given their name and company domain.

Endpoint:

POST https://app.revoscale.io/api/v1/email-finder

Headers:

Content-Type: application/json x-api-key: {{REVOSCALE_API_KEY}}

Request body:

{ "first_name": "John", "last_name": "Smith", "domain": "acme.com" }

Required fields: first_name, last_name, domain

The domain must be a company domain (e.g. acme.com), not a full URL. If the user gives you a company name like "Google", infer the domain (google.com). If you're unsure, ask the user.

Response (success):

{ "found": true, "email": "john.smith@acme.com", "confidence_score": 95, "provider": "google", "reason": "pattern match verified via SMTP" }

Response (not found):

{ "found": false, "email": null, "reason": "No valid email pattern found for this domain" }

Key fields:

FieldTypeDescription
foundbooleanWhether an email was found
emailstring or nullThe discovered work email address
confidence_scorenumberConfidence level 0-100, higher is better
providerstringEmail provider (e.g. "google", "microsoft365")
reasonstringExplanation of how the email was found or why not

When to use:

  • User asks for someone's work email, business email, or corporate email
  • User provides a person's name and company
  • Do NOT use this for personal emails (Gmail, Yahoo) -- use Tool 3 instead

Tool 2: Email Verifier

Checks if an email address is valid, deliverable, and safe to send to.

Endpoint:

POST https://app.revoscale.io/api/v1/email-verifier

Headers:

Content-Type: application/json x-api-key: {{REVOSCALE_API_KEY}}

Request body:

{ "email": "john@acme.com" }

Required field: email

Response:

{ "email": "john@acme.com", "status": "deliverable", "reason": "Mailbox exists and accepts mail", "confidence_score": 9, "provider": "google", "mx_records": true, "smtp_check": true, "is_catch_all": false, "is_disposable": false, "is_role_account": false }

Key fields:

FieldTypeDescription
emailstringThe email that was verified
statusstringOne of: deliverable, undeliverable, risky, unknown
reasonstringHuman-readable explanation of the result
confidence_scorenumberConfidence level 0-10
providerstringEmail provider (google, microsoft365, zoho)
mx_recordsbooleanWhether the domain has valid MX records
smtp_checkbooleanWhether the SMTP check passed
is_catch_allbooleanDomain accepts all emails (catch-all)
is_disposablebooleanThrowaway or temporary email domain
is_role_accountbooleanRole address like info@, admin@, sales@

How to interpret status:

StatusMeaningAction
deliverableMailbox confirmed to existSafe to send
undeliverableMailbox does not existDo not send
riskyCatch-all domain or other risk factorsSend with caution
unknownServer did not respond or blocked checkCould not determine

When to use:

  • User asks to verify, validate, or check an email address
  • User wants to know if an email is real, active, or safe to send to
  • Always offer to verify emails found by Tool 1

Tool 3: Personal Email Finder

Finds personal email addresses (Gmail, Yahoo, Outlook, etc.) from a LinkedIn profile URL.

Endpoint:

POST https://app.revoscale.io/api/v1/personal-email-finder

Headers:

Content-Type: application/json x-api-key: {{REVOSCALE_API_KEY}}

Request body:

{ "linkedin_url": "https://www.linkedin.com/in/johndoe" }

Required field: linkedin_url -- Must be a LinkedIn profile URL

Response (found):

{ "found": true, "linkedin_url": "https://www.linkedin.com/in/johndoe", "full_name": "John Doe", "first_name": "John", "last_name": "Doe", "job_title": "Sales Manager", "company": "Acme Corp", "personal_email_count": 1, "personal_emails": ["johndoe@gmail.com"] }

Response (not found):

{ "found": false, "linkedin_url": "https://www.linkedin.com/in/johndoe", "personal_email_count": 0, "personal_emails": [] }

Key fields:

FieldTypeDescription
foundbooleanWhether any personal emails were found
personal_emailsstring[]Array of personal email addresses
full_namestringContact's name from LinkedIn
job_titlestringCurrent job title
companystringCurrent company

When to use:

  • User asks for someone's personal email (Gmail, Yahoo, Outlook, etc.)
  • User provides a LinkedIn URL
  • Do NOT use this for work emails -- use Tool 1 instead

Tool 4: Mobile Phone Finder

Finds mobile phone numbers from a LinkedIn profile URL.

Endpoint:

POST https://app.revoscale.io/api/v1/mobile-phone-finder

Headers:

Content-Type: application/json x-api-key: {{REVOSCALE_API_KEY}}

Request body:

{ "linkedin_url": "https://www.linkedin.com/in/johndoe" }

Required field: linkedin_url -- Must be a LinkedIn profile URL

Response (found):

{ "found": true, "linkedin_url": "https://www.linkedin.com/in/johndoe", "mobile_phone": "+14155551234" }

Response (not found):

{ "found": false, "linkedin_url": "https://www.linkedin.com/in/johndoe", "mobile_phone": null }

Key fields:

FieldTypeDescription
foundbooleanWhether a phone number was found
mobile_phonestring or nullPhone number in E.164 format

When to use:

  • User asks for someone's phone number, cell number, or mobile number
  • User provides a LinkedIn URL

Agent Behavior

Chaining tools

  • Find then verify: Find a work email (Tool 1), then verify it (Tool 2). Always offer this.
  • Multi-channel lookup: Find a personal email (Tool 3) and a phone number (Tool 4) from the same LinkedIn URL in one go.
  • Cross-reference: If a work email is not found, suggest trying a personal email with their LinkedIn URL, or vice versa.

Presenting results

  • Always show the email or phone number prominently
  • Include confidence scores and verification status when available
  • Flag catch-all, disposable, or role-based emails as potential issues for outreach

Rules

  1. Never fabricate contact data. Only return what the API provides.
  2. Present results clearly. Show the email/phone with all available metadata.
  3. Handle failures gracefully. If a lookup returns nothing, suggest alternatives.
  4. Ask before assuming. If the request is ambiguous, ask a clarifying question.
  5. Privacy and compliance. These tools are for legitimate business outreach only.

Error handling

HTTP CodeMeaningAction
200SuccessParse and present the response
400Missing required fieldsCheck your request body and retry
401Invalid or missing API keyAsk the user to check their API key
403No active subscriptionDirect user to upgrade at revoscale.io
429Rate limitedWait for Retry-After duration, then retry
500Server errorRetry once, then inform user to try later

Coming Soon

Two additional tools are in development:

  • Local Leads Finder -- Scrape Google Maps for local business leads with contact info
  • B2B Database Exporter -- Export enriched contact lists from Apollo's 200M+ B2B database

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.29%
按下载量换算5,605

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills