Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

lead-scorer-free免费首席得分手

Agent Skill

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

总安装

21,441

周安装

921

GitHub Stars

公开资料未说明

下载量

7,515
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install lead-scorer-free

简介

对域名进行 0-100 分质量评分,基于网站与社交数据分析。

  • 适用于线索优先级排序与有效性评估场景。lead-scorer-free 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持自定义 JSON 配置文件定义评分信号。
  • 安装命令:openclaw skills install lead-scorer-free。
  • 注意检查是否访问 DNS 或站点地图等敏感资源。

SKILL.md

name
lead-scorer
description
|

Lead Scorer

Analyze a domain and return a 0-100 lead score with detailed breakdown. The key feature is customizable scoring profiles — JSON configs that define which signals matter and their weights.

How It Works

  1. DNS Analysis — MX records (Google Workspace/M365 = real business), SPF/DMARC
  2. Sitemap Parsing — URL count, last modified dates, content volume
  3. Website Scraping — Blog detection, tech stack, meta tags, social links, contact info
  4. Signal Scoring — Each signal scored against the profile weights
  5. Grade Assignment — A (80-100), B (60-79), C (40-59), D (20-39), F (0-19)

Dependencies

pip3 install dnspython

Usage

Single domain (default profile)

python3 scripts/score_lead.py example.com

With custom profile

python3 scripts/score_lead.py example.com --profile clearscope.json

Multiple domains

python3 scripts/score_lead.py domain1.com domain2.com domain3.com

Batch from CSV

python3 scripts/score_lead.py --csv leads.csv --domain-column "Website"

Options

  • --profile FILE — Scoring profile JSON (default: default.json, resolved from scripts/profiles/)
  • --csv FILE — CSV file with domains
  • --domain-column NAME — Column name for domains in CSV (default: domain)
  • --scrape-delay SECONDS — Delay between HTTP requests (default: 0.5)
  • --output FILE — Write results to file instead of stdout

Output

JSON to stdout with overall score, per-signal breakdown, raw data, and summary:

{
  "domain": "example.com",
  "score": 72,
  "grade": "B",
  "profile": "default",
  "signals": {
    "has_blog": {"score": 20, "max": 20, "evidence": "Blog found at /blog; 234 URLs in sitemap"},
    "business_legitimacy": {"score": 15, "max": 20, "evidence": "MX: Google Workspace; SPF configured"}
  },
  "raw_data": {
    "sitemap_urls": 234,
    "mx_provider": "Google Workspace",
    "tech_stack": ["WordPress", "Cloudflare"]
  },
  "summary": "Strong in: has blog, business legitimacy. Good lead, worth pursuing."
}

Scoring Profiles

Profiles are the key differentiator. They let you define what matters for YOUR use case.

Profile format

{
  "name": "my-profile",
  "description": "What this profile scores for",
  "signals": {
    "signal_name": {
      "weight": 25,
      "description": "What this signal measures",
      "keywords": ["optional", "keyword", "list"]
    }
  }
}

Built-in signals

SignalWhat it checks
has_blogBlog/content section existence + sitemap volume
business_legitimacyMX provider, SPF/DMARC, about page, meta tags
content_velocitySitemap dates — recency and frequency of updates
tech_stackCMS, analytics, chat tools detected in page source
audience_sizeSocial media links (Twitter, LinkedIn, YouTube, Facebook)
contact_findabilityContact page, emails on site, LinkedIn link
seo_toolsKeyword matching in homepage text (requires keywords array)

Custom keyword signals

Any signal with a keywords array will match those terms against the homepage text. This is how you detect competitors, tools, or industry terms:

{
  "name": "crm-seller",
  "signals": {
    "uses_crm": {
      "weight": 30,
      "description": "Already uses a CRM",
      "keywords": ["salesforce", "hubspot", "pipedrive", "zoho crm", "close.io"]
    },
    "has_sales_team": {
      "weight": 25,
      "description": "Mentions sales roles or team",
      "keywords": ["sales team", "account executive", "sdr", "business development"]
    }
  }
}

Shipped profiles

  • default.json — Generic scoring for any SaaS/content company
  • clearscope.json — Example profile for SEO tool partnership leads

Create your own in scripts/profiles/ or pass any path with --profile.

Rate Limiting

The script is polite by default:

  • --scrape-delay 0.5 — 500ms between HTTP requests (default)
  • Each domain makes ~5-8 requests (homepage, blog, about, contact, sitemap, DNS)
  • For batch mode, there's an additional delay between domains
  • Increase delay for large batches: --scrape-delay 2
  • All requests use a generic User-Agent string

Recommended delays

Batch sizeDelayEst. time
1-100.5s (default)~30s-2min
10-501.0s~5-15min
50+2.0s~30min+

Error Handling

If a signal can't be gathered (site down, DNS timeout, etc.), it scores 0 with an explanation in the evidence field. The script never crashes on a single domain failure — it logs the issue to stderr and continues.

Tips

  • Start with default profile, review results, then customize
  • Weights should sum to 100 for intuitive scoring (not required — auto-normalizes)
  • Keywords are powerful — add competitor names, industry terms, technology mentions
  • Pipe to jq for quick filtering: python3 scripts/score_lead.py domain.com | jq '.score'
  • Batch + sort: Score a CSV, then sort by score to prioritize outreach

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.44%
按下载量换算7,398

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills