Searches and retrieves Twitter/X content including user profiles, tweets, replies, followers, communities, spaces, and trends via the twitterapi.io API.
How this skill is triggered — by the user, by Claude, or both
Slash command
/resciencelab-opc-skills:twitterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get user profiles, tweets, replies, followers/following, communities, spaces, and trends from Twitter/X via twitterapi.io.
scripts/batch_get_users.pyscripts/check_relationship.pyscripts/credential.pyscripts/get_article.pyscripts/get_community.pyscripts/get_community_members.pyscripts/get_community_moderators.pyscripts/get_community_tweets.pyscripts/get_followers.pyscripts/get_following.pyscripts/get_list_followers.pyscripts/get_list_members.pyscripts/get_space.pyscripts/get_trends.pyscripts/get_tweet.pyscripts/get_tweet_quotes.pyscripts/get_tweet_replies.pyscripts/get_tweet_retweeters.pyscripts/get_tweet_thread.pyscripts/get_user_about.pyGet user profiles, tweets, replies, followers/following, communities, spaces, and trends from Twitter/X via twitterapi.io.
Set API key in ~/.zshrc:
export TWITTERAPI_API_KEY="your_api_key"
Quick Check:
cd <skill_directory>
python3 scripts/get_user_info.py elonmusk
All commands run from the skill directory.
python3 scripts/get_user_info.py USERNAME
python3 scripts/get_user_about.py USERNAME
python3 scripts/batch_get_users.py USER_ID1,USER_ID2
python3 scripts/get_user_tweets.py USERNAME --limit 20
python3 scripts/get_user_mentions.py USERNAME --limit 20
python3 scripts/get_followers.py USERNAME --limit 100
python3 scripts/get_following.py USERNAME --limit 100
python3 scripts/get_verified_followers.py USERNAME --limit 20
python3 scripts/check_relationship.py USER1 USER2
python3 scripts/search_users.py "query" --limit 20
python3 scripts/get_tweet.py TWEET_ID [TWEET_ID2...]
python3 scripts/search_tweets.py "query" --type Latest --limit 20
python3 scripts/get_tweet_replies.py TWEET_ID --limit 20
python3 scripts/get_tweet_quotes.py TWEET_ID --limit 20
python3 scripts/get_tweet_retweeters.py TWEET_ID --limit 50
python3 scripts/get_tweet_thread.py TWEET_ID
python3 scripts/get_article.py TWEET_ID
python3 scripts/get_list_followers.py LIST_ID --limit 20
python3 scripts/get_list_members.py LIST_ID --limit 20
python3 scripts/get_community.py COMMUNITY_ID
python3 scripts/get_community_members.py COMMUNITY_ID --limit 20
python3 scripts/get_community_moderators.py COMMUNITY_ID
python3 scripts/get_community_tweets.py COMMUNITY_ID --limit 20
python3 scripts/search_community_tweets.py "query" --limit 20
python3 scripts/get_space.py SPACE_ID
python3 scripts/get_trends.py --woeid 1 # Worldwide
# Basic search
python3 scripts/search_tweets.py "AI agent"
# From specific user
python3 scripts/search_tweets.py "from:elonmusk"
# Date range
python3 scripts/search_tweets.py "AI since:2024-01-01 until:2024-12-31"
# Exclude retweets
python3 scripts/search_tweets.py "AI -filter:retweets"
# With media
python3 scripts/search_tweets.py "AI filter:media"
# Minimum engagement
python3 scripts/search_tweets.py "AI min_faves:1000"
npx claudepluginhub resciencelab/opc-skillsSearches X (Twitter) for users, tweets, trending topics, and replies via the Felo X Search API. Use with explicit commands or when users ask about X/Twitter data.
Read tweets, search, post, like, retweet, and manage your Twitter/X timeline via twclaw CLI. Useful for social media monitoring, engagement, and content management from the terminal.
Researches public X (Twitter) data via Xquik API: tweet search, user discovery, profile timelines, threads, followers, trends, exports, and monitoring. Requires approval for private/bulk operations.