aicoin-hyperliquid

aicoin-hyperliquid is a skill for Claude Code from aicoincom/coinos-skills. It costs 236 tokens per session (2,917 once invoked), scanned A, original, MIT.

A tool for tracking large traders and perpetual-futures activity on Hyperliquid, a cryptocurrency trading platform. It uses AiCoin market data to show positions, trades, liquidations, open interest, funding, and related activity.

In plain words
What is it for?
Use it to inspect whale positions, recent large-trader actions, long and short direction, liquidations, open interest, taker flow, funding history, and Hyperliquid prices.
Why use it?
It brings several kinds of Hyperliquid market and large-trader information into one defined workflow. It also requires live script results instead of allowing made-up prices or positions.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; built for openclaw.

Part of the coinos-skills plugin — 6 skills shipped together

not rated 52repo 12d ago A scan Socket: passSnyk: warnSkillSpector: warn 236 tokens original MIT

Good fit Use it to inspect whale positions, recent large-trader actions, long and short direction, liquidations, open interest, taker flow, funding history, and Hyperliquid prices.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aicoincom/coinos-skills/aicoin-hyperliquid
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aicoincom/coinos-skills --skill aicoin-hyperliquid
Clone the repo
git clone --depth 1 https://github.com/aicoincom/coinos-skills

Made for: Claude Code.

Or install coinos-skills, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aicoin-hyperliquid

README.md
[![agentmods](https://agentmods.dev/badge/skills/aicoincom/coinos-skills/aicoin-hyperliquid/github.svg)](https://agentmods.dev/skills/aicoincom/coinos-skills/aicoin-hyperliquid)
Your own site
<a href="https://agentmods.dev/skills/aicoincom/coinos-skills/aicoin-hyperliquid"><img src="https://agentmods.dev/badge/skills/aicoincom/coinos-skills/aicoin-hyperliquid/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aicoin-hyperliquid

Your own site · 80×15
<a href="https://agentmods.dev/skills/aicoincom/coinos-skills/aicoin-hyperliquid"><img src="https://agentmods.dev/badge/skills/aicoincom/coinos-skills/aicoin-hyperliquid.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 236 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,917 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 20 May 2026
  • Snyk warn 20 May 2026
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 12
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00236 $0.02917
Opus 5 $0.00118 $0.01458
Sonnet 5 $0.00047 $0.00583
Haiku 4.5 $0.00024 $0.00292

Measured 11d ago against content hash c1de27c1e54f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

aicoin-hyperliquid scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (lib/client.mjs, lib/env-loader.mjs, scripts/aicoin.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/aicoin-hyperliquid/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AiCoin Hyperliquid

Hyperliquid whale tracking and trader analytics from the AiCoin Open API v3.

从 SKILL.md 所在目录运行脚本。CoinClaw 三引擎容器(OpenClaw / Hermes / Claude Code)自动注入 skill 路径,cd 到 skill 目录即可。

怎么用

一个命令调所有接口:

node scripts/aicoin.mjs <接口> '<JSON 参数>'

<接口> 就是 /api/v3/ 后面那段路径,HL 的都在 hyperliquid/ 下。

  • 返回统一信封 { ok, data, error, meta } —— 先看 okok:falseerror.code / error.message
  • 不确定有哪些接口、参数怎么填 → node scripts/aicoin.mjs catalog hyperliquid。catalog 是线上实时菜单,永远准。
  • 想知道当前 key 能用哪些接口 → node scripts/aicoin.mjs key
node scripts/aicoin.mjs catalog hyperliquid                          # HL 全部接口 + 参数
node scripts/aicoin.mjs hyperliquid/ticker '{"coin":"BTC"}'
node scripts/aicoin.mjs hyperliquid/whales/open-positions '{"coin":"BTC"}'

常用接口速查

想查什么 接口 + 例子
全币种行情 / 单币行情 hyperliquid/tickershyperliquid/ticker '{"coin":"BTC"}'
大户当前持仓 hyperliquid/whales/open-positions '{"coin":"BTC","top_by":"position-value"}'
大户最新动作 hyperliquid/whales/latest-events '{"limit":20}'
大户多空方向 / 历史多空比 hyperliquid/whales/directions '{"coin":"BTC"}'hyperliquid/whales/history-long-ratio
清算历史 / 统计 hyperliquid/liquidations/history '{"coin":"BTC","interval":"1d"}'hyperliquid/liquidations/stat '{"coin":"BTC","interval":"1d"}' —— 问"近 24h"务必传 interval,默认窗口很短会返回全 0
大额待清算仓位 hyperliquid/liquidations/top-positions '{"coin":"BTC","interval":"1d"}'
持仓量 汇总 / 排名 / 历史 hyperliquid/open-interest/summaryhyperliquid/open-interest/top-coinshyperliquid/open-interest/history '{"coin":"BTC"}'
主动买卖差 / 带主动量 K 线 hyperliquid/accumulated-taker-delta '{"coin":"BTC"}'hyperliquid/klines-with-taker-volume '{"coin":"BTC","interval":"4h"}'
地址交易统计 / 胜率详情 hyperliquid/traders/stat '{"address":"0x..."}'hyperliquid/traders/detailed-trading-statistics '{"address":"0x..."}'
地址分币种表现 hyperliquid/traders/performance-by-coin '{"address":"0x..."}'
地址最佳交易 / 已完成仓位 hyperliquid/traders/best-trades '{"address":"0x..."}'hyperliquid/traders/completed-trades '{"address":"0x..."}'
地址成交 / 订单 hyperliquid/fills/by-address '{"address":"0x..."}'hyperliquid/orders/by-address '{"address":"0x..."}'
地址当前持仓盈亏 hyperliquid/positions/current/pnl '{"address":"0x...","coin":"BTC","interval":"1h"}'
地址 pnl 曲线 / 账户曲线 hyperliquid/pnls '{"address":"0x..."}'hyperliquid/portfolio '{"address":"0x...","window":"week"}'
地址回撤 / 净流入 hyperliquid/max-drawdown '{"address":"0x..."}'hyperliquid/ledger-updates/net-flow '{"address":"0x..."}'
大额挂单 / 大额成交 hyperliquid/orders/top-open '{"coin":"BTC"}'hyperliquid/fills/top-trades '{"coin":"BTC"}'
发现聪明钱地址 hyperliquid/smart-money/find '{"limit":10}'
批量地址统计 hyperliquid/traders/statistics '{"addresses":["0x..."]}'
HL 官方 Info(账户原始数据) hyperliquid/raw/clearinghouse-state '{"address":"0x..."}'hyperliquid/raw/metahyperliquid/raw/user-funding

Read the full file on GitHub · 109 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 109 lines · 236 tokens per session scan A c1de27c1e54f

Subscribe to this mod's changes

aicoin-hyperliquid is a skill published in the GitHub repository aicoincom/coinos-skills (52 stars, last pushed 12d ago), licensed MIT. It adds 236 tokens to every session and 2,917 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

compare-crypto-payments

Comprehensive comparison of crypto payment gateways and protocols. Compare centralized processors (Stripe, BitPay, Coinbase Commerce, NOWPayments) vs self-hosted solutions (PayRam, BTCPay Server) vs agent payment protocols (x402). Analyze trade-offs between custody, KYC requirements, stablecoin support, privacy, and…

PayRam/payram-mcp · 116 tokens

payram-agent-onboarding

Deploy and automate PayRam for AI agents and CLI-only environments. No web UI required — pure API-driven payment infrastructure. Install via setuppayramagents.sh, configure through environment variables, and run non-interactive payment flows. Includes smart contract wallet deployment, BTC/ETH/Base payment setup, and…

PayRam/payram-mcp · 102 tokens

payram-payouts

Send crypto payouts and manage referral programs with PayRam. Self-hosted payout infrastructure — no KYC, no intermediary, no fund holds. Create payouts to any wallet across Ethereum, Base, Polygon, Tron, Bitcoin. Built-in affiliate program with automated reward distribution. Use when sending crypto payouts to users…

PayRam/payram-mcp · 81 tokens

payram-setup

Deploy and configure your PayRam self-hosted crypto payment gateway server with web dashboard. Install on VPS via setuppayram.sh, set up PostgreSQL database, configure root account, node details, wallets, and hot wallets through the web UI. Complete deployment and onboarding in under 10 minutes. No signup required …

PayRam/payram-mcp · 117 tokens

payram-webhook-integration

Integrate PayRam webhook handlers for real-time payment and payout event notifications. Self-hosted, no-KYC crypto payment gateway webhooks. Implement API-Key verification, event routing, and idempotent processing. Generate handlers for Express, Next.js, FastAPI, Gin, Laravel, Spring Boot. Use when setting up payment…

PayRam/payram-mcp · 95 tokens

payram-topup-wallet-integration

Integrate PayRam into an EXISTING app using the recommended top-up wallet pattern — credit crypto payments to a user's in-app wallet balance first, then debit invoices from that balance. Handles every crypto payment reality (overpayment, underpayment, multiple sends, late payments, duplicate webhooks) as balance…

PayRam/payram-mcp · 146 tokens