GB-Power-Market-JJ x-prospecting
Find and engage potential leads on X (Twitter) by searching for keywords and buying-intent posts via Brave Search.
install
source · Clone the upstream repo
git clone https://github.com/GeorgeDoors888/GB-Power-Market-JJ
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.claude/skills && cp -r "$T/openclaw-skills/skills/3rdbrain/x-prospecting" ~/.claude/skills/georgedoors888-gb-power-market-jj-x-prospecting && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/openclaw-skills/skills/3rdbrain/x-prospecting" ~/.openclaw/skills/georgedoors888-gb-power-market-jj-x-prospecting && rm -rf "$T"
manifest:
openclaw-skills/skills/3rdbrain/x-prospecting/SKILL.mdsource content
X (Twitter) Prospecting Skill
Find potential leads on X by searching for keyword mentions and buying-intent posts. Uses the Brave Search API to query
site:x.com — no X API credentials required.
Available Tools
Run with Node.js:
node {baseDir}/x-prospecting.js <command> [args]
- search - Search X posts by keyword via Brave
- score - Score a prospect based on their tweet and bio signals
- thread - Generate a lead-magnet thread outline
- dm-sequence - Generate a DM outreach sequence for a prospect
Usage
node {baseDir}/x-prospecting.js search "looking for AI tools" node {baseDir}/x-prospecting.js score --handle "@username" --bio "founder at SaaS" --tweet "frustrated with my current tool" node {baseDir}/x-prospecting.js dm-sequence --handle "@username" --name "Jane"
How Brave Search Works for X
curl -s -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" \ "https://api.search.brave.com/res/v1/web/search?q=site:x.com+%22looking+for+AI+tools%22&count=10"
Substitute the query with your target keywords. Parse results to extract handles and tweet text, then run through lead scoring.
Environment Variables
- Brave Search API key (free tier: 2,000 queries/month)BRAVE_API_KEY