X reader
Yesterday's PUBLIC plugin catalog for Claude Code and Cursor
npx -y skills add Yesterday-AI/skills --skill x-readerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Read Twitter/X posts, threads, and articles. Handles login walls and JS rendering. Use when a user shares an x.com or twitter.com link.
SKILL.md
2.2 KB, as published. Nobody here has run it
X-Reader
Read any Twitter/X content -- tweets, threads, and long-form articles.
Strategy
X/Twitter URL received?
├── Simple tweet or Article → fxtwitter API (fast, free, no login-wall):
│ web_fetch "https://api.fxtwitter.com/<user>/status/<id>"
│ (For Articles: Check tweet.article.content.blocks[] for Draft.js content)
│
├── Medium Article → web_fetch (direct) or Freedium (fallback):
│ web_fetch "https://medium.com/<url>"
│ If teaser only: web_fetch "https://freedium.cfd/medium.com/<url>"
│
├── Thread (Full) → Playwright (via web-scraper):
│ node skills/web-scraper/scripts/scrape.js "<url>" --wait 5000
│
└── All methods fail → Ask user to paste or screenshot
Methods
1. fxtwitter API (Speed & Efficiency)
Best for single tweets and X Articles. No API key needed.
- Normal Tweets: Use
tweet.text,tweet.author.name, etc. - X Articles: Look into
tweet.article.content.blocks[]. Mapheader-twoto##andunstyledto paragraph.
2. oEmbed API (Legacy fallback)
web_fetch "https://publish.twitter.com/oembed?url=https://x.com/user/status/123"
3. Medium (Client-side Paywall bypass)
Medium paywalls are often client-side JS only. Raw web_fetch often gets the full HTML.
- Fallback (Freedium): Rewrite
medium.comtofreedium.cfd/medium.com.
4. Playwright (Reliability fallback)
For complex threads or when API methods fail.
node skills/web-scraper/scripts/scrape.js "<url>" --wait 5000
URL Detection
Recognize X/Twitter/Medium links:
https://x.com/<user>/status/<id>https://twitter.com/<user>/status/<id>https://x.com/i/article/<id>https://medium.com/<author>/<article-slug>
Depends On
- web-scraper -- Playwright rendering engine
Authored by ManniTheRaccoon & Robby. Merged by Yessy 🐾 2026-03-03.