.claude/skills/read-tweet/SKILL.md
Read full text of an X/Twitter post from a URL. Use when user shares an x.com or twitter.com link, asks to read a tweet, or needs tweet content extracted.
npx skillsauth add RonanCodes/llm-wiki read-tweetInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch and display the full text of an X/Twitter post. No auth required.
/read-tweet https://x.com/username/status/1234567890
Extract username and tweet ID from $ARGUMENTS:
https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}?s=46, ?t=...)Fetch via FXTwitter API (returns full text, including long "note tweets"):
curl -s "https://api.fxtwitter.com/{user}/status/{id}"
Parse the JSON and display:
tweet.author.name (@tweet.author.screen_name)tweet.created_attweet.text (NOT raw_text which has t.co URLs)tweet.likes, tweet.retweets, tweet.repliestweet.quote exists, show its text tooFormat as clean markdown.
If FXTwitter fails, use oEmbed (truncates long tweets but very reliable):
curl -s "https://publish.x.com/oembed?url={original-url}"
data-ai
Extract transcript from a YouTube video as clean readable text. Use when user shares a youtube.com or youtu.be link and wants the transcript, content summary, or to read what was said.
development
Page type templates and frontmatter conventions for LLM Wiki pages. Reference skill loaded by ingest, query, and lint skills to ensure consistent wiki structure.
testing
Show status of all LLM Wiki vaults — page counts, source counts, last activity, and git status. Use when user wants to see vault status, list vaults, or check wiki health.
documentation
Import an existing Obsidian vault, markdown folder, or git repo as an llm-wiki vault. Moves content into vaults/, adds missing structure (index, log, CLAUDE.md, frontmatter). Use when user wants to import, adopt, migrate, or bring in an existing knowledge base.