X/Twitter research agent for Claude Code. Search, filter, monitor -- all from the terminal.
/plugin install trailofbits/skills-curated/plugins/x-research- X API Bearer Token -- get one from the X Developer Portal
- Python 3.11+ and uv -- https://docs.astral.sh/uv/
- Set
X_BEARER_TOKENorXAI_API_KEYenvironment variable
- Search with engagement sorting, time filtering, noise removal
- Quick mode for cheap, targeted lookups (~$0.50/search)
- Profiles -- recent tweets from any user
- Threads -- full conversation by root tweet ID
- Watchlists for monitoring accounts
- Cache to avoid repeat API charges (15min TTL)
- Agentic research loop -- decompose questions, search iteratively, follow threads, synthesize
Natural language (just talk to Claude):
- "What are people saying about Claude Code?"
- "Search X for React Server Components"
- "Check what @anthropic posted recently"
CLI (via the agent):
uv run scripts/x_search.py search "your query" --sort likes --limit 10
uv run scripts/x_search.py search "AI agents" --quick
uv run scripts/x_search.py profile anthropic
uv run scripts/x_search.py thread TWEET_ID
uv run scripts/x_search.py watchlist checkX API uses pay-per-use pricing ($0.005/post read). Quick mode keeps costs under ~$0.50/search. Cache prevents duplicate charges. 24-hour deduplication at the API level means re-running searches within a day costs less.
Imported from rohunvora/x-research-skill. Original TypeScript implementation by rohunvora, converted to Python for this plugin. License: MIT.