.claude/skills/ingest-tweet/SKILL.md
Extract full text from X/Twitter posts for wiki ingestion. Uses FXTwitter API, no auth required.
npx skillsauth add RonanCodes/llm-wiki ingest-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.
Extract the full text of an X/Twitter post.
Parse the URL to extract username and tweet ID:
https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}?s=46, ?t=...)Fetch via FXTwitter API (free, no auth, returns full text including long "note tweets"):
curl -s "https://api.fxtwitter.com/{user}/status/{id}"
tweet.text — full tweet text (with expanded URLs, not t.co links)tweet.author.name / tweet.author.screen_name — authortweet.created_at — datetweet.likes, tweet.retweets, tweet.replies — engagementtweet.quote — quoted tweet (if present)tweet.media — images/videos (if present)raw/<author>-tweet-<id>.md with YAML header:---
source-url: <tweet-url>
title: "<author> tweet on <topic>"
author: "<name> (@<screen_name>)"
date-fetched: <today>
source-type: tweet
---
If FXTwitter fails, use oEmbed (truncates long tweets):
curl -s "https://publish.x.com/oembed?url=<original-url>"
None — uses only curl.
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.