From bopen-tools
Fetches a tweet from X/Twitter by URL or ID using the X API. Useful when user shares an X/Twitter link and wants its content.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bopen-tools:x-tweet-fetchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get a specific tweet by URL or ID.
Get a specific tweet by URL or ID.
export X_BEARER_TOKEN="your-token" # https://developer.x.com/en/portal/dashboard
${CLAUDE_PLUGIN_ROOT}/scripts/fetch.sh <url_or_id>
# By URL
${CLAUDE_PLUGIN_ROOT}/scripts/fetch.sh "https://x.com/kurtwuckertjr/status/1234567890"
# By ID
${CLAUDE_PLUGIN_ROOT}/scripts/fetch.sh 1234567890
text - Tweet contentcreated_at - Post timestamppublic_metrics - Likes, retweets, replies, viewsauthor - User info (expanded)entities - URLs, mentions, hashtagsnpx claudepluginhub b-open-io/claude-plugins --plugin bopen-toolsFetches X/Twitter tweet content via fxtwitter API from given URLs, extracting text, author, media URLs, engagement stats without JavaScript rendering or x.com loading.
Fetches any X/Twitter post as structured JSON via the ADHX API, including full article content, author info, and engagement metrics. Use when users share X links for summarization or analysis.
Fetches recent tweets from a specific X/Twitter user via the X API. Requires X_BEARER_TOKEN.