docs(skill_en): replace stale bird CLI with twitter#287
Open
yagyesh-twofourlabs wants to merge 1 commit intoPanniantong:mainfrom
Open
docs(skill_en): replace stale bird CLI with twitter#287yagyesh-twofourlabs wants to merge 1 commit intoPanniantong:mainfrom
bird CLI with twitter#287yagyesh-twofourlabs wants to merge 1 commit intoPanniantong:mainfrom
Conversation
The English SKILL.md still documented a `bird` binary that no longer exists on user systems — invocations like `bird read <url>` fail with `command not found`. The Chinese SKILL.md was already updated to use `twitter` (twitter-cli, the actual installed binary via pipx). This brings the English version in line: - `bird search` → `twitter -c search` - `bird read` → `twitter -c tweet` - `bird user-tweets` → `twitter -c user-posts` - adds `article` and `feed` examples - adds a note pointing users to `pipx upgrade twitter-cli` if search 404s No code changes — docs only.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
SKILL.md(agent_reach/skill/SKILL_en.md) still documented abirdCLI for Twitter/X reads. That binary isn't shipped/installed by agent-reach anymore — agents callingbird read <url>hitcommand not foundand fall back to slower paths (Jina Reader, browser automation).SKILL.mdwas already migrated totwitter(twitter-cli). This PR brings the English doc in line.Changes
bird search→twitter -c searchbird read→twitter -c tweetbird user-tweets→twitter -c user-poststwitter -c articleandtwitter -c feedexamplespipx upgrade twitter-cliifsearchreturns 404 (matches existing guidance inreferences/social.md)Docs-only; no code changes.
Test plan
twitter -c tweet <x.com/status URL>returns the tweet + replies as JSON on a fresh install (twitter-cli 0.8.5, env from~/.agent-reach/env.sh).references/social.mdalready uses these exact subcommand names — this aligns the top-level English skill with the reference doc.🤖 Generated with Claude Code