ingest-tweet — for Claude Code ingest-tweet, llm-wiki, community, for Claude Code, ide skills, ai-tools, claude-code, karpathy, knowledge-base, markdown

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need extract the full text of an x/twitter post. Resumen localizado: # Ingest Tweet Extract the full text of an X/Twitter post. It covers ai-tools, claude-code, karpathy workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

Extract the full text of an X/Twitter post.
Parse the URL to extract username and tweet ID:
Pattern: https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}
Strip query parameters (?s=46, ?t=...)
Fetch via FXTwitter API (free, no auth, returns full text including long "note tweets"):

# Core Topics

RonanCodes RonanCodes
[1]
[1]
Updated: 4/25/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
46
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need extract the full text of an x/twitter post. Resumen localizado: # Ingest Tweet Extract the full text of an X/Twitter post. It covers ai-tools, claude-code, karpathy workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: ingest-tweet helps agents extract the full text of an x/twitter post. Ingest Tweet Extract the full text of an X/Twitter post. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Mejor para

Escenario recomendado: Ideal for AI agents that need extract the full text of an x/twitter post.

Casos de uso accionables for ingest-tweet

Caso de uso: Applying Extract the full text of an X/Twitter post
Caso de uso: Applying Parse the URL to extract username and tweet ID:
Caso de uso: Applying Pattern: https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}

! Seguridad y limitaciones

  • Limitacion: None — uses only curl.
  • Limitacion: Requires repository-specific context from the skill documentation
  • Limitacion: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is ingest-tweet?

Escenario recomendado: Ideal for AI agents that need extract the full text of an x/twitter post. Resumen localizado: # Ingest Tweet Extract the full text of an X/Twitter post. It covers ai-tools, claude-code, karpathy workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install ingest-tweet?

Run the command: npx killer-skills add RonanCodes/llm-wiki/ingest-tweet. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for ingest-tweet?

Key use cases include: Caso de uso: Applying Extract the full text of an X/Twitter post, Caso de uso: Applying Parse the URL to extract username and tweet ID:, Caso de uso: Applying Pattern: https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}.

Which IDEs are compatible with ingest-tweet?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for ingest-tweet?

Limitacion: None — uses only curl.. Limitacion: Requires repository-specific context from the skill documentation. Limitacion: Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add RonanCodes/llm-wiki/ingest-tweet. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use ingest-tweet immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ingest-tweet

# Ingest Tweet Extract the full text of an X/Twitter post. It covers ai-tools, claude-code, karpathy workflows. This AI agent skill supports Claude Code

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Ingest Tweet

Extract the full text of an X/Twitter post.

Extraction Method

  1. Parse the URL to extract username and tweet ID:

    • Pattern: https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}
    • Strip query parameters (?s=46, ?t=...)
  2. Fetch via FXTwitter API (free, no auth, returns full text including long "note tweets"):

bash
1curl -s "https://api.fxtwitter.com/{user}/status/{id}"
  1. Parse JSON response:
    • tweet.text — full tweet text (with expanded URLs, not t.co links)
    • tweet.author.name / tweet.author.screen_name — author
    • tweet.created_at — date
    • tweet.likes, tweet.retweets, tweet.replies — engagement
    • tweet.quote — quoted tweet (if present)
    • tweet.media — images/videos (if present)

Post-Extraction

  • Save to vault's raw/<author>-tweet-<id>.md with YAML header:
yaml
1--- 2source-url: <tweet-url> 3title: "<author> tweet on <topic>" 4author: "<name> (@<screen_name>)" 5date-fetched: <today> 6source-type: tweet 7---
  • Include quoted tweet text if present
  • Note engagement stats in the source-note

Fallback

If FXTwitter fails, use oEmbed (truncates long tweets):

bash
1curl -s "https://publish.x.com/oembed?url=<original-url>"

Dependencies

None — uses only curl.

See also

  • ronan-skills/x-scan — generic sibling for browsing tweets (URL, user timeline, topic search) without vault persistence. Use this skill when you want to keep the content.

Habilidades relacionadas

Looking for an alternative to ingest-tweet or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador