Install
openclaw skills install twitter-article-readerExtract readable content from Twitter/X articles and tweets using jina.ai. Use when the user provides a Twitter/X link and wants to read the full content wit...
openclaw skills install twitter-article-readerExtract content from a Twitter/X article or tweet:
1. Take the Twitter/X URL from the user
2. Construct the jina.ai URL: https://r.jina.ai/https://x.com/<id>
- For x.com/<user>/article/<id>: use https://r.jina.ai/https://x.com/<user>/article/<id>
- For x.com/i/status/<id>: use https://r.jina.ai/https://x.com/i/status/<id>
- For x.com/<user>/status/<id>: use https://r.jina.ai/https://x.com/<user>/status/<id>
3. Use web_fetch to retrieve the content
4. Return the extracted markdown text to the user
Twitter/X has anti-bot measures that prevent direct scraping. The jina.ai proxy bypasses these restrictions and returns clean, readable markdown content.
| Pattern | Example | jina.ai URL |
|---|---|---|
| Article | https://x.com/Pluvio9yte/article/2023339861369864466 | https://r.jina.ai/https://x.com/Pluvio9yte/article/2023339861369864466 |
| Status | https://x.com/i/status/2023339861369864466 | https://r.jina.ai/https://x.com/i/status/2023339861369864466 |
| User Status | https://x.com/username/status/1234567890 | https://r.jina.ai/https://x.com/username/status/1234567890 |