🎯

x-tweet-search

🎯Skill

from b-open-io/prompts

VibeIndex|
What it does

x-tweet-search skill from b-open-io/prompts

πŸ“¦

Part of

b-open-io/prompts(27 items)

x-tweet-search

Installation

Install PluginInstall plugin from marketplace
/plugin install bopen-tools@b-open-io
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add b-open-io/claude-plugins
Install PluginInstall plugin from marketplace
/plugin install claude-peacock@b-open-io
πŸ“– Extracted from docs: b-open-io/prompts
9Installs
6
-
Last UpdatedJan 28, 2026

Skill Details

SKILL.md

Search recent X/Twitter posts by query. Returns RAW TWEETS (last 7 days). Use when user asks "search X for", "find tweets about", "what are people saying about", "Twitter search", "raw tweets about". For AI summaries/sentiment, use x-research instead. Requires X_BEARER_TOKEN.

Overview

# X Tweet Search

Search recent tweets (last 7 days) by query.

Setup

```bash

export X_BEARER_TOKEN="your-token" # https://developer.x.com/en/portal/dashboard

```

Usage

```bash

${CLAUDE_PLUGIN_ROOT}/scripts/search.sh "" [max_results]

```

Search Operators

  • from:username - From specific user
  • to:username - Reply to user
  • #hashtag - Contains hashtag
  • -is:retweet - Exclude retweets
  • has:media - Contains media
  • has:links - Contains links

Examples

```bash

# Simple search

${CLAUDE_PLUGIN_ROOT}/scripts/search.sh "bitcoin"

# From specific user

${CLAUDE_PLUGIN_ROOT}/scripts/search.sh "from:kurtwuckertjr"

# Combined query

${CLAUDE_PLUGIN_ROOT}/scripts/search.sh "BSV -is:retweet" 20

```

Rate Limits

Free tier: 10 requests per 15 minutes, 1,500 tweets/month

References

  • https://docs.x.com/llms.txt
  • https://developer.x.com/en/docs/x-api/tweets/search