facebook-leads

Installation
SKILL.md

Facebook leads

Reduck scripts that turn Facebook flows into callable building blocks. Each script below is a pointer — read its contract (read_script) for the exact args and output shape before relying on it. They are all loggedIn, so they need a Facebook session exposed via reduck local --cookies (see the reduck skill for the bridge lifecycle and how to run a script).

Scripts

Read (discovery / qualification):

  • @reduck/facebook.com/search_groups(query, limit) → groups: groupId, name, url, privacy, members, postsPerDay. Use members + postsPerDay to gauge whether a group is alive before you spend reads on it.
  • @reduck/facebook.com/list_posts(url, limit) → a group OR page feed: postId, clean permalink, author, authorUrl, reactions, comments, shares, createdTime, text. Reads the Comet feed GraphQL. Rank by reactions/comments to find the threads worth opening.
  • @reduck/facebook.com/get_post_engagement(postUrl, commentLimit)reactions / comments / shares plus the commenters. The engaged audience of a single post. ⚠️ reactionsTotal is unreliable (can under-read a post list_posts saw with thousands of reactions) — trust the commenter list, not that count.
  • @reduck/facebook.com/list_group_members(groupId, limit) → per member: name, userId, profileUrl, subtitle (Admin / bio / mutuals / join-recency). Slug-agnostic. The subtitle is the main qualifying signal Facebook gives you.

Write (growth — opt-in only, see below):

Installs
4
First Seen
2 days ago
facebook-leads — reduck-ai/skills