hyperliquid-reader

Reads Hyperliquid perp and spot market data via opencli and the public info API.

3.3k|382|Updated Mar 13, 2026
One-click install
npx skills add https://github.com/himself65/finance-skills --skill hyperliquid-reader-himself65
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: hyperliquid-reader
Source: https://github.com/himself65/finance-skills/tree/main/plugins/data-providers/skills/hyperliquid-reader
Command: npx skills add https://github.com/himself65/finance-skills --skill hyperliquid-reader-himself65

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @jackwener/opencli, and includes references (resource) components.

What problem does it solve? Getting Hyperliquid market data normally requires writing API clients or scraping the app. This Skill gives an agent direct read access to Hyperliquid's public info API through opencli commands, returning normalized tables of prices, funding, open interest, order books, and candles with no API key or wallet. ## Core Features & Use Cases - Perp and spot market tables: mark/oracle/mid prices, 24h change, hourly funding plus annualized APR, open interest, and volume for every market. - Order book and candles: L2 snapshots with configurable depth and OHLCV history across intervals from 1m to 1M. - Cross-venue funding compare: annualized funding for Hyperliquid vs Binance vs Bybit with spreads, surfacing funding-arbitrage dislocations. - Use Case: Ask which perps have the widest funding dislocation between Hyperliquid and Binance, then drill into one coin's order book depth and open interest to judge whether the spread is tradeable. ## Quick Start Ask the agent to show Hyperliquid funding rates and open interest for BTC perp using the hyperliquid-reader skill.

Frequently Asked Questions about hyperliquid-reader

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check Hyperliquid funding rates for a perp?▼

Run opencli hyperliquid markets --coin BTC to get the hourly funding rate and annualized APR alongside mark price and open interest. For historical rates, use opencli hyperliquid funding-history --coin BTC --hours 72.

How to compare Hyperliquid funding vs Binance and Bybit?▼

Use opencli hyperliquid funding-compare, which annualizes each venue's predicted funding and reports hlVsBinancePct and hlVsBybitPct spreads. The default sort ranks coins by absolute spread so the widest dislocations appear first.

Does the Hyperliquid reader require an API key or wallet?▼

No. All commands call Hyperliquid's public info endpoint, which is fully unauthenticated. The skill is read-only market data only and cannot read accounts, place orders, or move funds.

Can I get Hyperliquid OHLCV candles and order book data?▼

Yes. opencli hyperliquid candles --coin BTC --interval 4h returns OHLCV history for intervals from 1m to 1M, and opencli hyperliquid book --coin ETH --depth 10 returns an L2 order book snapshot with bids and asks.

Why does opencli report Unknown command: hyperliquid?▼

The hyperliquid adapter is a separate opencli plugin, not built in. Install it with opencli plugin install github:himself65/finance-skills/hyperliquid, which requires Node.js 24 or later.

Does this skill work on Claude.ai?▼

No. It works on Claude Code and other CLI-based agents on any OS with Node 24 or later. The Claude.ai sandbox restricts the network access that opencli needs to reach the Hyperliquid API.