Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

kol-engager-icpkol 参与 icp

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

607

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:kol-engager-icp(kol 参与 icp)
来源仓库:https://github.com/athina-ai/goose-skills
仓库路径:skills/kol-engager-icp
安装命令:
npx skills add https://github.com/athina-ai/goose-skills --skill kol-engager-icp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/athina-ai/goose-skills --skill kol-engager-icp

简介

kol-engager-icp 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词或任务场景从多源提取知识内容。
  • 通过 npx skills add 命令安装,需确认权限与网络访问范围。
  • 建议结合原始 README 核实具体用法,避免触发未授权操作。
  • 使用前请检查仓库维护状态及是否涉及文件读写权限。

SKILL.md

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

  1. What does your product/service do?
  2. Topic keywords for post relevance filtering (3-5 terms the KOL posts should be about)
  3. Target industries/verticals
  4. Target job titles/roles (e.g., "VP Operations", "Head of Logistics")
  5. Titles to EXCLUDE (e.g., "Software Engineer", "Data Scientist")
  6. Competitors to filter out
  7. Geographic focus (e.g., "United States")

KOL Input

  1. 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:

  • +3 Commenter (higher intent)
  • +2 Position matches ICP keywords
  • +2 Position matches target titles
  • -5 Position matches exclude titles or vendor keywords
  • +1 Engaged on multiple posts
  • Keep only score > 0, cap at max_enrichment_profiles

Step 5: Enrichsupreme_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

ParameterTestStandardFull
KOLs processed31020
Posts selected per KOL111
Max reactions scrapedallallall
Max profiles enriched50200500
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_keywords or target_titles
  • Low engagement posts selected — adjust topic_keywords to be less restrictive
  • Too expensive — lower max_enrichment_profiles or switch to test mode

Phase 3: Output

CSV exported to skills/kol-engager-icp/output/{client-name}-kol-engagers-{date}.csv:

ColumnDescription
NameFull name
LinkedIn Profile URLProfile link
RoleParsed from headline
Company NameParsed from headline
LocationFrom enrichment
KOL SourceWhich KOL's post they engaged with
Post URLLink to the specific post
Engagement TypeComment or Reaction
Comment TextTheir comment (personalization gold)
ICP TierLikely ICP / Possible ICP / Unknown / Tech Vendor
Pre-Filter ScorePriority score from Step 4

Tools Required

  • Apify API token — set as APIFY_API_TOKEN in .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

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.31%
按下载量换算23

Claude

27.24%
按下载量换算19

Cursor

20.19%
按下载量换算14

Gemini CLI

10.37%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills