← 返回 Skills 市场
mariokarras

Exa Lead Generation

作者 Mario Karras · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
221
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install abm-exa-lead-generation
功能描述
When the user wants to build targeted prospect lists using web search. Also use when the user mentions 'find leads,' 'lead gen,' 'prospect list,' 'build a li...
使用说明 (SKILL.md)

Exa Lead Generation

You help users build targeted prospect lists using Exa web search. Your goal is to find companies and contacts that match the user's ideal customer profile (ICP) and organize them into actionable prospect lists.

Before Starting

Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.

Understand what the user needs (ask if not provided):

  1. Ideal customer profile -- industry, company size, tech stack, funding stage, geography
  2. List size -- how many prospects they want
  3. Qualifying signals -- what makes a company a good fit (recent funding, hiring, product launch, etc.)
  4. Output use -- cold outreach, ABM campaign, partnership prospecting, etc.

Workflow

Step 1: Define Search Queries

Break the ICP into 2-4 search queries that target different angles:

  • Industry + signal: "[industry] startup [signal]" (e.g., "fintech startup series A 2024")
  • Tech stack: "[technology] company [qualifier]" (e.g., "companies using Kubernetes enterprise")
  • Problem-based: "[problem the ICP faces]" (e.g., "scaling customer support team fast-growing")

Step 2: Run Prospect Searches

Execute each query:

node tools/clis/exa.js search --query "[ICP-targeted query]" --num-results 20 --text

For domain-specific searches, filter to relevant sites:

node tools/clis/exa.js search --query "[query]" --num-results 20 --include-domains "crunchbase.com,linkedin.com" --text

To find companies similar to existing customers:

node tools/clis/exa.js search --query "[existing customer name] competitors alternatives" --num-results 15 --text

To preview without making API calls:

node tools/clis/exa.js search --query "[query]" --num-results 20 --dry-run

Step 3: Enrich Top Prospects

For the most promising results, fetch detailed content:

node tools/clis/exa.js contents --ids "[id1],[id2],[id3]" --text --highlights

Look for qualifying signals: recent funding, hiring posts, product launches, tech stack mentions.

Step 4: Build the Prospect List

Organize findings into the output format below. Deduplicate across queries. Rank by fit strength.

Output Format

Prospect List: [ICP Description]

Search criteria: [Summary of what was searched] Results: [X] companies found, [Y] qualified

Company Website Why They Fit Key Signal Fit Score
[Name] [URL] [ICP match reason] [Funding/hiring/tech signal] High/Med

Prospect Details

For each high-fit prospect, include:

  • Company: [Name]
  • Website: [URL]
  • What they do: [One-liner]
  • Why they fit: [Specific ICP match]
  • Key signal: [What triggered inclusion]
  • Suggested next step: [Research deeper / find contacts / reach out]

Search Queries Used

List the queries that produced the best results for reproducibility.


Tips

  • Cast a wide net, then filter. Run broad queries with high result counts, then qualify manually.
  • Combine angles. A company that shows up in multiple queries is a stronger fit.
  • Look for recency. Recent funding, hiring, or product launches indicate active companies.
  • Save your queries. Good ICP queries can be rerun periodically to find new prospects.

Related Skills

  • exa-people-search: Find specific individuals at companies on your list
  • exa-company-research: Research a single company in depth before outreach
  • cold-email: Write outreach emails to prospects you've found
安全使用建议
This skill's instructions look like a legitimate lead-generation workflow, but it expects a local Node CLI (tools/clis/exa.js) and possibly an Exa API without declaring Node, install steps, or any API keys. Before installing or enabling: 1) verify where tools/clis/exa.js comes from and whether it is present on the agent host; 2) check whether that CLI requires API keys or other secrets and ensure those are provided intentionally (and declared); 3) inspect .agents/product-marketing-context.md if present for sensitive data you don’t want read; 4) ask the publisher for an install spec or source for the exa CLI (or run this in a sandbox) so you can audit the executable and network behavior. Because of these mismatches, proceed cautiously or request additional information from the skill author.
功能分析
Type: OpenClaw Skill Name: abm-exa-lead-generation Version: 1.0.0 The skill bundle provides a legitimate workflow for lead generation using a local CLI tool (tools/clis/exa.js). The instructions in SKILL.md are well-structured, focusing on ICP definition and search query optimization without any signs of data exfiltration, malicious execution, or prompt injection attacks.
能力评估
Purpose & Capability
The SKILL.md describes building prospect lists via 'Exa web search' which matches the skill name. However, the runtime commands call a local CLI (node tools/clis/exa.js) and imply use of an external search service, yet the skill declares no required binaries (e.g., node) and provides no install instructions or required API credentials. That mismatch (expects a CLI and possibly API keys but doesn't request or install them) is an inconsistency.
Instruction Scope
Instructions are narrowly focused on composing queries, running searches, enriching results, deduplicating and formatting output — all appropriate for lead generation. They also optionally tell the agent to read .agents/product-marketing-context.md (or .claude/...), which is reasonable for contextual marketing info but is an external workspace file the skill will read if present; users should confirm that file does not contain sensitive secrets.
Install Mechanism
There is no install spec (instruction-only), which is low-risk in principle, but the SKILL.md explicitly runs node tools/clis/exa.js. The skill does not declare Node or any binary requirement nor provide an install path for that CLI. That leaves unclear how the commands would be executed and whether a hidden dependency or external binary is expected to be present or fetched at runtime.
Credentials
The skill declares no required environment variables or credentials, which is proportionate for a pure instruction skill. However, because the CLI it calls likely communicates with an external service (Exa) and might require API keys or config, the absence of declared credentials is suspicious — verify whether the referenced CLI or underlying service needs secrets that the skill does not declare.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or elevated privileges. There is no instruction to modify other skills or global agent configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install abm-exa-lead-generation
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /abm-exa-lead-generation 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release for targeted lead generation using Exa web search. - Guides users in building prospect lists based on ideal customer profiles (ICP), including industry, company size, tech stack, and buying signals. - Outlines step-by-step workflow from defining search queries to organizing and ranking results. - Provides clear output formats for prospect lists and detailed company breakdowns. - Includes best practices and tips for high-quality, actionable results. - References related skills for deeper company research or finding specific contacts.
元数据
Slug abm-exa-lead-generation
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Exa Lead Generation 是什么?

When the user wants to build targeted prospect lists using web search. Also use when the user mentions 'find leads,' 'lead gen,' 'prospect list,' 'build a li... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 221 次。

如何安装 Exa Lead Generation?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install abm-exa-lead-generation」即可一键安装,无需额外配置。

Exa Lead Generation 是免费的吗?

是的,Exa Lead Generation 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Exa Lead Generation 支持哪些平台?

Exa Lead Generation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Exa Lead Generation?

由 Mario Karras(@mariokarras)开发并维护,当前版本 v1.0.0。

💬 留言讨论