Skills 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/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/3rdbrain/x-prospecting" ~/.claude/skills/clawdbot-skills-x-prospecting && rm -rf "$T"
manifest: skills/3rdbrain/x-prospecting/SKILL.md
source 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_API_KEY
    - Brave Search API key (free tier: 2,000 queries/month)