Orderly
A Rust WebSocket client that connects to multiple crypto exchanges and publishes a merged live order book through gRPC stream
Install / Use
npx skills add brucify/orderlyInstalls into whichever agent you are using.
README
orderly
A Rust CLI WebSocket client for crypto exchanges. Connects to the WebSocket feeds of multiple exchanges. Subscribes to the live order book for the given currency pair. Publishes a merged order book as a gRPC stream.
<img src="https://user-images.githubusercontent.com/1086619/170038125-8a4ed933-9cec-4a7a-9085-2dd806ca0307.gif" />Currently supports:
- Bitstamp WebSocket:
wss://ws.bitstamp.net - Binance WebSocket:
wss://stream.binance.com:9443/ws - Kraken WebSocket:
wss://ws.kraken.com - Coinbase WebSocket:
wss://ws-feed.exchange.coinbase.com
USAGE:
orderly-server [OPTIONS]
OPTIONS:
-h, --help Print help information
--no-binance (Optional) Don't show Binance in gRPC stream. Default: false
--no-bitstamp (Optional) Don't show Bitstamp in gRPC stream. Default: false
--no-kraken (Optional) Don't show Kraken in gRPC stream. Default: false
--no-coinbase (Optional) Don't show Coinbase in gRPC stream. Default: false
-p, --port <PORT> (Optional) Port number on which the the gRPC server will be hosted.
Default: 50051
-s, --symbol <SYMBOL> (Optional) Currency pair to subscribe to. Default: ETH/BTC
Run gRPC server:
cargo run --bin orderly-server
or with logs and options:
env RUST_LOG=info cargo run --bin orderly-server -- --symbol ETH/BTC --port 50051
Exclude certain exchanges:
cargo run --bin orderly-server -- --no-binance --no-bitstamp
Client
Connects to the gRPC server and streams the orderbook summary.
<img src="https://user-images.githubusercontent.com/1086619/169551698-3d59df5d-73db-47a3-a84d-cb0d2d0dd678.jpg" width="700"/>USAGE:
orderly-client [OPTIONS]
OPTIONS:
-h, --help Print help information
-p, --port <PORT> (Optional) Port number of the gRPC server. Default: 50051
Run gRPC client:
cargo run --bin orderly-client
or with logs and options:
env RUST_LOG=info cargo run --bin orderly-client -- --port 50051
Related Skills
clawhub
385.6kSearch ClawHub for skills when a requested capability is not already available; install, verify, update, uninstall, publish, or sync skills.
coding-agent
385.6kDelegate coding work to Codex, Claude Code, or OpenCode as background workers; not simple edits or read-only code lookup.
node-connect
385.6kDiagnose OpenClaw Android, iOS, or macOS node pairing, QR/setup code, route, auth, and connection failures.
taskflow
385.6kCoordinate multi-step detached tasks as one durable TaskFlow job with owner context, state, waits, and child tasks.
