kevinbadi/ai-os-skills · Archived

facebook-page-finder

Find Facebook page URLs for businesses already in the business_leads table.

First seen Apr 8, 2026

Installation

$ npx skills add kevinbadi/ai-os-skills --skill facebook-page-finder

Summary

  • Find Facebook page URLs for businesses already in the business_leads table.
  • Uses Google Search via Apify to match business names to Facebook pages and updates the facebook column.
  • Trigger when asked to find Facebook pages for leads, enrich leads with Facebook handles, or populate facebook_outreach queue.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kevinbadi/ai-os-skills · top by installs.

npx skills add kevinbadi/ai-os-skills

Browse all from kevinbadi/ai-os-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 55
License MIT
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,688 B
  • docs SUMMARY.md 333 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Facebook Page Finder

Finds Facebook page URLs for businesses in the business_leads table that don't yet have a Facebook handle. Uses Apify Google Search actor to search "Business Name" facebook city and extracts matching facebook.com URLs.

What It Does

  1. Reads businesses from business_leads where facebook IS NULL
  2. For each business, runs a Google search: "Business Name" facebook <location>
  3. Extracts facebook.com handles from search results
  4. Updates business_leads.facebook with the found handle
  5. Feeds the facebook_outreach table for the facebook-outreach skill

How to Run

# Find Facebook pages for all leads missing them
node skills/facebook-page-finder/scripts/facebook-page-finder.js

# Limit to 50 leads
node skills/facebook-page-finder/scripts/facebook-page-finder.js --limit 50

# Dry run (preview without DB writes)
node skills/facebook-page-finder/scripts/facebook-page-finder.js --dry-run

Environment Variables

APIFY_API_KEY=xxx
INSFORGE_CONNECTION_STRING=xxx

Apify Actor

  • Actor ID: nFJndFXA5zjCTuudP (Google Search Results)

Database

  • Reads from: business_leads (where facebook IS NULL)
  • Updates: business_leads.facebook
  • After running, use facebook-url-normalize.js in facebook-outreach to populate facebook_outreach queue