# X Monitor

> Monitor X/Twitter tweet replies and detect technical questions. Uses Camofox + Nitter to fetch reply threads without login. Identifies questions in replies for AI-assisted answer drafting.

- Skill: `ythx-101/x-monitor` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add ythx-101/x-monitor`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ythx-101/x-monitor/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ythx-101 (https://skillmd.com/u/ythx-101)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ythx-101/x-monitor

---


# X Monitor

Monitor tweet replies and detect questions for AI-assisted answering.

## When to Use

- User says "monitor this tweet", "watch replies", "check comments"
- User shares a tweet link and wants to track responses
- User needs help answering technical questions in their tweet replies

## When NOT to Use

- Just fetching a single tweet's content → use x-tweet-fetcher
- Posting or replying on X → not supported (read-only)
- Searching X for topics → use x-research

## Usage

```bash
# Fetch all replies on a tweet
python3 scripts/monitor.py --url "https://x.com/user/status/123"

# Check for new replies since last check
python3 scripts/monitor.py --url "https://x.com/user/status/123" --watch

# Pretty output
python3 scripts/monitor.py --url "https://x.com/user/status/123" --pretty
```

## Requirements

- Camofox browser running on localhost:9377
- Working Nitter instance (default: nitter.net)

## File Structure

```
x-monitor/
├── README.md
├── SKILL.md          (this file)
├── scripts/
│   └── monitor.py    (main script)
└── data/
    └── state.json    (tracks last check per tweet)
```

