Project

t

1.43
No release in over a year
A command-line power tool for Twitter.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 1.14
~> 3.0
~> 3.0
~> 1.1
~> 1.3
>= 0.2
~> 0.19
 Project Readme

x

A command-line interface for the X API.

Features

  • Full command tree with aliases and options
  • X API client library (x-api) for HTTP, auth, and retry primitives
  • OAuth 1.0a and OAuth 2.0 authentication
  • Automatic retry with backoff for transient API errors
  • V1.1 and V2 API support with automatic fallback
  • Streaming support for filtered and sampled streams
  • Column-aligned output formatting
  • YAML configuration file support
  • Bash completion support

Status

  • Command families: cli, delete, list, search, set, stream
  • Local account/profile commands: accounts, set active, delete account, version, ruler
  • Stream commands use persistent HTTP streaming:
    • stream all and stream matrix use OAuth2 sample stream
    • stream search, stream users, stream list, and stream timeline use v2 filtered stream rules + stream
  • X_STREAM_MAX_EVENTS can be set to limit emitted events (useful for tests/automation)
  • Default profile config is ~/.xrc. If ~/.xrc is missing, ~/.trc is used as a read fallback and migrated on write.

Development

cargo test
cargo run -- version
cargo run -- accounts --profile /path/to/.xrc

Releasing

Tagging a new v* release triggers GitHub Actions to build and publish binaries for:

  • Linux (x86_64-unknown-linux-gnu)
  • Linux ARM64 (aarch64-unknown-linux-gnu)
  • macOS Intel (x86_64-apple-darwin)
  • macOS Apple Silicon (aarch64-apple-darwin)
  • Windows (x86_64-pc-windows-msvc)
  • Windows ARM64 (aarch64-pc-windows-msvc)

Install cargo-release:

cargo install cargo-release --locked

Then tag and push the current Cargo.toml version:

cargo release-tag

Tag messages come from Cargo.toml release metadata (tag-message).