kite is a universal webhook adapter CLI. It streams, proxies, and replays webhook events through the Kite delivery network — turning any inbound webhook source (GitHub, Stripe, custom providers) into a reliable, replayable event stream you can wire into local dev environments, scripts, or long-running consumers.
brew tap alpha-centauri-cyberspace/kite
brew install kitecargo install kite-clidocker pull ghcr.io/alpha-centauri-cyberspace/kite-cli:latestgit clone https://github.com/Alpha-Centauri-Cyberspace/kite-cli
cd kite-cli
cargo build --release
./target/release/kite --helpkite login # device-auth flow
kite stream # follow events for your team
kite proxy http://localhost:3000/webhooks
kite run kite.json # manifest-driven routingFull command reference: docs/COMMANDS.md.
src/ Rust sources for the `kite` binary
tests/ Integration tests
docs/ Generated command reference and user docs
scripts/ Helper scripts (doc generation, etc.)
Wire format lives in the kite-protocol crate, published to crates.io. The CLI pins a compatible minor version — breaking protocol changes require a coordinated release.
See CONTRIBUTING.md.
MIT — see LICENSE.