TopRank Skills

Home / Claw Skills / Autres / x-reader
Official OpenClaw rules 15%

x-reader

Read X (Twitter) posts without official API. Supports both Nitter (free) and RapidAPI (detailed) methods.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 x-reader 技能。 若已安装,则直接安装 x-reader 技能。

Overview

Skill Key
dkimiscoding/x-reader-skill
Author
Dohoon Kim
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/dkimiscoding/x-reader-skill
Latest Commit SHA
94b7ed85be777d0d68f78b2888137168a9648d50

Extracted Content

SKILL.md excerpt

# X-Reader

Read X (Twitter) posts without official API key.

## Features

- **Nitter Mode** (Default): Free, no API key required
- **RapidAPI Mode**: Detailed tweet info with API key
- Simple CLI interface
- JSON output for easy integration

## Usage

### Basic (Nitter - Free)

```bash
python3 x-reader.py "https://x.com/username/status/1234567890"
```

### Advanced (RapidAPI - Detailed)

```bash
export RAPIDAPI_KEY="your_rapidapi_key"
python3 x-reader.py "https://x.com/username/status/1234567890"
```

## Output Format

```json
{
  "id": "1234567890",
  "text": "Tweet content...",
  "author": "Display Name",
  "username": "username",
  "created_at": "2024-01-01T00:00:00.000Z",
  "likes": 100,
  "retweets": 50,
  "replies": 25,
  "url": "https://x.com/username/status/1234567890"
}
```

## Notes

- Nitter mode may have rate limits
- RapidAPI free tier: 100 requests/month
- For production use, consider RapidAPI paid tier

Related Claw Skills