Install
openclaw skills install tweet-summarizer-liteFetch and summarize single tweets from Twitter/X. Basic search and single tweet fetching. Lightweight version perfect for quick tweet lookups.
openclaw skills install tweet-summarizer-liteUse this skill when the user asks to fetch, read, save, or summarize a single tweet from Twitter/X.
✅ USE this skill when the user:
❌ DON'T use when:
You run the scripts internally — the user never types python3. Respond naturally, then exec the appropriate script and present the output conversationally.
The skill root is at: ~/.openclaw/workspace/skills/tweet-summarizer-lite/
Run scripts with: python3 <skill-root>/scripts/<script>.py <args>
Triggers: "fetch this tweet", "what does this say", "grab this", paste of x.com//status/ URL
python3 scripts/tweet.py <url>
# Skip summary: python3 scripts/tweet.py <url> -ns
Auto-detects tweet URLs in the user's message. Shows the tweet text and a short summary.
Triggers: "search my saved tweets for...", "find tweets about...", "do I have anything saved about..."
# By text content
python3 scripts/search_tweets.py --text "artificial intelligence"
# By author
python3 scripts/search_tweets.py --source elonmusk
# By date
python3 scripts/search_tweets.py --since 2026-02-01
# List all saved authors
python3 scripts/search_tweets.py --list-sources
# Storage stats
python3 scripts/search_tweets.py --stats
Triggers: "summarize tweet [id]", "give me a summary of that"
python3 scripts/summarize.py <tweet-id>
If bird CLI fails or credentials are missing:
python3 scripts/config.py --check-credentials
Tell the user:
Set
AUTH_TOKENandCT0from your browser cookies (Twitter → DevTools → Application → Cookies). SeeSECURITY.mdfor details.
Need threads, collections, tags, or user timelines? This lite version only handles single tweets. Suggest tweet-summarizer-pro for those features.