Agent skill
kol-engager-icp
Find ICP-fit leads from KOL audiences on LinkedIn.
Filed under Prospecting and list building.
From edupegoretti/fluidz-skills · 116 skills · 0 · pushed 2026-03-11
What it does when it runs
Find ICP-fit leads from KOL audiences on LinkedIn. Given a list of KOLs, scrapes their most relevant high-engagement post from the last 30 days, extracts engagers (reactors + commenters), pre-filters by position, enriches top profiles, and ICP-classifies. Cost-controlled: 1 post per KOL. Use when someone wants to "find leads from KOL audiences" or "scrape engagers from influencer posts" or after running kol-discovery.
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
- APIFY_API_TOKEN
- Hosts it reaches
- api.apify.com
- linkedin.com
- www.linkedin.com
- Tool permissions it declares
- No
allowed-toolsin the frontmatter. It does act, so it runs under whatever permissions your session already grants. - Actions present in the files
- shellwrites files
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/edupegoretti/fluidz-skills.git /tmp/fluidz-skills git -C /tmp/fluidz-skills sparse-checkout set "skills/capabilities/kol-engager-icp" mkdir -p ~/.claude/skills/kol-engager-icp cp -R "/tmp/fluidz-skills/skills/capabilities/kol-engager-icp/." ~/.claude/skills/kol-engager-icp/
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 ↗
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.
Before you install: this skill will not complete its job on a bare agent. It needs APIFY_API_TOKEN, which you have to obtain separately.
The skill
Source on GitHub ↗Reproduced in full from edupegoretti/fluidz-skills/blob/a2cf697e2e8ec2ea517d85496e2d5c7f5dc44cd3/skills/capabilities/kol-engager-icp/SKILL.md, which is licensed MIT (repository). 850 words, 13 headings.
KOL Engager ICP
Find ICP-fit leads by scraping engagers from KOL posts on LinkedIn. This is the second half of the KOL pipeline — given KOLs (from kol-discovery or manually), it finds their best post, scrapes who engaged, and filters for your ICP.
Core principle: 1 post per KOL. Pick the most relevant, highest-engagement post from the last 30 days. This controls costs while maximizing lead quality.
Phase 0: Intake
Ask the user these questions:
ICP Criteria
- What does your product/service do?
- Topic keywords for post relevance filtering (3-5 terms the KOL posts should be about)
- Target industries/verticals
- Target job titles/roles (e.g., "VP Operations", "Head of Logistics")
- Titles to EXCLUDE (e.g., "Software Engineer", "Data Scientist")
- Competitors to filter out
- Geographic focus (e.g., "United States")
KOL Input
- KOL list — LinkedIn profile URLs (from kol-discovery output or manual list)
Save config:
skills/kol-engager-icp/configs/{client-name}.json
Config JSON structure:
{
"client_name": "example",
"topic_keywords": ["freight automation", "dispatch operations"],
"topic_patterns": ["freight.*automat", "dispatch.*oper"],
"icp_keywords": ["freight", "logistics", "3pl"],
"target_titles": ["vp operations", "head of logistics", "coo"],
"exclude_titles": ["software engineer", "data scientist"],
"tech_vendor_keywords": ["competitor-name", "saas founder"],
"country_filter": "United States",
"kol_urls": ["https://www.linkedin.com/in/kol-1/"],
"days_back": 30,
"max_posts_per_kol": 20,
"max_kols": 10,
"max_enrichment_profiles": 200,
"mode": "standard"
}
Phase 1: Run the Pipeline
python3 skills/kol-engager-icp/scripts/kol_engager_icp.py \
--config skills/kol-engager-icp/configs/{client-name}.json \
[--test] [--probe] [--yes] [--kols "url1,url2"]
Flags:
--config(required) — path to client config JSON--test— limit to 3 KOLs, 50 enrichment profiles--probe— test engager scraping with one post URL and exit--yes— skip cost confirmation prompts--kols— override KOL URLs from config (comma-separated)--max-runs— override Apify run limit
Pipeline Steps
Step 1: Scrape KOL posts — For each KOL, fetch recent posts (last 30 days, max 20 posts to scan) using harvestapi/linkedin-profile-posts.
Step 2: Select best post per KOL — Filter posts by topic_keywords/topic_patterns relevance, then pick the ONE with highest engagement (reactions + comments). Result: 1 post URL per KOL.
Step 3: Scrape engagers — Use harvestapi/linkedin-company-posts with scrapeReactions: true, scrapeComments: true to get reactors and commenters from each selected post.
Step 4: Pre-filter before enrichment — Score engagers by position:
+3Commenter (higher intent)+2Position matches ICP keywords+2Position matches target titles-5Position matches exclude titles or vendor keywords+1Engaged on multiple posts- Keep only score > 0, cap at
max_enrichment_profiles
Step 5: Enrich — supreme_coder/linkedin-profile-scraper in batches of 25. Apply country filter after.
Step 6: ICP classify & export — Classify as Likely ICP / Possible ICP / Unknown / Tech Vendor. Export CSV.
Hard Caps
| Parameter | Test | Standard | Full |
|---|---|---|---|
| KOLs processed | 3 | 10 | 20 |
| Posts selected per KOL | 1 | 1 | 1 |
| Max reactions scraped | all | all | all |
| Max profiles enriched | 50 | 200 | 500 |
| Est. total cost | ~$0.50 | ~$1.50-2 | ~$5-8 |
Probe Mode
Run --probe first to verify engager scraping works:
python3 skills/kol-engager-icp/scripts/kol_engager_icp.py \
--config skills/kol-engager-icp/configs/{client-name}.json --probe
This scrapes posts from the first KOL, selects the best post, scrapes engagers from it, and prints a sample. No enrichment, no CSV.
Phase 2: Review & Refine
Present results:
- Per-KOL breakdown — which KOL's post generated the most leads
- Pre-filter stats — how many engagers passed the position filter
- ICP breakdown — counts by tier
- Top 15 leads — name, role, company, KOL source, engagement type
Common adjustments:
- Too many tech vendors — add terms to
tech_vendor_keywords - Missing ICP leads — broaden
icp_keywordsortarget_titles - Low engagement posts selected — adjust
topic_keywordsto be less restrictive - Too expensive — lower
max_enrichment_profilesor switch to test mode
Phase 3: Output
CSV exported to skills/kol-engager-icp/output/{client-name}-kol-engagers-{date}.csv:
| Column | Description |
|---|---|
| Name | Full name |
| LinkedIn Profile URL | Profile link |
| Role | Parsed from headline |
| Company Name | Parsed from headline |
| Location | From enrichment |
| KOL Source | Which KOL's post they engaged with |
| Post URL | Link to the specific post |
| Engagement Type | Comment or Reaction |
| Comment Text | Their comment (personalization gold) |
| ICP Tier | Likely ICP / Possible ICP / Unknown / Tech Vendor |
| Pre-Filter Score | Priority score from Step 4 |
Tools Required
- Apify API token — set as
APIFY_API_TOKENin.env - Apify actors used:
harvestapi/linkedin-profile-posts(KOL post scraping)harvestapi/linkedin-company-posts(engager scraping from posts)supreme_coder/linkedin-profile-scraper(profile enrichment)
Example Usage
Trigger phrases:
- "Find leads from KOL audiences in [industry]"
- "Scrape engagers from these KOL posts"
- "Run kol-engager-icp for [client]"
- "Who is engaging with [KOL name]'s content?"
After kol-discovery:
# Use KOL URLs from discovery output
python3 skills/kol-engager-icp/scripts/kol_engager_icp.py \
--config skills/kol-engager-icp/configs/example.json \
--kols "https://linkedin.com/in/kol1,https://linkedin.com/in/kol2"
Test mode:
python3 skills/kol-engager-icp/scripts/kol_engager_icp.py \
--config skills/kol-engager-icp/configs/example.json --test
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.
- sales-icp by zubair-trabzada · 1,079
- icp-builder by OpenClaudia · 664
- icp-research by thatrebeccarae · 119
- positioning-icp by chadboyda · 74
- icp-matrix-builder by kenny589 · 63
- icp-persona by realjaymes · 55
- icp-architect by Othmane-Khadri · 55
- icp-scorer by JJenglert1 · 54
Need help setting it up?
This page tells you what kol-engager-icp 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.