From hyperliquid-computer
This skill should be used when the user wants to trade on Hyperliquid — check balances, positions, prices, funding rates, order books, place/cancel orders, set leverage, or review trade history.
npx claudepluginhub akegaviar/tabtabtabtabtab --plugin hyperliquid-computerThis skill uses the workspace's default tool permissions.
Requires: `hl` CLI on PATH (`uv tool install hyperliquid-cli`). Auth via `HL_PRIVATE_KEY` env var (API wallet — can trade, cannot withdraw). Read commands work without auth using `--address 0x...`.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
Requires: hl CLI on PATH (uv tool install hyperliquid-cli). Auth via HL_PRIVATE_KEY env var (API wallet — can trade, cannot withdraw). Read commands work without auth using --address 0x....
hl status — full overview (balance + positions + orders)hl balance — account value, margin used, withdrawablehl positions — open positions with P&L, leverage, liquidation pricehl positions BTC — filter to one assethl orders — open/pending ordershl prices BTC ETH — mid, mark, oracle, 24h changehl prices — all mid priceshl assets — all tradeable perps with volume, OI, fundinghl assets TSLA — search by name (auto-resolves HIP-3 names)hl assets --sort volume — sort by volume, oi, or namehl book BTC --depth 10 — order book levelshl funding BTC — current funding ratehl funding BTC --history --limit 24 — historical fundinghl candles BTC 1h --limit 50 — OHLCV (intervals: 1m 5m 15m 1h 4h 1d 1w)hl order BTC buy 0.1 95000 — limit buyhl order BTC buy 0.1 --market — market buyhl order ETH sell 1.5 --market --reduce-only — close positionhl order BTC buy 0.1 95000 --tp 100000 --sl 90000 — limit with TP/SLbuy/long, sell/shortTSLA to xyz:TSLA)hl cancel 77738308 — cancel by order IDhl cancel BTC 77738308 — cancel with explicit asset (faster)hl cancel-all — cancel all open ordershl cancel-all BTC — cancel only BTC ordershl leverage BTC 10 — set cross leveragehl leverage NVDA 5 --isolated — set isolated leveragehl fills — last 20 fills from exchange APIhl fills BTC --limit 50 — filter by assethl fills --start 2026-03-10 --end 2026-03-11 — time rangehl trades — last 20 from local log (data/trades.jsonl)All output is JSON to stdout. Use --fields to project specific fields. Global flags (--testnet, --fields, --verbose) go before the subcommand. Exit code 5 means order rejected. Every hl order logs to data/trades.jsonl.