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 tradecatlabs/tradecat-public --skill convertgit clone --depth 1 https://github.com/tradecatlabs/tradecat-publicWrote 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/tradecatlabs/tradecat-public/convert)<a href="https://agentmods.dev/skills/tradecatlabs/tradecat-public/convert"><img src="https://agentmods.dev/badge/skills/tradecatlabs/tradecat-public/convert/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/tradecatlabs/tradecat-public/convert"><img src="https://agentmods.dev/badge/skills/tradecatlabs/tradecat-public/convert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 5 findings, 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 106 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.
- high Privilege Escalation · line 109 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.
- high Privilege Escalation · line 110 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.
- high Privilege Escalation · line 115 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.
- high Privilege Escalation · line 112 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.00019 | $0.02474 |
| Opus 5 | $0.00010 | $0.01237 |
| Sonnet 5 | $0.00004 | $0.00495 |
| Haiku 4.5 | $0.00002 | $0.00247 |
Grade A, and why
convert 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 9d 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.
- curl How it starts
The opening of the file, as written. The whole thing — 237 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Binance Convert Skill
Convert request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format.
Quick Reference
| Endpoint | Description | Required | Optional | Authentication |
|---|---|---|---|---|
/sapi/v1/convert/exchangeInfo (GET) |
List All Convert Pairs | None | fromAsset, toAsset | No |
/sapi/v1/convert/assetInfo (GET) |
Query order quantity precision per asset(USER_DATA) | None | recvWindow | Yes |
/sapi/v1/convert/acceptQuote (POST) |
Accept Quote (TRADE) | quoteId | recvWindow | Yes |
/sapi/v1/convert/limit/cancelOrder (POST) |
Cancel limit order (USER_DATA) | orderId | recvWindow | Yes |
/sapi/v1/convert/tradeFlow (GET) |
Get Convert Trade History(USER_DATA) | startTime, endTime | limit, recvWindow | Yes |
/sapi/v1/convert/orderStatus (GET) |
Order status(USER_DATA) | None | orderId, quoteId | Yes |
/sapi/v1/convert/limit/placeOrder (POST) |
Place limit order (USER_DATA) | baseAsset, quoteAsset, limitPrice, side, expiredType | baseAmount, quoteAmount, walletType, recvWindow | Yes |
/sapi/v1/convert/limit/queryOpenOrders (GET) |
Query limit open orders (USER_DATA) | None | recvWindow | Yes |
/sapi/v1/convert/getQuote (POST) |
Send Quote Request(USER_DATA) | fromAsset, toAsset | fromAmount, toAmount, walletType, validTime, recvWindow | Yes |
Parameters
Common Parameters
- fromAsset: User spends coin
- toAsset: User receives coin
- recvWindow: The value cannot be greater than 60000 (e.g., 5000)
- quoteId: (e.g., 1)
- orderId: The orderId from
placeOrderapi (e.g., 1) - startTime: (e.g., 1623319461670)
- endTime: (e.g., 1641782889000)
- limit: Default 100, Max 1000 (e.g., 100)
- orderId: Either orderId or quoteId is required (e.g., 1)
- quoteId: Either orderId or quoteId is required (e.g., 1)
- baseAsset: base asset (use the response
fromIsBasefromGET /sapi/v1/convert/exchangeInfoapi to check which one is baseAsset ) - quoteAsset: quote asset
- limitPrice: Symbol limit price (from baseAsset to quoteAsset) (e.g., 1.0)
- baseAmount: Base asset amount. (One of
baseAmountorquoteAmountis required) (e.g., 1.0) - quoteAmount: Quote asset amount. (One of
baseAmountorquoteAmountis required) (e.g., 1.0) - side:
BUYorSELL(e.g., BUY) - walletType: It is to choose which wallet of assets. The wallet selection is
SPOT,FUNDINGandEARN. Combination of wallet is supported i.e.SPOT_FUNDING,FUNDING_EARN,SPOT_FUNDING_EARNorSPOT_EARNDefault isSPOT. - expiredType: 1_D, 3_D, 7_D, 30_D (D means day)
- fromAsset:
- toAsset:
- fromAmount: When specified, it is the amount you will be debited after the conversion (e.g., 1.0)
- toAmount: When specified, it is the amount you will be credited after the conversion (e.g., 1.0)
- validTime: 10s, 30s, 1m, default 10s (e.g., 10s)
What ships with it
3 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.
- 9d ago First seen · 237 lines · 19 tokens per session scan A 68e06c90c2d6
convert is a skill published in the GitHub repository tradecatlabs/tradecat-public (956 stars, last pushed yesterday), licensed MIT. It adds 19 tokens to every session and 2,474 once invoked, about $0.0001 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
BytesAgain Crypto Toolkit — 200+ Technical Indicators, Real-Time Market Data
Use when you need real-time crypto prices, technical indicators (RSI, MACD, Bollinger, 50+), market rankings, on-chain data, or trading signals. Zero API key required.
coingecko-api
Broad crypto market data from CoinGecko covering 13,000+ tokens. Global market stats, historical price data going back years, exchange volumes, trending tokens, and category filters. Best for macro analysis and long-term historical data.
market-data
Query real-time crypto futures prices, OHLCV candle data, and technical indicators (RSI, MACD, EMA, SMA, Bollinger, ATR, ADX, Stochastic, OBV, VWAP, CCI, MFI, Williams %R, ROC, SuperTrend, Ichimoku, Keltner, pivot points, support/resistance) from TraderSpy. Use when the user asks for prices, charts, candles, or…
smart-money
Track smart money / whale traders across crypto exchanges (Binance, Hyperliquid, Bybit, OKX). Use when the user asks about top traders, whale positions, elite leaderboard, copy trading targets, or smart money flows.
trading-signals
Query and analyze AI-powered crypto futures trading signals from TraderSpy. Use when the user asks about crypto signals, AI alerts, signal performance, or trading recommendations.
crypto-market-intel
Real-time crypto market intelligence - trending tokens, price analysis, market overview, and token comparison for informed decision-making.