@hafez/x-cli
v1.1.1
Published
CLI tool for viewing X (Twitter) posts and replies
Readme
@hafez/x-cli
View X (Twitter) posts and their replies right from your terminal
Features
- Guest Mode - View public tweets without authentication
- Thread Context - See parent tweets and full reply chains (requires auth)
- Dual Output - JSON for scripting, pretty-print for humans
- Shell Completions - First-class support for bash, zsh, and fish
Quick Start
npm install -g @hafez/x-cli# View any public tweet (no login required)
x tweet https://x.com/Google/status/2001322381533409733
# Or just use the ID
x tweet 2001322381533409733
# Pretty output for readability
x tweet 2001322381533409733 --prettyAuthentication (Optional)
Guest mode works for public tweets but won't show replies. For full access:
# See setup instructions
x login
# Check auth status
x whoami
# Clear credentials
x logoutManual Setup
- Log into x.com
- Open DevTools (
F12) → Application → Cookies → x.com - Copy
auth_tokenandct0values - Create config:
mkdir -p ~/.config/x-cli
cat > ~/.config/x-cli/auth.json << EOF
{
"authToken": "YOUR_AUTH_TOKEN",
"csrfToken": "YOUR_CT0_TOKEN"
}
EOFOutput Formats
JSON (default)
Perfect for piping to jq or other tools:
{
"mainTweet": {
"id": "1234567890",
"text": "Hello world!",
"author": { "name": "User", "username": "user" },
"metrics": { "likes": 10, "retweets": 5, "replies": 2 }
},
"parentTweets": [],
"replies": [...]
}Pretty (--pretty)
Human-friendly terminal output:
User @username 2h ago
Hello world!
2 replies 5 retweets 10 likes 1.2K views
--- Replies (2) ---
Reply Author @reply_user 1h ago
Nice post!Shell Completions
Auto-install for your shell:
x setupOr install manually:
# Bash
x completion bash >> ~/.bashrc
# Zsh
mkdir -p ~/.zsh/completions
x completion zsh > ~/.zsh/completions/_x
# Add to ~/.zshrc: fpath=(~/.zsh/completions $fpath)
# Fish
x completion fish > ~/.config/fish/completions/x.fishCommands
| Command | Description |
|---------|-------------|
| x tweet <url> | View a tweet (guest mode if not logged in) |
| x login | Show authentication setup instructions |
| x logout | Clear stored credentials |
| x whoami | Show current auth status |
| x setup | Install shell completions |
| x completion <shell> | Output completion script |
Development
git clone https://github.com/AbdelrahmanHafez/x-cli.git
cd x-cli
npm install
npm run build
npm linkLicense
MIT
