What problem does it solve? Polling Hyperliquid's REST API for fills, order updates, and price movements is slow and rate-limited; this Skill provides read-only WebSocket subscriptions that stream mids, order books, trades, candles, and per-account events in real time. ## Core Features & Use Cases - Market Data Streams: Subscribe to allMids, l2Book order books, trades, candles, BBO, and asset context for any coin on mainnet or testnet. - Account Event Streams: Receive userFills, orderUpdates, userEvents, funding payments, and clearinghouse state for a given account address without any API key. - Supervised Watch Pattern: Run a background watch process that logs every message to a file, evaluates an alert condition, and posts a single alert with value, threshold, and UTC timestamp. - Use Case: You want to be notified the moment one of your desk's orders fills. Run the Python SDK example subscribing to userFills for your account address, log to watch/ws.log, and alert on each non-snapshot fill. ## Quick Start Ask the assistant to set up a WebSocket watch that subscribes to userFills and orderUpdates for your Hyperliquid account address on testnet and logs every event to a file.