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-marketgit 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-market)<a href="https://agentmods.dev/skills/aicoincom/coinos-skills/aicoin-market"><img src="https://agentmods.dev/badge/skills/aicoincom/coinos-skills/aicoin-market/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-market"><img src="https://agentmods.dev/badge/skills/aicoincom/coinos-skills/aicoin-market.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.00307 | $0.03133 |
| Opus 5 | $0.00153 | $0.01566 |
| Sonnet 5 | $0.00061 | $0.00627 |
| Haiku 4.5 | $0.00031 | $0.00313 |
Grade A, and why
aicoin-market scanned grade A with 1 finding 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 13d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
2. **加密数据只用这个脚本**,不要用 `web_search` / `web_fetch` / `curl` / 浏览器去拼。 How it starts
The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AiCoin Market
Crypto market data from the AiCoin Open API v3 — prices, K-lines, derivatives, news, signals, airdrops, treasuries and more across 200+ exchanges.
从 SKILL.md 所在目录运行脚本。CoinClaw 三引擎容器(OpenClaw / Hermes / Claude Code)自动注入 skill 路径,
cd到 skill 目录即可。
怎么用
一个命令调所有接口:
node scripts/aicoin.mjs <接口> '<JSON 参数>'
<接口> 就是 /api/v3/ 后面那段路径,例如 market/ticker、coins/tickers。
- 返回统一信封
{ ok, data, error, meta }—— 先看ok。ok:false时看error.code/error.message,里面写清楚了哪里错。 - 不确定有哪些接口、参数怎么填 →
node scripts/aicoin.mjs catalog [分组]。catalog 是线上实时的接口菜单,永远准。先查它再调。 - 想知道当前 key 能用哪些接口 →
node scripts/aicoin.mjs key。
node scripts/aicoin.mjs catalog # 看全部 183 个接口(按分组)
node scripts/aicoin.mjs catalog derivatives # 看 derivatives 分组每个接口的参数
node scripts/aicoin.mjs market/ticker '{"coin_key":"bitcoin","market":"binance"}'
常用接口速查
| 想查什么 | 接口 + 例子 |
|---|---|
| 币价 / 涨跌 / 市值 / 净流入 | coins/tickers '{"coin_key":"bitcoin,ethereum"}' —— degree_24h_usd / degree_7day_usd 是 24h / 7 天涨跌幅(%) |
| 单交易对实时行情 | market/ticker '{"coin_key":"bitcoin","market":"binance"}' |
| K 线 | market/klines '{"coin_key":"bitcoin","market":"binance","interval":"1h","limit":100}' |
| 搜币种 / 查某币在哪些交易所 | coins/search '{"query":"PEPE"}' —— 每条结果带 db_keys,列出该币跨交易所的全部交易对 |
| 币种详情 / 简介 | coins/detail '{"coin_key":"bitcoin"}' |
| 全部币种 / 全部交易所 | coins '{"limit":100}' / markets |
| 某交易所全部交易对行情 | market/tickers '{"market":"binance"}' |
| 交易对列表 | pairs '{"market":"binance"}' |
| 热门赛道币 | markets/hot-coins '{"tab_key":"defi"}' |
| 资金费率 | derivatives/funding-rates '{"coin_key":"bitcoin","market":"binance"}' —— 返回 8h OHLC 序列,close 是当期结算费率(小数,×100 得百分比) |
| 多空比 | 单交易对历史序列 derivatives/long-short-ratio '{"coin_key":"bitcoin","market":"binance"}';全市场当前汇总 derivatives/long-short-ratio/summary(不分币种,别当成某个币的) |
| 合约持仓量排名 | derivatives/open-interest/ranking |
| 清算地图 / 清算汇总 | derivatives/liquidations/map '{"coin_key":"bitcoin","market":"binance","window":"24h"}' / derivatives/liquidations/summary |
| 大单 / 大单成交 | market/big-orders '{"coin_key":"bitcoin","market":"binance"}' / market/aggregate-trades '{"coin_key":"bitcoin","market":"binance"}' |
| 订单簿深度 | market/orderbook/latest-depth '{"coin_key":"bitcoin","market":"binance"}' |
| 资讯文章 / 快讯 | content/articles / content/newsflashes / 行业 content/newsflashes/industry |
| 搜快讯 | content/newsflashes/search '{"query":"bitcoin"}' |
| 推特/X | content/social/x/posts/latest / 搜 content/social/x/posts/search '{"query":"bitcoin"}' |
| 空投项目(有哪些值得做) | drop-radar/projects —— 项目最全;详情 drop-radar/projects/detail '{"project_id":"..."}' |
| 交易所空投 / 空投日历 | airdrops '{"source":"all"}'(交易所活动,可能为空)/ airdrops/calendar '{"year":2026,"month":5}' |
| 上市公司持币(国库) | treasuries/summary '{"coin_key":"bitcoin"}' / 实体 treasuries/entities '{"coin_key":"bitcoin"}' |
| 灰度持仓 | institutions/grayscale/holdings |
| 加密概念股 / 全球股指 | equities/crypto-exposure/quotes / macro/stock-indices |
| 指数(恐慌贪婪等) | indexes / indexes/ticker '{"index_key":"i:fgi:alternative"}' |
| 异动信号 / 预警 | signals/changes / signals/alerts |
| AI 选币推荐 | coins/recommendations '{"coin_keys":["bitcoin"]}' |
What ships with it
10 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.
- lib/client.mjs 13 KB runs code
- lib/client.test.mjs 4.8 KB runs code
- lib/defaults.json 227 B
- lib/endpoints.json 110 KB
- lib/env-loader.mjs 3.4 KB runs code
- package.json 91 B
- scripts/aicoin.mjs 12 KB runs code
- scripts/aicoin.test.mjs 6.7 KB runs code
- scripts/legacy-entrypoint.test.mjs 834 B runs code
- scripts/market.mjs 691 B runs code
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.
- 13d ago First seen · 122 lines · 307 tokens per session scan A e280d7c8985b
aicoin-market is a skill published in the GitHub repository aicoincom/coinos-skills (52 stars, last pushed 14d ago), licensed MIT. It adds 307 tokens to every session and 3,133 once invoked, about $0.0015 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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-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-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-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…