skills$openclaw/xfetch
lxgicstudios3.1k

by lxgicstudios

xfetch – OpenClaw Skill

xfetch is an OpenClaw Skills integration for coding workflows. Fast X/Twitter CLI scraper. Use when you need to fetch tweets, user profiles, search results, timelines, followers, or any X/Twitter data. No API keys required - uses cookie-based auth.

3.1k stars2.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namexfetch
descriptionFast X/Twitter CLI scraper. Use when you need to fetch tweets, user profiles, search results, timelines, followers, or any X/Twitter data. No API keys required - uses cookie-based auth. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/xfetch
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/xfetch
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains xfetch in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
270 B
SKILL.md
3.3 KB
SKILL.md

name: xfetch description: Fast X/Twitter CLI scraper. Use when you need to fetch tweets, user profiles, search results, timelines, followers, or any X/Twitter data. No API keys required - uses cookie-based auth. metadata: {"clawdbot":{"emoji":"🐦","requires":{"bins":["xfetch"]},"install":[{"id":"npm","kind":"node","package":"xfetch-cli","bins":["xfetch"],"label":"Install xfetch (npm)"}]}}

xfetch 🐦

Fast X/Twitter CLI scraper. No API keys. Just cookies and go.

Install

npm install -g xfetch-cli

Authentication

xfetch requires Twitter session cookies (auth_token and ct0).

Set tokens directly:

xfetch auth set --auth-token <token> --ct0 <token>

Check auth status:

xfetch auth check

Get cookies from browser: Open X.com in Chrome DevTools → Application → Cookies → Copy auth_token and ct0 values.

Commands

User Data

xfetch user @handle              # Profile by handle
xfetch user 12345678             # Profile by ID
xfetch followers @handle -n 100  # Followers list
xfetch following @handle -n 100  # Following list
xfetch tweets @handle -n 50      # User timeline
xfetch tweet <url-or-id>         # Single tweet
xfetch thread <url-or-id>        # Full conversation thread

Search

xfetch search "query" -n 100
xfetch search "from:handle since:2024-01-01"
xfetch search "query" --type latest   # top|latest|people|photos|videos

Timelines

xfetch home                      # Algorithmic home
xfetch home --following          # Chronological
xfetch bookmarks -n 50           # Your bookmarks
xfetch likes @handle -n 50       # User's likes

Output Formats

xfetch tweets @handle --format json   # Default, pretty
xfetch tweets @handle --format jsonl  # Line-delimited JSON
xfetch tweets @handle --json          # Shorthand for JSON
xfetch tweets @handle --plain         # No formatting

Pagination

xfetch tweets @handle --all              # All pages
xfetch tweets @handle --max-pages 10     # Limit pages
xfetch tweets @handle --cursor <cursor>  # Resume from cursor
xfetch tweets @handle --delay 1000       # Delay between pages (ms)

Query ID Management

Twitter changes GraphQL query IDs frequently. xfetch auto-refreshes them.

xfetch query-ids --list      # Show cached IDs
xfetch query-ids --refresh   # Fetch latest from X

Global Options

--auth-token <token>   # Set auth_token directly
--ct0 <token>          # Set ct0 directly  
--format <format>      # json|jsonl|csv|sqlite
--timeout <ms>         # Request timeout (default: 30000)
--delay <ms>           # Delay between requests (default: 500)
--proxy <url>          # Proxy URL

Examples

Get recent tweets from a user:

xfetch tweets @elonmusk -n 20 --format jsonl

Search for AI content:

xfetch search "AI agents" --type latest -n 50

Get thread/conversation:

xfetch thread https://x.com/user/status/123456789

Export followers to JSON:

xfetch followers @handle --all > followers.json

Rate Limits

xfetch tracks rate limits per endpoint and automatically backs off when approaching limits. For high-volume scraping, use --delay to add time between requests.

Source

GitHub: https://github.com/LXGIC-Studios/xfetch

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install xfetch?

Run openclaw add @lxgicstudios/xfetch in your terminal. This installs xfetch into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/xfetch. Review commits and README documentation before installing.