ResourcesOpen Source AI SkillsX/Twitter Research & Trust Networks

X/Twitter Research & Trust Network Mapping

Skill AI Research OSINT OpenClaw

Teach your AI agent to research X/Twitter accounts, map trust networks between influencers, and find real product recommendations — not hallucinated ones. Three methods compared with honest trade-offs.

View on GitHub

⚠️ Before installing or using this skill, review its full contents — including all scripts — to ensure they meet your security and quality standards. Users take ultimate responsibility for any skill they choose to use. These are community-sourced and updated.

Download

⬇ Download x-research.skill

Install with OpenClaw:

openclaw skill install x-research.skill

Or drop the file into your ~/.openclaw/skills/ directory.

What This Skill Does

This skill gives your OpenClaw agent the ability to research people and topics on X/Twitter by searching real tweets, not asking an LLM to guess. It covers:

When Your Agent Uses It

The skill triggers when you ask your agent to:

The Key Insight: Reply Chains > Direct Search

The most valuable technique isn't searching what someone says — it's searching what others recommend to them.

When a trusted account asks "looking for a good shampoo," the replies are a curated recommendation list from their community. That's higher-signal than any search engine result because:

# The magic query: what do people recommend TO an account?
bird search "to:TrustedAccount recommend OR try OR use"

# Then trace each recommender
bird about RecommenderAccount
bird search "from:RecommenderAccount topic"

Method Comparison

Method Speed Accuracy Auth
bird CLI search 5-10s/query ✅ Exact tweets with URLs ct0 cookie
Playwright scroll 45s/100 tweets ✅ Real but capped at ~100 None needed
Grok API (grok-3) 15-20s ❌ Fabricates tweets API key
X Search (browser) ❌ Login wall
Grok (browser) ❌ Login wall

The Grok API warning is critical. In testing, Grok confidently invented example tweets, fabricated product endorsements, and got an account's stance on DHT blockers exactly backwards. It has a training cutoff and no real-time X access. Never use it to determine what someone actually said on X.

What's in the Package

x-research/
├── SKILL.md                              # Core instructions, method selection, search patterns
└── references/
    └── trust-network-example.md          # Full worked example with real data

Requirements

Background

This skill was built from a real research session: finding the best shampoo by mapping the trust network of eight health influencer accounts on X. The process discovered FountainHead Hair — a brand that never would have appeared in a Google search — by tracing reply chains from @Tallowtwins' community.

Along the way, we tested every available method side-by-side: bird CLI, manual Playwright scrolling, X Search, browser Grok, and the Grok API. The results were stark — bird CLI outperformed everything else by a wide margin, and Grok API actively produced harmful misinformation.

The trust network methodology generalizes beyond product recommendations. It works for finding developers, evaluating projects, sourcing information, or mapping any community where who-endorses-whom matters more than what-ranks-highest.

Freedom Tech Perspective

Traditional product research routes you through affiliate-driven review sites, SEO-optimized listicles, and paid placements. The trust network approach inverts this — you start from people you actually trust and follow the signal.

This is how research worked before search engines: you asked people you trusted, who pointed you to people they trusted. The tools just make it faster.