โ† All skills
Tencent SkillHub ยท Developer Tools

Tweet Summarizer Lite

Fetch and summarize single tweets from Twitter/X. Basic search and single tweet fetching. Lightweight version perfect for quick tweet lookups.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fetch and summarize single tweets from Twitter/X. Basic search and single tweet fetching. Lightweight version perfect for quick tweet lookups.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
.gitignore, config.example.json, package.json, README.md, SECURITY.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Tweet Summarizer Lite

Use this skill when the user asks to fetch, read, save, or summarize a single tweet from Twitter/X.

When to Use

โœ… USE this skill when the user: Pastes a Twitter/X URL and wants to read or save it Asks to "fetch", "grab", "get", "read", or "summarize" a tweet Wants to search their saved tweets by text, author, or date Asks what they've saved so far โŒ DON'T use when: The user wants threads, user timelines, collections, or tags โ†’ use tweet-summarizer-pro Posting or replying to tweets (this skill is read-only)

How to Use

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>

Fetching a Tweet

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.

Searching Saved Tweets

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

Summarizing a Saved Tweet

Triggers: "summarize tweet [id]", "give me a summary of that" python3 scripts/summarize.py <tweet-id>

Troubleshooting

If bird CLI fails or credentials are missing: python3 scripts/config.py --check-credentials Tell the user: Set AUTH_TOKEN and CT0 from your browser cookies (Twitter โ†’ DevTools โ†’ Application โ†’ Cookies). See SECURITY.md for details.

Upgrading

Need threads, collections, tags, or user timelines? This lite version only handles single tweets. Suggest tweet-summarizer-pro for those features.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Config1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • SECURITY.md Docs
  • config.example.json Config
  • package.json Config
  • .gitignore Files