TopRank Skills

Home / Claw Skills / Analyse des données / Lead Gen Operator
Official OpenClaw rules 36%

Lead Gen Operator

Automated lead generation assistant - finds companies, scores them, writes personalized outreach emails, and tracks pipeline.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Lead Gen Operator 技能。 若已安装,则直接安装 Lead Gen Operator 技能。

Overview

Skill Key
clawdquip/lead-gen-operator
Author
clawdquip
Source Repo
openclaw/skills
Version
-
Source Path
skills/clawdquip/lead-gen-operator
Latest Commit SHA
962a076061270a732a259826d912756d26a99eae

Extracted Content

SKILL.md excerpt

# Lead Gen Operator

An automated lead generation assistant that finds companies, scores them based on funding/size/industry, writes personalized outreach emails, and tracks your entire sales pipeline.

## What It Does

- **Find leads** - Add companies with details (name, size, industry, funding)
- **Auto-score** - Scores leads 0-100 based on funding stage, team size, industry
- **Write outreach** - Generates personalized cold emails
- **Track pipeline** - Status flows: new → enriched → drafted → sent → replied → closed
- **Follow-ups** - Get recommendations on who to follow up with
- **Export** - Export leads to CSV

## Setup

1. Copy to your OpenClaw workspace:
```bash
cp -r lead-gen-operator/* ~/.openclaw/workspace/
```

2. The memory-manager tool is pre-configured at:
```
~/.openclaw/workspace/skills/memory-manager/
```

## Commands

```bash
# Add a lead
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js add-lead leads.json "CompanyName" "" "" "11-50" "SaaS" "Series A"

# Score a lead
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js score-lead leads.json "CompanyName"

# Write outreach
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js write-outreach leads.json "CompanyName"

# Get outreach
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js get-outreach leads.json "CompanyName"

# Update status
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js update-status leads.json "CompanyName" "sent"

# View all leads
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js list leads.json

# View stats
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js stats leads.json

# Export to CSV
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js export-csv leads.json

# Follow-ups
node ~/.openclaw/workspace/skills/memory-manager/memory-manager.js get-followups leads.json
```

## Lead Scoring

| Factor | Points |
|--------|--------|
| Series A | +20 |
| Series...

README excerpt

# Lead Gen Operator

Your AI that finds leads, enriches data, drafts outreach, sends emails, and tracks follow-ups — while you sleep.

## Quick Setup (5 minutes)

### 1. Install OpenClaw
If you haven't already:
```bash
npm install -g openclaw
openclaw setup
```

### 2. Install Required Skills
```bash
clawhub install web_search
clawhub install web_fetch
clawhub install gog
```

### 3. Install Memory Manager Skill
```bash
mkdir -p ~/.openclaw/workspace/skills/memory-manager
# Copy memory-manager.js and SKILL.md from the package
```

### 4. Copy Files
Copy these files to your OpenClaw workspace:
- `SOUL.md` → `~/.openclaw/workspace/SOUL.md`
- `memory-manager/` → `~/.openclaw/workspace/skills/memory-manager/`
- `memory/leads.json` → `~/.openclaw/workspace/memory/leads.json`

### 5. Configure API Keys
Add to your `~/.openclaw/openclaw.json`:
```json
{
  "env": {
    "GOOGLE_API_KEY": "your-google-api-key",
    "SEARCH_API_KEY": "your-search-api-key"
  }
}
```

### 6. Start
```bash
openclaw start
```

## Features

### Find Leads
```
Find [number] [industry] companies in [location]
```
Example: "Find 5 SaaS companies in USA"

### Auto-Save
Leads are automatically saved after finding. No manual save needed.

### Enrich
```
Enrich [company name]
```
Get contact info, funding details, and more.

### Write Outreach
```
Write outreach for [company name]
```
Creates personalized email drafts.

### Send Email
```
Send to [company name]
```
Sends the outreach email directly via Gmail.

### Track Status
Leads automatically track status: new → enriched → drafted → sent → replied → closed

### Export
```
Export leads
```
Export your leads to CSV format.

### Follow-ups
```
What should I follow up on?
```
Shows leads that need follow-up (sent >7 days ago).

### Stats
```
Show stats
```
View your pipeline statistics.

## What's Included

| File | Purpose |
|------|---------|
| SOUL.md | Persona and all commands |
| memory-manager/ | Skill for persistence |
| memory-manager.js | Script...

Related Claw Skills