Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Twitter Reader

Fetches tweets and long-form X Articles with all images and engagement metadata into clean Markdown files.

Web & APIIntermediate1,323212AI score 9/10Last updated: Aug 8, 2026

What it does

  • Takes a tweet or X Article URL and pulls the full body content.
  • Writes YAML frontmatter with author, date, likes, retweets and bookmarks.
  • Downloads every embedded image into attachments/YYYY-MM-DD-author-title/ and rewrites the Markdown links to local paths.
  • Offers a lightweight text-only mode via the Jina API plus a batch script for multiple URLs.

Who it's for

  • Obsidian / Notion users who archive threads and articles into a personal knowledge base
  • Researchers and newsletter writers who collect X content to summarize or translate
  • Content teams that need faithful archives of image-heavy long-form posts

Examples

  1. "Save this X Article to ./Clippings with its images" → runs fetch_article.py, producing a Markdown file plus an attachments folder
  2. "Just extract the text of this tweet" → uses the Jina API mode for a fast text-only grab
  3. "Fetch these 5 tweets and summarize them" → batch fetch with fetch_tweets.sh, then let Claude summarize

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/twitter-reader/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the twitter-reader folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/twitter-reader/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/twitter-reader ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and install the uv Python package manager: curl -LsSf https://astral.sh/uv/install.sh | sh
  2. Clone the repository: git clone https://github.com/daymade/claude-code-skills.git
  3. Create the skills folder and copy the skill: mkdir -p ~/.claude/skills && cp -r claude-code-skills/twitter-reader ~/.claude/skills/
  4. (Optional, for text-only mode) Get a key at https://jina.ai and add export JINA_API_KEY="your_key" to ~/.zshrc or ~/.bashrc.
  5. Restart Claude Code and ask with a link, e.g. "Save this X link as Markdown with images".
  6. Verify the generated Markdown file and attachments folder appear in your chosen output directory.