Install
openclaw skills install fb-local-lead-sniperAutomates joining and engaging in local Facebook groups to post recommendation requests, analyze replies, and generate lead outreach messages.
openclaw skills install fb-local-lead-sniperFacebook Local Group Lead Generation — find, engage, and convert local service providers through community recommendations.
This skill automates a 5-step lead generation funnel on Facebook local groups:
localhost:3456)chrome://inspect/#remote-debugging)curl -s http://localhost:3456/targets | head -1
If this returns a JSON array, you're ready. If not, run:
CLAUDE_SKILL_DIR=~/.claude/skills/web-access node ~/.claude/skills/web-access/scripts/check-deps.mjs
All commands use the main entry point:
bash "$CLAUDE_SKILL_DIR/scripts/fb-ops.sh" <action> [options]
| Action | Description | Key Options |
|---|---|---|
join | Join local Facebook groups | --city, --count, --query |
engage | Like + comment in joined groups | --likes, --comments |
post | Post a life update on profile | --text (or auto-generate) |
bait | Post a recommendation request in a group | --group, --trade, --template |
analyze | Analyze replies to find top providers | --url (post URL) |
warm | Full warm-up cycle (join + engage + post) | --city, --intensity |
status | Check account status and post replies | (none) |
# Join 5 Austin groups
bash "$CLAUDE_SKILL_DIR/scripts/fb-ops.sh" join --city Austin --count 5
# Full warm-up: 20 likes, 8 comments, 5 groups, 1 life post
bash "$CLAUDE_SKILL_DIR/scripts/fb-ops.sh" warm --city Austin --intensity double
# Post a bait in a group asking for plumber recommendations
bash "$CLAUDE_SKILL_DIR/scripts/fb-ops.sh" bait --group "South Austin Neighbors" --trade plumber --template complaint
# Analyze replies on a bait post
bash "$CLAUDE_SKILL_DIR/scripts/fb-ops.sh" analyze --url "https://www.facebook.com/groups/xxx/posts/yyy"
# Check what's happening — pending posts, replies, account health
bash "$CLAUDE_SKILL_DIR/scripts/fb-ops.sh" status
New or dormant accounts need warm-up before posting bait. The algorithm:
| Day | Likes | Comments | Groups Joined | Life Posts |
|---|---|---|---|---|
| 1-2 | 10 | 4 | 5 | 1 |
| 3-4 | 15 | 6 | 5 | 1 |
| 5-7 | 20 | 8 | 5 | 1 |
Run warm action 2-4 times per day with random intervals. Avoid patterns.
Five proven templates available via --template:
| Template | Style | Best For |
|---|---|---|
urgent | "Emergency! Need [trade] ASAP" | High urgency, fast replies |
research | "Doing research, who's the best..." | Neutral, many recommendations |
newcomer | "Just moved to [city], need..." | Sympathetic, welcoming replies |
complaint | "Had terrible experience, need someone better" | Emotional, specific recommendations |
poll | "Who's your go-to [trade]?" | Engagement-style, many tags |
The analyze action parses comments for:
After identifying top providers, generate personalized DMs:
fb-local-lead-sniper/
├── SKILL.md # This file — skill definition
├── README.md # User documentation
├── scripts/
│ ├── fb-ops.sh # Main entry point + CLI parser
│ ├── cdp-helpers.sh # CDP proxy utility functions
│ ├── join.sh # Group joining logic
│ ├── engage.sh # Likes + comments
│ ├── post.sh # Life posts + bait posts
│ └── analyze.sh # Reply analysis
├── templates/
│ ├── bait-posts.json # Bait post templates by trade
│ ├── comments.json # Engagement comment pool
│ ├── life-posts.json # Life update post pool
│ └── dm-scripts.json # Outreach DM templates
└── tests/
└── test_basic.sh # Unit tests