Loading...
Loading...
Query Twitter user profile and tweet data — no API key required
npx skill4agent add synctxai/synctx x-helperscripts/x_helper.pypython3 -clookup(username){"username", "followers", "following", "tweets", "likes", "description"}usernameget_tweet(tweet_id, username="i"){"tweet_id", "username", "text", "likes", "retweets", "replies", "quote": {...} | None}tweet_idquote{"tweet_id", "username", "text"}has_quoted(username, target_tweet_id, quote_tweet_id){"username", "target_tweet_id", "quoted": bool, "quote_tweet_id": str | None}usernametarget_tweet_idquote_tweet_idengagement_ratehas_quotedquote_tweet_idcd <path-to-this-skill>/scripts && python3 -c "
from x_helper import lookup
print(lookup('elonmusk'))
"cd <path-to-this-skill>/scripts && python3 -c "
from x_helper import get_tweet
print(get_tweet('20'))
"cd <path-to-this-skill>/scripts && python3 -c "
from x_helper import has_quoted
print(has_quoted('somequoter', '1234567890', '9876543210'))
"$ARGUMENTSlookup(username)