$npx -y skills add juntoku9/claude-for-crypto-research --skill twitter-searchSearch Twitter/X for crypto sentiment, influencer opinions, and community discussions. Activate when researching tokens, projects, or market trends.
| 1 | # Twitter/X Search for Crypto Research |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | Search Twitter/X for real-time crypto sentiment and discussions. Essential for: |
| 6 | - Token sentiment analysis ($BTC, $ETH, $SOL) |
| 7 | - Influencer opinions and alpha |
| 8 | - Community reactions to news |
| 9 | - Trending narratives |
| 10 | |
| 11 | ## Usage |
| 12 | |
| 13 | ```bash |
| 14 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "$SOL" --count 20 |
| 15 | ``` |
| 16 | |
| 17 | ## Quality Filters (NEW!) |
| 18 | |
| 19 | Use these flags to get higher quality tweets: |
| 20 | |
| 21 | ```bash |
| 22 | # Minimum engagement filters |
| 23 | --min-likes 50 # Only tweets with 50+ likes (high quality signal) |
| 24 | --min-retweets 10 # Only tweets with 10+ retweets |
| 25 | --min-replies 5 # Only tweets with 5+ replies |
| 26 | |
| 27 | # Content filters |
| 28 | --lang en # Only English tweets |
| 29 | --no-retweets # Exclude retweets (original content only) |
| 30 | --verified # Only from verified accounts |
| 31 | --has-media # Only tweets with images/videos |
| 32 | --has-links # Only tweets with links |
| 33 | |
| 34 | # Time filters |
| 35 | --since 2025-01-01 # Tweets after this date |
| 36 | --until 2025-01-31 # Tweets before this date |
| 37 | --within 7d # Last 7 days (also: 24h, 30m) |
| 38 | ``` |
| 39 | |
| 40 | ## Crypto Search Examples |
| 41 | |
| 42 | ```bash |
| 43 | # High quality token discussion (50+ likes, no retweets, English) |
| 44 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "\$ARB" --min-likes 50 --no-retweets --lang en --count 20 |
| 45 | |
| 46 | # Verified accounts talking about a project |
| 47 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "Arbitrum" --verified --min-likes 20 --count 15 |
| 48 | |
| 49 | # Recent high engagement tweets (last 7 days) |
| 50 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "\$SOL" --within 7d --min-likes 100 --type Top --count 15 |
| 51 | |
| 52 | # Filter out spam/noise with engagement |
| 53 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "\$ETH" --min-likes 10 --no-retweets --count 20 |
| 54 | |
| 55 | # Media posts only (charts, infographics) |
| 56 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "OpenMind tokenomics" --has-media --min-likes 20 --count 15 |
| 57 | |
| 58 | # Specific user's tweets |
| 59 | python3 .claude/skills/twitter-search/scripts/search_twitter.py --user VitalikButerin --count 10 |
| 60 | |
| 61 | # Combined: high quality discussion in last 24h |
| 62 | python3 .claude/skills/twitter-search/scripts/search_twitter.py "OpenMind airdrop" --min-likes 30 --within 24h --lang en --no-retweets --count 20 |
| 63 | ``` |
| 64 | |
| 65 | ## Output Format |
| 66 | |
| 67 | ``` |
| 68 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 69 | @username (Display Name) ✓ |
| 70 | Followers: 125K | Jan 15, 2025 14:30 |
| 71 | |
| 72 | Tweet content here... |
| 73 | |
| 74 | ❤️ 1.2K 🔁 567 💬 89 👁️ 45.7K |
| 75 | https://twitter.com/username/status/123456789 |
| 76 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 77 | ``` |
| 78 | |
| 79 | ## What to Capture |
| 80 | |
| 81 | - **Sentiment**: Is overall mood bullish, bearish, or neutral? |
| 82 | - **Influencer takes**: What are CT thought leaders saying? |
| 83 | - **Community concerns**: What worries are being discussed? |
| 84 | - **Excitement**: What's driving positive sentiment? |
| 85 | - **Narratives**: What stories/themes are trending? |
| 86 | |
| 87 | ## Recommended Search Strategy for Researchers |
| 88 | |
| 89 | **For General Sentiment** (balanced view): |
| 90 | ```bash |
| 91 | python3 ... "PROJECT_NAME" --min-likes 10 --no-retweets --lang en --count 20 |
| 92 | ``` |
| 93 | |
| 94 | **For Quality Alpha** (influencers, high engagement): |
| 95 | ```bash |
| 96 | python3 ... "\$TOKEN" --min-likes 50 --verified --type Top --count 15 |
| 97 | ``` |
| 98 | |
| 99 | **For Recent News** (last 24-48h): |
| 100 | ```bash |
| 101 | python3 ... "PROJECT_NAME announcement" --within 48h --min-likes 20 --count 15 |
| 102 | ``` |
| 103 | |
| 104 | **For Visual Content** (charts, infographics): |
| 105 | ```bash |
| 106 | python3 ... "PROJECT_NAME metrics" --has-media --min-likes 30 --count 10 |
| 107 | ``` |
| 108 | |
| 109 | ## Search Tips |
| 110 | |
| 111 | - Always use quality filters (--min-likes at minimum) to avoid spam |
| 112 | - Use `--no-retweets` for original opinions/analysis |
| 113 | - Use `--lang en` to get English content |
| 114 | - For tokens, use `$SYMBOL` format (e.g., `$SOL`, `$ETH`) |
| 115 | - Combine `--verified` with `--min-likes` for high-signal content |
| 116 | - Use `--type Top` for most engaging tweets |
| 117 | - Use `--within 7d` for recent, relevant discussions |