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

seo-prospectorSEO prospector 搜索

Agent Skill

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

总安装

16,699

周安装

710

GitHub Stars

公开资料未说明

下载量

5,850
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seo-prospector

简介

SEO Prospector 为自由职业者与代理机构提供自动化 SEO 前景研究。

  • 适用于当地商业机会挖掘与潜在客户筛选。
  • 输出联系人信息与竞争强度评估。seo-prospector 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需遵守目标地区的隐私法规与爬取频率限制。
  • 建议人工复核推荐结果的可靠性与联系方式有效性。

SKILL.md

name
seo-prospector
description
>-
license
Proprietary. See LICENSE.txt for complete terms.

SEO Prospector

Automated local business lead generation for web designers and agencies.

Pipeline: discover → research → audit → report → outreach → track.

How It Works

This skill turns you into a prospecting machine. Point it at a city or industry, and it:

  1. Finds businesses with weak websites (via SEO audit + web research)
  2. Generates detailed prospect reports with specific issues found
  3. Creates personalized outreach (HTML emails, LinkedIn messages, DMs)
  4. Tracks everything in a database with dedup + cluster rotation
  5. Delivers daily summaries of your pipeline health

Setup (First Run)

Before using, configure your agency details:

# Copy and edit the config file
cp references/config-template.json ~/.openclaw/workspace/leads/data/seo-prospector-config.json

Edit the config with your info:

{
  "agency": {
    "name": "Your Agency Name",
    "owner": "Your Name",
    "phone": "(555) 123-4567",
    "email": "you@agency.com",
    "website": "youragency.com",
    "city": "Your City",
    "tagline": "Your one-liner value prop"
  },
  "outreach": {
    "default_tone": "casual",
    "signature_style": "friendly"
  }
}

Quick Reference

Research One Prospect

python3 scripts/research_prospect.py \
  --business "Business Name" --domain "example.com" --industry "Restaurant" \
  --priority HIGH --cluster "Restaurants"

Batch Research (Today's Rotation)

python3 scripts/batch_research.py --run morning    # Today's run_1 cluster
python3 scripts/batch_research.py --run afternoon   # Today's run_2 cluster
python3 scripts/batch_research.py --cluster "Restaurants" --limit 5

Generate Outreach

python3 scripts/create_outreach.py --report path/to/report.md --template casual
python3 scripts/create_outreach.py --business "Name" --template professional --format html

Daily Summary

python3 scripts/daily_summary.py                     # Today, Discord format
python3 scripts/daily_summary.py --date 2026-02-09 --format markdown

Pipeline Management

python3 scripts/prospect_tracker.py today-clusters
python3 scripts/prospect_tracker.py check --business "Name"
python3 scripts/prospect_tracker.py stats
python3 scripts/prospect_tracker.py outreach-ready

Workflow

1. Check Schedule & Dedup

  • Run prospect_tracker.py today-clusters to see scheduled clusters
  • Run prospect_tracker.py check --business "Name" before researching (14-day dedup window)

2. Research Phase

Data sources in priority order:

  1. SEO Quick Audit (seo_quick_audit.py) — on-page technical analysis
  2. Perplexity Search (perplexity_search.py) — business intel, reviews, reputation
  3. Browser verification (optional) — visual check for high-priority prospects

3. Report Generation

Reports follow references/research-template.md. Key sections:

  • Executive Summary (specific findings, not generic)
  • Business Overview (what they do, how long, reviews)
  • Online Presence Analysis (SEO audit results with pass/fail)
  • Why [Your Agency] (pitch angle customized to their gaps)
  • Contact & Next Steps (confidence level + recommended action)

Output: ~/.openclaw/workspace/leads/prospects/YYYY-MM-DD-{cluster}/{business}.md

4. Outreach Generation

scripts/create_outreach.py supports:

  • HTML emails (professional, mobile-responsive, branded)
  • Plain text emails (casual, no-frills)
  • LinkedIn messages (see references/outreach-templates.md)
  • DMs (Instagram, Facebook, SMS — see assets/templates/dm-outreach.md)

Each outreach package includes:

  • Email draft (HTML or plain text)
  • Review checklist for manual QA
  • Tracking JSON for pipeline status

5. Pipeline Tracking

Every prospect gets tracked via prospect_tracker.py add. The database enables dedup, coverage stats, cluster tracking, and outreach status.

Status pipeline: draft_ready → pending_review → approved → sent → followed_up → responded → closed

Priority Scoring (Strict)

Aim for ~30% HIGH, ~50% MEDIUM, ~20% LOW:

  • HIGH: No website OR completely broken site, AND business confirmed active
  • MEDIUM: Has website but major SEO gaps (no H1, no meta, no schema, bad mobile), AND confirmed active
  • LOW: Decent website with minor issues, OR business activity unconfirmed

If unsure, default to MEDIUM.

Verification (Mandatory)

Before recording any prospect, verify:

python3 scripts/verify_prospect.py <report_path>

Skip prospects with: dead URLs, parked domains, suspended hosting, permanently closed businesses.

Scripts

ScriptPurpose
scripts/research_prospect.pyFull pipeline for single prospect
scripts/batch_research.pyResearch multiple prospects from cluster or input
scripts/create_outreach.pyGenerate personalized outreach (HTML + plain text)
scripts/generate_outreach_batch.pyBatch outreach for all prospects from a date
scripts/daily_summary.pyPipeline summary (Discord or markdown)
scripts/prospect_tracker.pyDatabase, dedup, cluster rotation, stats
scripts/verify_prospect.pyURL/domain/phone verification
scripts/seo_quick_audit.pyOn-page SEO technical audit

References

FileUse When
references/research-template.mdWriting or reviewing prospect reports
references/outreach-templates.mdDrafting email/LinkedIn/DM outreach
references/industry-insights.mdIndustry-specific talking points
references/objection-handling.mdHandling "we already have a site" etc.
references/config-template.jsonFirst-time setup of agency details
references/cluster-template.jsonSetting up industry cluster rotation

Assets

  • assets/templates/email-html.html — Professional HTML email template with merge fields
  • assets/templates/email-plain.txt — Plain text email template
  • assets/templates/linkedin-message.md — LinkedIn outreach templates
  • assets/templates/dm-outreach.md — DM templates (SMS, IG, FB)
  • assets/examples/example-report.md — Completed prospect report
  • assets/examples/example-outreach.md — Completed outreach package

Cron Integration

Designed for automated daily prospecting:

8:30 AM  — SERP Gap Scanner (identify opportunities for 5 industries)
10:00 AM — batch_research.py --run morning (Tier A/B cluster)
11:30 AM — batch_research.py --run afternoon (Tier B/C cluster)
5:00 PM  — daily_summary.py (pipeline summary)

Quality Rules

  1. Always check for duplicates first (14-day window)
  2. Minimum 2 data sources per prospect (SEO audit + web research)
  3. Specific findings only — "missing H1 tag" not "SEO issues"
  4. Authentic compliments — if their site is good, say so honestly
  5. 5 prospects per cluster max — depth over breadth
  6. Match outreach tone to industry — casual for restaurants, professional for law firms
  7. Verify every prospect before recording — no dead URLs, no parked domains
  8. Never exaggerate issues — stick to what the audit actually found

Error Handling

  • Site unreachable: Research via web search only, note limitation
  • Duplicate detected: Skip with message, don't waste API calls
  • Search timeout: Continue without, flag as lower confidence
  • Empty cluster: Log and move on (cluster may be exhausted)
  • Minimum data: Business name + (domain OR industry) required

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.52%
按下载量换算4,769

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills