Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

agitech-lead-hunteragitech 领头猎人

Agent Skill

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

总安装

4,443

周安装

187

GitHub Stars

公开资料未说明

下载量

1,556
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:agitech-lead-hunter(agitech 领头猎人)
来源仓库:https://github.com/zich-agent/agitech-lead-hunter
安装命令:
openclaw skills install agitech-lead-hunter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install agitech-lead-hunter

简介

用于自主搜寻符合理想客户画像的融资公司并生成合格线索。

  • 适合销售拓展、投资对接与市场研究场景。
  • 输出包含企业背景与匹配度分析,供后续联系使用。
  • 数据来源于公开渠道,准确性需二次核实。
  • 适用于 OpenClaw 环境,安装命令为 openclaw skills install agitech-lead-hunter。

SKILL.md

name
lead-hunter
description
Autonomous lead generation skill. Finds freshly-funded companies matching your ideal customer profile, researches them, and delivers qualified leads with personalized outreach drafts. Industry-agnostic - works for dev shops, agencies, recruiters, SaaS founders, consultants. Use when asked to find leads, prospect, build a pipeline, or set up lead generation. Supports onboarding interview for first-time setup.

Lead Hunter

Autonomous lead generation that finds, researches, and qualifies prospects daily.

First Run (Onboarding)

If skills/lead-hunter/scripts/config.json has "configured": false, run the onboarding interview before anything else. See references/onboarding.md for the full interview flow.

After onboarding, the config is written and the skill switches to hunt mode.

Hunt Mode (Daily Run)

Step 1: Load Config

Read skills/lead-hunter/scripts/config.json for:

  • company - who you are and what you sell
  • ideal_customer - size, stage, geography, signals
  • sources - where to find leads (industry-specific)
  • output - where to put leads (asana, notion, csv, markdown)
  • outreach - DM template and personalization rules
  • filters - what to skip

Step 2: Scrape Sources

For each source in config.sources:

  1. Try web_fetch first (fastest, no deps)
  2. If blocked (403/Cloudflare): fall back to scripts/scrape.py which uses Crawl4AI with stealth mode
  3. If still blocked: use OpenClaw's managed browser via the browser tool
  4. Last resort: use web_search with site:<domain> + freshness filter

Extract from each source:

  • Company name
  • Funding amount and round type
  • Location
  • What they do (1-2 sentences)
  • Investors (if available)
  • Article/announcement URL

Step 3: Filter

Apply config.filters and config.ideal_customer to keep only matching leads:

  • Round type matches (e.g., pre-seed, seed)
  • Amount in range (e.g., $500K-$10M)
  • Geography matches
  • Industry/vertical matches
  • Not in config.filters.skip_industries

Also deduplicate against scripts/seen.json (persisted list of previously found companies).

Step 4: Research Each Lead

For each qualifying company (max 5 per run to stay fast):

  1. Website: web_fetch their site - check team page, product, tech stack
  2. Team size: web_search for LinkedIn company page - estimate headcount
  3. Key person: web_search for founder/CEO LinkedIn - get name, background, LinkedIn URL
  4. Opportunity signals: Flag if no CTO, small team, early product, tech stack match

Step 5: Score & Rank

Score each lead 1-10 based on:

  • Team size match (smaller = higher for services, bigger = higher for SaaS)
  • Funding stage match
  • Tech stack alignment
  • Opportunity signals (no CTO, hiring, etc.)
  • Recency of funding announcement

Step 6: Generate Outreach

For each lead scoring 6+, generate a personalized DM draft using config.outreach.template with:

  • Founder's first name
  • Specific observation about their product/company
  • How you can help (from config.company.value_prop)
  • Soft CTA

Step 7: Output

Depending on config.output.type:

asana:

node skills/asana-pat/scripts/asana.mjs create-task \
  --workspace <workspace_id> \
  --parent <parent_task_id> \
  --assignee me \
  --name "Lead: <Company> - <Round> <Amount>" \
  --notes "<full research + DM draft>"

markdown: Append to leads/YYYY-MM-DD.md with full details per lead.

csv: Append row to leads/leads.csv with: date, company, round, amount, location, url, key_person, linkedin, score, dm_draft

notion: (future - document API integration needed)

Step 8: Update State

  • Add found companies to scripts/seen.json for dedup
  • Log summary to memory/YYYY-MM-DD.md

Step 9: Report

Output structured summary:

## Lead Hunter Report - YYYY-MM-DD
- Sources scraped: X
- Articles found: X
- After filtering: X leads
- Researched: X
- Qualified (score 6+): X

### Top Leads
1. **Company** - Round $Amount | Score: X/10
   Key person: Name (LinkedIn)
   Signal: [why they're a fit]

Scraping Fallback Chain

The skill uses a tiered approach to handle anti-bot protection:

  1. web_fetch - default, fastest
  2. scripts/scrape.py - Crawl4AI with stealth (handles most Cloudflare)
  3. Browser tool - OpenClaw's managed browser (handles everything but slow)
  4. web_search site: query - last resort, gets snippets not full pages

The scrape script auto-manages a venv at scripts/.venv/. First run:

python3 skills/lead-hunter/scripts/scrape.py --check

This creates the venv, installs crawl4ai + playwright chromium. Subsequent runs are instant.

Source Discovery

When the user picks an industry during onboarding, the skill suggests relevant lead sources. See references/sources.md for the industry-to-source mapping.

Users can add custom sources at any time by editing config.sources in config.json.

Rules

  • Never send DMs automatically - only draft them
  • Max 5 fully-researched leads per run (quality > quantity)
  • Always deduplicate against seen.json
  • Log every run to daily memory
  • If a source is consistently blocked, note it in the report so the user can adjust

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.65%
按下载量换算1,162

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills