docs(skill_en): replace stale bird commands with twitter-cli (#287)
All five commands verified against twitter-cli v0.8.5 (-c flag, search -n, tweet, article, user-posts, feed all exist; live-tested). Fixes #282.
This commit is contained in:
committed by
GitHub
parent
c2911cd4a2
commit
7e264cbde6
@@ -41,15 +41,18 @@ mcporter call 'exa.web_search_exa(query: "query", numResults: 5)'
|
|||||||
mcporter call 'exa.get_code_context_exa(query: "code question", tokensNum: 3000)'
|
mcporter call 'exa.get_code_context_exa(query: "code question", tokensNum: 3000)'
|
||||||
```
|
```
|
||||||
|
|
||||||
## Twitter/X (bird)
|
## Twitter/X (twitter-cli)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
bird search "query" -n 10 # search
|
twitter -c search "query" -n 10 # search (-c = compact JSON, LLM-friendly)
|
||||||
bird read URL_OR_ID # read tweet (supports /status/ and /article/ URLs)
|
twitter -c tweet URL_OR_ID # read tweet + replies (supports /status/ URLs)
|
||||||
bird user-tweets @username -n 20 # user timeline
|
twitter -c article URL_OR_ID # read a Twitter Article
|
||||||
bird thread URL_OR_ID # full thread
|
twitter -c user-posts @username -n 20 # user timeline
|
||||||
|
twitter -c feed -n 20 # home timeline
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> Binary is `twitter` (`pipx install twitter-cli`, ≥ 0.8.5). The `bird` name in older docs has been retired. If `search` returns 404, run `pipx upgrade twitter-cli`.
|
||||||
|
|
||||||
## YouTube (yt-dlp)
|
## YouTube (yt-dlp)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
Reference in New Issue
Block a user