docs: rename rt/unrt → retweet/unretweet, update SKILL.md + README.md

- Rename rt/unrt commands to retweet/unretweet for clarity
- SKILL.md: fix Python version, add --output/--filter examples, safety notes
- README.md: dynamic Chrome fingerprint, write delays, --output examples
- Sync Chinese section with English changes
This commit is contained in:
jackwener
2026-03-09 21:20:05 +08:00
parent 8313a7012f
commit bbe0bc8de3
5 changed files with 25 additions and 7 deletions

View File

@@ -486,7 +486,7 @@ def unlike(tweet_id):
@cli.command()
@click.argument("tweet_id")
def rt(tweet_id):
def retweet(tweet_id):
# type: (str,) -> None
"""Retweet a tweet. TWEET_ID is the numeric tweet ID."""
_write_action("🔄", "Retweeting", "retweet", tweet_id)
@@ -494,7 +494,7 @@ def rt(tweet_id):
@cli.command()
@click.argument("tweet_id")
def unrt(tweet_id):
def unretweet(tweet_id):
# type: (str,) -> None
"""Undo a retweet. TWEET_ID is the numeric tweet ID."""
_write_action("🔄", "Undoing retweet", "unretweet", tweet_id)