Agent skill
linkedin-commenter-extractor
Extract commenters from LinkedIn posts via Apify.
Filed under LinkedIn and social.
From edupegoretti/fluidz-skills · 116 skills · 0 · pushed 2026-03-11
What it does when it runs
Extract commenters from LinkedIn posts via Apify. Returns commenter names, titles, LinkedIn profile URLs, and comment text. Use to find warm leads engaging with relevant discussions. No LinkedIn cookies required.
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
- shellnetwork
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/linkedin-commenter-extractor" mkdir -p ~/.claude/skills/linkedin-commenter-extractor cp -R "/tmp/fluidz-skills/skills/capabilities/linkedin-commenter-extractor/." ~/.claude/skills/linkedin-commenter-extractor/
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/linkedin-commenter-extractor/SKILL.md, which is licensed MIT (repository). 304 words, 11 headings.
LinkedIn Commenter Extractor
Extract names, titles, companies, LinkedIn URLs, and comment text from people who commented on specific LinkedIn posts. Uses Apify — no LinkedIn cookies required.
Quick Start
Requires requests and APIFY_API_TOKEN environment variable.
# Extract commenters from a single post
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py \
--post-url "https://www.linkedin.com/posts/someone_topic-activity-123456789"
# Multiple posts
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py \
--post-url URL1 --post-url URL2
# Limit comments per post
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py \
--post-url URL --max-comments 50
# Output formats
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py --post-url URL --output json
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py --post-url URL --output csv
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py --post-url URL --output summary
# Deduplicate across multiple posts
python3 skills/linkedin-commenter-extractor/scripts/extract_commenters.py \
--post-url URL1 --post-url URL2 --dedup
How It Works
- Takes one or more LinkedIn post URLs
- Calls the
harvestapi~linkedin-post-commentsApify actor (no cookies needed) - Extracts commenter name, headline (title + company), LinkedIn profile URL, and comment text
- Parses headline into separate title and company fields where possible
- Optionally deduplicates across multiple posts by LinkedIn profile URL
CLI Reference
| Flag | Default | Description |
|---|---|---|
--post-url | required | LinkedIn post URL (can be repeated for multiple posts) |
--max-comments | 100 | Max comments to extract per post |
--output | json | Output format: json, csv, summary |
--dedup | false | Deduplicate commenters across multiple posts |
--token | env var | Apify API token (overrides APIFY_API_TOKEN env var) |
--timeout | 120 | Max seconds to wait for Apify run |
Output Schema
{
"name": "Jane Smith",
"headline": "VP of Finance at Acme Corp",
"title": "VP of Finance",
"company": "Acme Corp",
"linkedin_url": "https://www.linkedin.com/in/janesmith",
"comment_text": "Great insights on AI in accounting...",
"post_url": "https://www.linkedin.com/posts/...",
"profile_image_url": "https://..."
}
Cost
Uses harvestapi~linkedin-post-comments Apify actor — ~$2 per 1,000 comments. No LinkedIn cookies or login required.
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.
- linkedin-ads by OpenClaudia · 664
- linkedin-content by OpenClaudia · 664
- linkedin-authority-builder by BrianRWagner · 403
- linkedin-profile-optimizer by BrianRWagner · 403
- voice-extractor by BrianRWagner · 403
- linkedin-ads by thatrebeccarae · 119
- linkedin by manojbajaj95 · 92
- linkedin-sequence by impecablemee · 66
Need help setting it up?
This page tells you what linkedin-commenter-extractor 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.