# Send Hyperliquid to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hyperliquid",
    "name": "Hyperliquid",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/k0nkupa/hyperliquid",
    "canonicalUrl": "https://clawhub.ai/k0nkupa/hyperliquid",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hyperliquid",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hyperliquid",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/hyperliquid_config.mjs",
      "scripts/hyperliquid_chat.mjs",
      "scripts/hyperliquid_api.mjs",
      "references/hyperliquid-api.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hyperliquid",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T06:26:16.262Z",
      "expiresAt": "2026-05-11T06:26:16.262Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hyperliquid",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hyperliquid",
        "contentDisposition": "attachment; filename=\"hyperliquid-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hyperliquid"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/hyperliquid"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hyperliquid",
    "downloadUrl": "https://openagent3.xyz/downloads/hyperliquid",
    "agentUrl": "https://openagent3.xyz/skills/hyperliquid/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hyperliquid/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hyperliquid/agent.md"
  }
}
```
## Documentation

### Hyperliquid (read-only)

Implement read-only market-data queries for Hyperliquid using the Info HTTP endpoint:

POST https://api.hyperliquid.xyz/info
Content-Type: application/json

Prefer HTTP snapshot flows for v1. WebSocket streaming can be added later.

### Supported user input styles

Treat these as equivalent:

Natural language: “Hyperliquid quote BTC”, “top movers 24h”, “book ETH”, “1h candles for SOL last 48”
Terminal style: hl quote BTC, hl movers --top 10 --window 24h
Slash style: /hl quote BTC, /hl overview

Parse /hl and hl first (deterministic). If no prefix, fall back to intent extraction from natural language.

### Canonical commands (v1)

Market data:

quote <coin>: show mark/mid/oracle, 24h change (prevDayPx), 24h notional volume, open interest (perps), funding (perps), premium, impact prices
movers [--window 24h] [--top N]: rank by 24h % change (markPx vs prevDayPx)
funding-top|funding-bottom [--n N]: rank by funding (perps only)
book <coin>: show top 20 levels per side (and spread)
candles <coin> --interval <1m|...|1M> (--last N | --start <ms> --end <ms>)
overview: concise dashboard: top movers, top funding, top OI, top volume

Account (read-only):

positions <HL:0x..|0x..|label>: show perp positions + margin summary
balances <HL:0x..|0x..|label>: show spot balances
orders <HL:0x..|0x..|label>: show open orders
fills <HL:0x..|0x..|label> [--n N]: show recent fills

Saved account aliases (stored locally in ~/.clawdbot/hyperliquid/config.json):

account list
account add "sub account 1" HL:0x... [--default]
account remove "sub account 1"
account default "sub account 1"

Natural language equivalents should work too:

“store this address HL:0x... as sub account 1”
“show me positions of sub account 1”

### Data sources

Perpetuals:

metaAndAssetCtxs (preferred): universe + asset contexts for all perps
l2Book
candleSnapshot

Spot (optional later):

spotMetaAndAssetCtxs, spotMeta

See references/hyperliquid-api.md for request bodies and field meanings.

### Implementation guidance

Use the bundled scripts:

scripts/hyperliquid_api.mjs: thin HTTP client + helpers (safe defaults, timeouts)
scripts/hyperliquid_chat.mjs: parses user text into an intent + args, calls API helpers, and prints a compact chat-friendly response

When responding:

Prefer short bullet output.
Show units and timeframes.
Handle missing fields gracefully (e.g., midPx sometimes null).

### Quick manual test

Run locally:

node skills/hyperliquid/scripts/hyperliquid_chat.mjs "hl quote BTC"
node skills/hyperliquid/scripts/hyperliquid_chat.mjs "/hl movers --top 5"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: k0nkupa
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T06:26:16.262Z
- Expires at: 2026-05-11T06:26:16.262Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hyperliquid)
- [Send to Agent page](https://openagent3.xyz/skills/hyperliquid/agent)
- [JSON manifest](https://openagent3.xyz/skills/hyperliquid/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hyperliquid/agent.md)
- [Download page](https://openagent3.xyz/downloads/hyperliquid)