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.
npx skills add aicoincom/coinos-skills --skill aicoin-hyperliquidgit clone --depth 1 https://github.com/aicoincom/coinos-skillsWrote 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.
[](https://agentmods.dev/skills/aicoincom/coinos-skills/aicoin-hyperliquid)<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.
<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>- Socket pass
- Snyk warn
- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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.
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.
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 }—— 先看ok。ok:false看error.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/tickers / hyperliquid/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/summary / hyperliquid/open-interest/top-coins / hyperliquid/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/meta、hyperliquid/raw/user-funding 等 |
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.
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.
- 11d ago First seen · 109 lines · 236 tokens per session scan A c1de27c1e54f
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.
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-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-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-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-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-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…