Agent skill
fullenrich-content-engagers
Use when the user says "enrich people who engaged with this post", "qualify post engagers with FullEnrich", "scrape and enrich LinkedIn post {URL}", "engagers from this post into a CSV", "enrich this CSV of leads", "FullEnrich content engagers", or any variant indicating they want to convert a list of leads — either LinkedIn post likers/commenters scraped via Unipile, or a bring-your-own CSV — into ICP-qualified, enriched leads via FullEnrich v2 bulk enrichment with webhook callback delivery.
Filed under Content and SEO.
From Othmane-Khadri/YALC-the-GTM-operating-system · 61 skills · 290 · pushed 2026-08-20
What it does when it runs
Use when the user says "enrich people who engaged with this post", "qualify post engagers with FullEnrich", "scrape and enrich LinkedIn post {URL}", "engagers from this post into a CSV", "enrich this CSV of leads", "FullEnrich content engagers", or any variant indicating they want to convert a list of leads — either LinkedIn post likers/commenters scraped via Unipile, or a bring-your-own CSV — into ICP-qualified, enriched leads via FullEnrich v2 bulk enrichment with webhook callback delivery.
Read from the skill and the 12 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
- FULLENRICH_API_KEY
- UNIPILE_API_KEY
- Hosts it reaches
- api18.unipile.com
- app.fullenrich.com
- dashboard.unipile.com
- docs.fullenrich.com
- fullenrich.com
- registry.npmjs.org
- unipile.com
- webhook.site
- www.linkedin.com
- www.unipile.com
- yalc.ai
- 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 filesnetwork
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/Othmane-Khadri/YALC-the-GTM-operating-system.git /tmp/YALC-the-GTM-operating-system git -C /tmp/YALC-the-GTM-operating-system sparse-checkout set ".claude/skills/fullenrich-content-engagers" mkdir -p ~/.claude/skills/fullenrich-content-engagers cp -R "/tmp/YALC-the-GTM-operating-system/.claude/skills/fullenrich-content-engagers/." ~/.claude/skills/fullenrich-content-engagers/
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 FULLENRICH_API_KEY, UNIPILE_API_KEY, which you have to obtain separately.
The skill
Source on GitHub ↗Reproduced in full from Othmane-Khadri/YALC-the-GTM-operating-system/blob/5686d1f2f526346133f78eef3349fc5a655757b4/.claude/skills/fullenrich-content-engagers/SKILL.md, which is licensed MIT (repository). 706 words, 11 headings.
FullEnrich Content Engagers
One command turns a list of leads into a CSV of ICP-qualified prospects with verified work emails and phones. Two input modes:
- URL mode — scrape engagers from a LinkedIn post via Unipile
- CSV mode — bring your own list (any source: Sales Navigator export, PhantomBuster, Evaboot, manual paste, etc.)
Both modes converge on the same ICP filter + FullEnrich enrichment pipeline.
When This Skill Applies
- "enrich people who engaged with this post {URL}"
- "qualify post engagers with FullEnrich"
- "scrape and enrich LinkedIn post {URL}"
- "engagers from {URL} into a CSV"
- "enrich this CSV of leads with FullEnrich"
- "qualify and enrich leads.csv"
What This Skill Does NOT Do
- Does not write outreach copy. Pair with
personalize-messageafter. - Does not push to a CRM.
- Does not spend credits without explicit user approval. See "Credit safety contract" below.
Credit safety contract (MANDATORY)
This skill spends FullEnrich credits, which cost real money. Safeguards:
- Always shows current balance before doing anything.
- Always shows estimated cost of the run.
--max-credits Nceiling (default 500) — auto-trims the contact list to fit.- Hard-approval prompt — blocks on stdin until the user types
yes. If stdin is not a TTY, the script aborts unless--yesis passed. --dry-runmode — scrapes engagers + applies ICP without spending a credit.
When Claude invokes this skill on a user's behalf:
- ALWAYS run with
--dry-runfirst to surface the engager count, ICP-pass count, and estimated cost. - Quote the EXACT estimated credit cost back to the user.
- WAIT for explicit user confirmation before re-running without
--dry-run. - Only pass
--yesto the script when the user has approved the spend in this conversation. - Exception: respect locally modified scripts — the user took ownership.
Prerequisites
URL mode requires all four:
FULLENRICH_API_KEY= # https://app.fullenrich.com/app/api
UNIPILE_API_KEY= # https://dashboard.unipile.com
UNIPILE_DSN= # e.g. https://api18.unipile.com:14891
UNIPILE_ACCOUNT_ID= # the LinkedIn account ID under Unipile
CSV mode requires only:
FULLENRICH_API_KEY=
Optional (both modes):
FULLENRICH_WEBHOOK_URL= # public URL for FullEnrich callbacks; otherwise webhook.site fallback
Workflow
- Resolve input source
- URL mode: resolve
social_idvia Unipileget-post, thenlist-post-comments+list-post-reactions. - CSV mode: parse
--csvfile, map columns (case-insensitive header aliases forfirst_name,last_name,linkedin_url,title,company, etc.).
- URL mode: resolve
- Dedupe — keyed on
linkedin_urlwhen present, otherwisefirst_name|last_name|company. Rows missing first_name AND (linkedin_url OR company) are dropped. - Apply ICP filter — load
config/icp.json(job-title regex, seniority allow-list, geo, company-size), score each contact 0–100, drop everything below the threshold. - Estimate cost + confirm — show the cost preview, block on stdin for
yes. - Enrich — chunk into ≤100 contacts per FullEnrich bulk request with
enrich_fields: ["contact.work_emails", "contact.phones"]. - Receive callbacks — webhook payloads land within ~30s per batch.
- Write outputs —
qualified-engagers.csv(passed ICP + enriched) andqualified-engagers-disqualified.csv(failed ICP, kept for inspection).
CLI Reference
# URL mode
node scripts/run.mjs <linkedin-post-url-or-post-id> [flags]
# CSV mode
node scripts/run.mjs --csv path/to/leads.csv [flags]
Flags (shared):
[--out path.csv] # default qualified-engagers.csv
[--icp config/icp.json] # ICP rules file
[--threshold 50] # ICP minimum score (0-100)
[--max <N>] # URL mode: page cap. CSV mode: hard row cap. (default 500)
[--max-credits <N>] # hard credit ceiling (default 500)
[--dry-run] # filter + cost preview, no spending
[--yes | -y] # skip the interactive approval prompt
CSV column conventions
The parser accepts the most common header naming conventions case-insensitively. For each contact field, the first matching header wins:
| Internal field | Accepted CSV headers |
|---|---|
first_name | first_name, firstname, first name, given_name (or split from name / full_name) |
last_name | last_name, lastname, last name, surname, family_name (or split from name / full_name) |
linkedin_url | linkedin_url, linkedin, profile_url, linkedin profile, linkedin_profile_url |
title | title, job_title, headline, position, current_position |
company_name | company, company_name, current_company, organization, employer |
domain | domain, company_domain, website |
See examples/sample-leads.csv for a minimal working CSV.
Reference
- Shared API client:
./scripts/lib/fullenrich-client.mjs - Shared webhook receiver:
./scripts/lib/fullenrich-webhook.mjs - Shared CSV writer:
./scripts/lib/csv.mjs - ICP config:
config/icp.json(editable per use case) - FullEnrich v2 docs:
https://docs.fullenrich.com/llms.txt
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.
- content-strategy by coreyhaines31 · 46,928
- content-eval by ericosiu · 3,483
- video-content-engine by ericosiu · 3,483
- audit-content by onvoyage-ai · 1,299
- geo-content-planning by onvoyage-ai · 1,299
- geo-content-research by onvoyage-ai · 1,299
- write-seo-geo-content by onvoyage-ai · 1,299
- content-calendar by OpenClaudia · 677
Need help setting it up?
This page tells you what fullenrich-content-engagers 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.