scoring

scoring is a skill for Claude Code from Frontal-so/outbound-skills. It costs 113 tokens per session (1,163 once invoked), scanned A, original, MIT.

A lead-scoring skill for Clay, where a lead is a potential customer or contact. It builds a numerical rating from company fit, recent business signals, email quality, and other enrichment data.

In plain words
What is it for?
Use it to create scoring formulas, measure fit with an ideal customer profile, segment leads, assign priority tiers, and decide which contacts should receive outreach first.
Why use it?
It helps sort many potential leads so sales teams can spend attention on the best matches first. It also groups leads into levels for immediate outreach, slower follow-up, or removal.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to create scoring formulas, measure fit with an ideal customer profile, segment leads, assign priority tiers, and decide which contacts should receive outreach first.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/frontal-so/outbound-skills/scoring
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Frontal-so/outbound-skills --skill scoring
Clone the repo
git clone --depth 1 https://github.com/Frontal-so/outbound-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/frontal-so/outbound-skills/scoring/github.svg)](https://agentmods.dev/skills/frontal-so/outbound-skills/scoring)
Your own site
<a href="https://agentmods.dev/skills/frontal-so/outbound-skills/scoring"><img src="https://agentmods.dev/badge/skills/frontal-so/outbound-skills/scoring/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for scoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/frontal-so/outbound-skills/scoring"><img src="https://agentmods.dev/badge/skills/frontal-so/outbound-skills/scoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,163 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00113 $0.01163
Opus 5 $0.00056 $0.00581
Sonnet 5 $0.00023 $0.00233
Haiku 4.5 $0.00011 $0.00116

Measured 8d ago against content hash 8cc2274b669c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

scoring scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

master-skills/clay/.claude/skills/scoring/SKILL.md · 104 lines

How it starts

The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Lead Scoring

You help users build lead scoring systems in Clay using formulas and enrichment data to prioritize outreach.

Reference

Read {SKILL_BASE}/resources/templates/clay-enrichment-workflows.md for the scoring framework (Step 8 of the 9-step pipeline).

100-Point Scoring Model

Component Points What It Measures
Company size match 25 pts Employee count fits ICP range
Recent signals 25 pts Job changes, funding, hiring, tech adoption
Email deliverability 25 pts Valid email, low bounce risk
ICP fit 25 pts Industry, revenue, tech stack match

Tier Assignment

Tier Score Action
Tier 1 80-100 Immediate outreach, phone + email
Tier 2 60-79 Nurture sequence, email only
Tier 3 <60 Long-term nurture or discard

Building the Score in Clay

Use formula columns (0 credits) to calculate each component:

// Company size score (25 pts)
let sizeScore = 0;
let emp = {{employee_count}} || 0;
if (emp >= 50 && emp <= 500) sizeScore = 25;      // Sweet spot
else if (emp >= 20 && emp < 50) sizeScore = 15;    // Acceptable
else if (emp > 500 && emp <= 2000) sizeScore = 15; // Acceptable
else sizeScore = 5;                                 // Poor fit

// ICP fit score (25 pts)
let icpScore = 0;
if ({{industry}} == "SaaS" || {{industry}} == "Software") icpScore += 15;
if ({{revenue}} > 5000000) icpScore += 10;

// Signal score (25 pts)
let signalScore = 0;
if ({{recent_funding}} && {{recent_funding}} != "purple") signalScore += 10;
if ({{job_change_90d}} == "true") signalScore += 10;
if ({{hiring_signals}} == "true") signalScore += 5;

// Deliverability score (25 pts)
let delivScore = 0;
if ({{email_validation}} == "valid") delivScore = 25;
else if ({{email_validation}} == "catchall valid") delivScore = 15;
else delivScore = 0;

// Total
sizeScore + icpScore + signalScore + delivScore

Segmentation Formula (Tier Assignment)

Read the full file on GitHub · 104 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 104 lines · 113 tokens per session scan A 8cc2274b669c

Subscribe to this mod's changes

scoring is a skill published in the GitHub repository Frontal-so/outbound-skills (5 stars, last pushed 1mo ago), licensed MIT. It adds 113 tokens to every session and 1,163 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

audience-icp-filter

Filter an existing audience or lead list against your ICP and split it into ready-to-sequence segments. Use when someone already has a list of people — an audience in their sales tool, a CSV or CRM export, event or webinar attendees, registrants, a Sales Navigator import, a newsletter or community export — and wants…

LaGrowthMachine/gtm-system · 228 tokens

team-performance-dashboard

Generate your Team Performance Dashboard from your La Growth Machine data: a head-of-sales cockpit that ranks each sender (rep) on reply rate, your success event (signups/meetings/deals) and conversion, surfaces hot leads going cold, and turns your best reps' campaigns into a coaching playbook for the rest. Pulls only…

LaGrowthMachine/gtm-system · 235 tokens

weekly-performance-advisor

Generate your Weekly Performance Advisor dashboard from your La Growth Machine data: a two-tab cockpit (To do + Weekly performance) that flags campaigns to fix, sorts replies by urgency, and tracks reply volume week over week. It pulls only YOUR live LGM data, scores each running campaign against baked 3-zone…

LaGrowthMachine/gtm-system · 215 tokens

objection-analyzer

Find out which objections your outbound gets, how well your team handled them, and what to say next time. Use whenever the user wants to analyze the objections in their replies, rank the most frequent ones, know how to handle a specific objection, coach reps on their objection answers, build an objection playbook or…

LaGrowthMachine/gtm-system · 215 tokens

sales-nav-search-builder

Generate a precise LinkedIn Sales Navigator search URL from a natural-language ICP description — for sales prospecting, outbound outreach, lead generation, and B2B targeting. Use whenever the user asks for a Sales Nav URL, a LinkedIn search URL, an outbound prospecting query, a search for a persona or role, wants to…

LaGrowthMachine/gtm-system · 221 tokens

won-deal-icp-finder

Audit your biggest closed-won deals to find your PROVEN ideal customer profile, then find more accounts like them. Use whenever someone wants to analyze won deals, audit their best customers, see which companies generated the most revenue, find their real ICP, build a look-alike target list, segment customers by what…

LaGrowthMachine/gtm-system · 220 tokens