Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Extract tweet content from x.com URLs without credentials using browser automation. Use when user asks to "extract tweet", "download x.com link", "get tweet...
Extract tweet content from x.com URLs without credentials using browser automation. Use when user asks to "extract tweet", "download x.com link", "get tweet...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Extract tweet content (text, media, author, metadata) from x.com URLs without requiring Twitter/X credentials.
Uses OpenClaw's browser tool to load the tweet page, then extracts content from the rendered HTML.
Check that the URL is a valid x.com/twitter.com tweet: Must contain x.com/*/status/ or twitter.com/*/status/ Extract tweet ID from URL pattern: /status/(\d+)
browser action=open profile=openclaw targetUrl=<x.com-url> Wait for page load (targetId returned).
browser action=snapshot targetId=<TARGET_ID> snapshotFormat=aria
From the snapshot, extract: Required fields: Tweet text: Look for role=article containing the main tweet content Author: role=link with author name/handle (usually @username format) Timestamp: role=time element Optional fields: Media: role=img or role=link containing /photo/, /video/ Engagement: Like count, retweet count, reply count (in role=group or role=button) Thread context: If tweet is part of thread, note previous/next tweet references
If user requests --download-media or "download images": Extract all media URLs from snapshot Use exec with curl or wget to download: curl -L -o "tweet-{tweetId}-image-{n}.jpg" "<media-url>" Report downloaded files with paths
If page fails to load: Check if URL is valid Try alternative: replace x.com with twitter.com (still works) Some tweets may require login (controversial, age-restricted) - report to user If content extraction fails: X.com layout may have changed - check references/selectors.md Provide raw snapshot to user for manual review Report which fields were successfully extracted
See references/selectors.md for detailed CSS/ARIA selectors used by x.com (updated as layout changes).
No credentials: Cannot access protected tweets, DMs, or login-required content Rate limiting: X.com may block excessive automated requests Layout changes: Selectors may break if X updates their HTML structure Dynamic content: Some content (comments, threads) may load lazily
Extract single tweet: User: "Extract this tweet: https://x.com/vista8/status/2019651804062241077" Agent: [Opens browser, captures snapshot, formats markdown output] Extract with media download: User: "Get the tweet text and download all images from https://x.com/user/status/123" Agent: [Extracts content, downloads images to ./downloads/, reports paths] Thread extraction: User: "Extract this thread: https://x.com/user/status/456" Agent: [Detects thread, extracts all tweets in sequence, formats as numbered list]
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.