一个用于 Twitter/X 的 CLI — 在终端中显示 Feed、书签和用户时间线
A terminal-first CLI for Twitter/X: read timelines, bookmarks, and user profiles without API keys.
Read:
for-you and following feedsshow <N> to open tweet #N from the last list output--full-text: disable tweet text truncation in rich table outputAI Agent Tip: Prefer
--yamlfor structured output unless a strict JSON parser is required. Non-TTY stdout defaults to YAML automatically. Use--maxto limit results.
Write:
favorite/unfavorite kept as compatibility aliases)--json / --yaml output nowAuth & Anti-Detection:
curl_cffi with dynamic Chrome version matchingx-client-transaction-id header generationTWITTER_PROXY environment variable# Recommended: uv tool (fast, isolated)
uv tool install twitter-cli
# Alternative: pipx
pipx install twitter-cli
Upgrade to the latest version:
uv tool upgrade twitter-cli
# Or: pipx upgrade twitter-cli
Tip: Upgrade regularly to avoid unexpected errors from outdated API handling.
Install from source:
git clone [email protected]:jackwener/twitter-cli.git
cd twitter-cli
uv sync
# Fetch home timeline (For You)
twitter feed
# Fetch Following timeline
twitter feed -t following
# Enable ranking filter explicitly
twitter feed --filter
…
twitter-cli uses this auth priority:
TWITTER_AUTH_TOKEN + TWITTER_CT0Browser extraction is recommended — it forwards ALL Twitter cookies (not just auth_token + ct0) and aligns request headers with your local runtime, which is closer to normal browser traffic than minimal cookie auth.
Chrome multi-profile: All Chrome profiles are scanned automatically. To specify a profile:
TWITTER_CHROME_PROFILE="Profile 2" twitter feed
Browser priority: If you have multiple browsers, set TWITTER_BROWSER to try a specific browser first:
TWITTER_BROWSER=chrome twitter feed # Supported: arc, chrome, edge, firefox, brave
After loading cookies, the CLI performs lightweight verification. Commands that require account access fail fast on clear auth errors (401/403).
Set TWITTER_PROXY to route all requests through a proxy:
# HTTP proxy
export TWITTER_PROXY=http://127.0.0.1:7890
# SOCKS5 proxy
export TWITTER_PROXY=socks5://127.0.0.1:1080
Using a proxy can help reduce IP-based rate limiting risks.
Create config.yaml in your working directory:
fetch:
count: 50
filter:
mode: "topN" # "topN" | "score" | "all"
topN: 20
minScore: 50
lang: []
excludeRetweets: false
weights:
likes: 1.0
retweets: 3.0
replies: 2.0
bookmarks: 5.0
views_log: 0.5
rateLimit:
requestDelay: 2.5 # base delay between requests (randomized ×0.7–1.5)
maxRetries: 3 # retry count on rate limit (429)
retryBaseDelay: 5.0 # base delay for exponential backoff
maxCount: 200 # hard cap on fetched items
Fetch behavior:
fetch.count is the default item count for read commands when --max is omitted--full-text to show full body text in list viewsFilter behavior:
--filter is passed--filter: tweets are scored/sorted using config.filterScoring formula:
score = likes_w * likes
+ retweets_w * retweets
+ replies_w * replies
+ bookmarks_w * bookmarks
+ views_log_w * log10(max(views, 1))
Mode behavior:
mode: "topN" keeps the highest topN tweets by scoremode: "score" keeps tweets where score >= minScoremode: "all" returns all tweets after sorting by scoreTWITTER_PROXY to avoid direct IP exposure--max 20 instead of --max 500--full-text when reading long posts in terminal tables--yaml or --json for scripts and agent pipelines-c / --compact when token efficiency matters more than completenessNo Twitter cookies found
x.com in a supported browser (Arc/Chrome/Edge/Firefox/Brave).TWITTER_AUTH_TOKEN and TWITTER_CT0 manually.-v to see browser extraction diagnostics.Cookie expired or invalid (HTTP 401/403)
x.com and retry.Unable to get key for cookie decryption (macOS Keychain)
security unlock-keychain ~/Library/Keychains/login.keychain-db
Twitter API error 404
Invalid tweet JSON file
twitter feed --json > tweets.json.Windows: no output captured by pipe/subprocess (AI agent integration)
"windowsEnableConpty": false in your terminal settings.UnicodeEncodeError: 'gbk'. Git Bash handles UTF-8 natively.subprocess.run(capture_output=True) and file redirection (> file 2>&1) work correctly regardless of ConPTY.Structured error codes commonly include not_authenticated, not_found, invalid_input, rate_limited, and api_error.
# Install dev dependencies
uv sync --extra dev
# Lint + tests
uv run ruff check .
uv run pytest -q
Current CI validates the project on Python 3.8, 3.10, and 3.12.
twitter_cli/
├── __init__.py
├── cli.py
├── client.py
├── graphql.py # GraphQL query IDs, URL building, JS bundle scanning
├── parser.py # Tweet, User, Media parsing logic
├── auth.py
├── config.py
├── constants.py
├── exceptions.py
├── filter.py
├── formatter.py
├── output.py
├── serialization.py
└── models.py
twitter-cli ships with a SKILL.md so AI agents can execute common X/Twitter workflows.
npx skills add jackwener/twitter-cli
| Flag | Description |
|---|---|
-g |
Install globally (user-level, shared across projects) |
-a claude-code |
Target a specific agent |
-y |
Non-interactive mode |
mkdir -p .agents/skills
git clone [email protected]:jackwener/twitter-cli.git .agents/skills/twitter-cli
⚠️ ClawHub install method is deprecated and no longer supported. Use Skills CLI or Manual Install above.
读取:
for-you 和 followingshow <N> 可直接打开上次列表里的第 N 条推文--full-text:在 rich table 输出里关闭推文正文截断AI Agent 提示: 需要结构化输出时优先使用
--yaml,除非下游必须是 JSON。stdout 不是 TTY 时默认输出 YAML。用--max控制返回数量。
写入:
favorite/unfavorite 兼容别名)--json / --yaml认证与反风控:
curl_cffi 动态匹配 Chrome 版本x-client-transaction-id 请求头生成TWITTER_PROXY 环境变量# 推荐:uv tool
uv tool install twitter-cli
升级到最新版本:
uv tool upgrade twitter-cli
# 或:pipx upgrade twitter-cli
提示: 建议定期升级,避免因版本过旧导致的 API 调用异常。
…
认证优先级:
TWITTER_AUTH_TOKEN + TWITTER_CT0推荐使用浏览器提取方式,会转发所有 Twitter Cookie,并按本机运行环境生成语言和平台请求头;它比仅发送 auth_token + ct0 更接近普通浏览器流量,但不等于完整浏览器自动化。
Chrome 多 Profile 支持:会自动遍历所有 Chrome profile。也可以通过环境变量指定:
TWITTER_CHROME_PROFILE="Profile 2" twitter feed
浏览器优先级:如果有多个浏览器,可通过 TWITTER_BROWSER 指定优先尝试的浏览器:
TWITTER_BROWSER=chrome twitter feed # 支持: arc, chrome, edge, firefox, brave
设置 TWITTER_PROXY 环境变量即可:
export TWITTER_PROXY=http://127.0.0.1:7890
# 或 SOCKS5
export TWITTER_PROXY=socks5://127.0.0.1:1080
使用代理可以降低 IP 维度的风控风险。
未传 --max 时,所有读取命令默认使用 config.yaml 里的 fetch.count。
rich table 输出默认会截断较长正文;如果需要在列表视图中查看完整正文,可加 --full-text。
只有在传入 --filter 时才会启用筛选评分;默认不筛选。
评分公式:
score = likes_w * likes
+ retweets_w * retweets
+ replies_w * replies
+ bookmarks_w * bookmarks
+ views_log_w * log10(max(views, 1))
模式说明:
mode: "topN":按分数排序后保留前 topN 条mode: "score":仅保留 score >= minScore 的推文mode: "all":按分数排序后全部保留No Twitter cookies found:请先登录 x.com,并确认浏览器为 Arc/Chrome/Edge/Firefox/Brave 之一,或手动设置环境变量。-v 打开诊断日志。Cookie expired or invalid:Cookie 过期,重新登录后重试。Unable to get key for cookie decryption(macOS Keychain 问题):security unlock-keychain ~/Library/Keychains/login.keychain-db
暂无开放 Issues,或尚未同步最近议题。