Systems Lab

Agent skill

validate-lead

slowingReaches the webActs undeclared633 words

From himanshusaleria/gtm-engine · 7 skills · 16 · pushed 2026-07-14

What it does when it runs

Read from the skill and the 2 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.

Keys and connectors you must supply
None found.
Hosts it reaches
  • docs.google.com
  • jobs.lever.co
Tool permissions it declares
No allowed-tools in the frontmatter. It does act, so it runs under whatever permissions your session already grants.
Actions present in the files
network

Ask about validate-lead

Opens your assistant with this page's verified links already in the prompt.

Is this safe to install?ClaudeChatGPT
Adapt it to my stackClaudeChatGPT
What else do I need for it to workClaudeChatGPT
Rather ask a human? Talk to Cheetah
git clone --depth 1 --filter=blob:none --sparse https://github.com/himanshusaleria/gtm-engine.git /tmp/gtm-engine
git -C /tmp/gtm-engine sparse-checkout set "skills/validate-lead"
mkdir -p ~/.claude/skills/validate-lead
cp -R "/tmp/gtm-engine/skills/validate-lead/." ~/.claude/skills/validate-lead/

Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗

Or take the whole library

This repo ships a .claude-plugin manifest, so Claude Code can install all 7 skills at once. Plugin skills are invoked as /<plugin>:<skill>, so they never collide with your own.

/plugin marketplace add himanshusaleria/gtm-engine
/plugin

The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.

Reproduced in full from himanshusaleria/gtm-engine/blob/df3d2814e760d2232f7845b901b3b5350e4d671c/skills/validate-lead/SKILL.md, which is licensed MIT (repository). 633 words, 23 headings.

/validate-lead — ICP Lead Validation

Validate whether a company is an ICP fit based on research and your ICP scoring criteria.

Usage

  • /validate-lead {company} [job_url] — Validate a single company
  • /validate-lead --batch — Validate unreviewed companies from your outreach sheet
  • /validate-lead --improve "learning" — Add a learning to improve future validations

Prerequisites

  • config/config.yaml with ICP section filled (scoring criteria, no-go rules, tiers)
  • Recommended: my-context/icp-definition.md filled (via /setup --icp)

Default Mode Flow

Step 1: Load Context (parallel reads)

Read these files in parallel:

  • ~/.claude/skills/validate-lead/learnings.md
  • my-context/icp-definition.md (if exists)
  • config/config.yaml -> icp section

Step 2: Research the Company (parallel where possible)

  • If job URL provided: WebFetch the listing -> extract role title, tech stack, requirements, company description
  • WebSearch "{company} what they do product" -> understand what they build
  • WebSearch "{company} employees team size" -> estimate headcount
  • If LinkedIn URL provided: WebFetch it

Step 3: Apply No-Go Rules (check FIRST before scoring)

Read config.icp.no_go_rules. Auto-reject if ANY rule matches.

If No-Go triggered -> output verdict immediately with reason. Skip scoring.

Step 4: Score on ICP Scale

Use config.icp.scoring_criteria for criteria. Each criterion scored 0 or 1. Sum scores and apply tier thresholds from config.icp.tiers:

  • Score >= config.icp.tiers.core = Core ICP
  • Score >= config.icp.tiers.broader = Broader ICP
  • Below broader threshold = Not ICP

Step 5: Output

Present results in this format:

## {Company Name} — Lead Validation

### Verdict
| Field | Value |
|-------|-------|
| ICP Fit? | Yes / No |
| Action | Go ahead / No go |
| Summary | {one-line summary} |

### Research Summary
- **What they do:** ...
- **Headcount:** ...
- **Geography:** ...
- **Product type:** ...
- **Job listing signals:** ... (if applicable)

### ICP Scorecard ({X}/{max})
| # | Criterion | Score | Reasoning |
|---|-----------|-------|-----------|
| 1 | {criteria from config} | 0/1 | ... |
| 2 | ... | 0/1 | ... |

### Caveats
- ...

If config.integrations.outreach_sheet.enabled is true:

  • Map verdict to the configured columns: "Copy these values to the sheet: {column}={value}, ..."
  • Include the sheet link: https://docs.google.com/spreadsheets/d/{config.integrations.outreach_sheet.spreadsheet_id}/edit

Step 6: Ask for Feedback

After output, ask: "Any feedback on this verdict? I'll save it for future validations."

If user provides feedback -> append to ~/.claude/skills/validate-lead/learnings.md with date and company context.


Batch Mode Flow

Step 1: Read the Sheet

Requires config.integrations.outreach_sheet.enabled: true.

sheets_getText(spreadsheetId: "{config.integrations.outreach_sheet.spreadsheet_id}")

Step 2: Find Unreviewed Rows

Filter for rows where the verdict column and action column are blank/empty (using column letters from config).

Step 3: Present List

Show the unreviewed companies with their signal/URL columns. Ask user which ones to validate (all, or specific ones).

Step 4: Validate Sequentially

Run the default validation flow for each selected company. Pause briefly between web searches to be rate-limit friendly.

Step 5: Summary Table

After all validations, output a summary:

| Company | Score | Tier | Verdict | Action | Comment |
|---------|-------|------|---------|--------|---------|
| ... | X/{max} | Core/Broader/No | Yes/No | Go ahead/No go | ... |

Improve Mode Flow

When user runs /validate-lead --improve "learning text":

  1. Read ~/.claude/skills/validate-lead/learnings.md
  2. Append the learning under ## User Feedback & Learnings with today's date
  3. Confirm: "Saved learning. This will be applied to future validations."
  4. Do NOT run any validation

Important Notes

  • Google Sheets MCP is read-only — always output values for manual copy-paste
  • When uncertain about a company, default to "Go ahead with caveats" — better to review than miss
  • Always check learnings.md first — past feedback may override default scoring
  • The skill improves over time as feedback accumulates in learnings.md

Files bundled with it

These load only when the skill asks for them, so they cost nothing until it runs.

Other skills for the same job

Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.

Need help setting it up?

This page tells you what validate-lead does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.

Book a call →

The directory stays free. There is nothing gated behind this.