Hyperliquid Analyzer
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to be a straightforward Hyperliquid market-data helper, with only disclosed external API calls and optional wallet/API configuration to use carefully.
Before installing, confirm you are comfortable with the skill querying Hyperliquid over the network. Basic price checks do not require an API key; if you enable portfolio or authenticated features, provide only the minimum necessary wallet address or read-only scoped API key.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The agent may make network requests to Hyperliquid to retrieve market prices and related data.
The skill instructs use of curl and jq to query an external Hyperliquid API. This is expected for a market-data analyzer and is clearly disclosed.
curl -s https://api.hyperliquid.xyz/info -X POST ... -d '{"type": "allMids"}' | jq '{BTC: .BTC, ETH: .ETH, SOL: .SOL}'Use the skill only when you want Hyperliquid market data queried, and verify that the endpoint and requested data match your intent.
Providing a wallet address may reveal portfolio information, and providing an API key may grant whatever access that key allows.
The skill may use a wallet address for portfolio tracking and an API key for authenticated requests. This is purpose-aligned, but it involves account-related identifiers or credentials.
Optional environment variables: - `HYPERLIQUID_WALLET_ADDRESS`: Your wallet for portfolio tracking - `HYPERLIQUID_API_KEY`: API key for authenticated requests
Use only a wallet address or narrowly scoped/read-only API key when possible, and do not provide private keys or overly privileged credentials.
