hyperliquid-api-docs
2
总安装量
2
周安装量
#65978
全站排名
安装命令
npx skills add https://github.com/cezar-r/hyperliquid-skills --skill hyperliquid-api-docs
Agent 安装分布
amp
2
gemini-cli
2
claude-code
2
github-copilot
2
codex
2
kimi-cli
2
Skill 文档
Hyperliquid API Documentation Fetcher
This skill fetches the official Hyperliquid API documentation to ensure accurate, up-to-date answers.
URL Mapping
Based on the query topic, fetch the appropriate documentation:
Instructions
- Identify the topic(s) from the user’s question
- Fetch only the relevant URL(s) using WebFetch – do NOT fetch all docs
- Extract the specific information needed to answer the question
- Cite the source when providing the answer
Examples
User asks about order types or placing orders:
- Fetch: Exchange endpoint URL
User asks about WebSocket subscriptions:
- Fetch: WebSocket subscriptions URL (and possibly general WebSocket URL if needed)
User asks about getting market data:
- Fetch: Info endpoint – perpetuals (for perps) or Info endpoint – spot (for spot)
User asks about authentication or signing:
- Fetch: Signing URL
Important
- Only fetch what’s needed – don’t fetch multiple docs unless the question spans topics
- If the question is ambiguous, start with the most likely doc and fetch more if needed
- Always prefer official documentation over assumptions