convert

convert is a skill for Claude Code, Codex from tradecatlabs/tradecat-public. It costs 19 tokens per session (2,474 once invoked), scanned A, original, MIT.

Authenticated Binance API access for converting one cryptocurrency asset to another. It supports exchange-pair information, quotes, conversion orders, order status, and conversion history.

In plain words
What is it for?
Use it to list available conversion pairs, check asset precision, accept quotes, place or cancel limit orders, view open orders, and retrieve conversion history.
Why use it?
It removes the need to look up pairs, accept quotes, place limit conversions, and check their status manually. Requests require a Binance API key and secret key for protected operations.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to list available conversion pairs, check asset precision, accept quotes, place or cancel limit orders, view open orders, and retrieve conversion history.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tradecatlabs/tradecat-public/convert
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 tradecatlabs/tradecat-public --skill convert
Clone the repo
git clone --depth 1 https://github.com/tradecatlabs/tradecat-public

Made for: Claude Code, Codex.

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 convert

README.md
[![agentmods](https://agentmods.dev/badge/skills/tradecatlabs/tradecat-public/convert/github.svg)](https://agentmods.dev/skills/tradecatlabs/tradecat-public/convert)
Your own site
<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.

agentmods 80×15 button for convert

Your own site · 80×15
<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>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,474 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
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.
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.00019 $0.02474
Opus 5 $0.00010 $0.01237
Sonnet 5 $0.00004 $0.00495
Haiku 4.5 $0.00002 $0.00247

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

Security

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
resources/agent_market_context/binance/upstream/binance-skills-hub-main/skills/binance/convert/SKILL.md · 237 lines

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 placeOrder api (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 fromIsBase from GET /sapi/v1/convert/exchangeInfo api 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 baseAmount or quoteAmount is required) (e.g., 1.0)
  • quoteAmount: Quote asset amount. (One of baseAmount or quoteAmount is required) (e.g., 1.0)
  • side: BUY or SELL (e.g., BUY)
  • walletType: It is to choose which wallet of assets. The wallet selection is SPOT, FUNDING and EARN. Combination of wallet is supported i.e. SPOT_FUNDING, FUNDING_EARN, SPOT_FUNDING_EARN or SPOT_EARN Default is SPOT.
  • 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)

Read the full file on GitHub · 237 lines

Files

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.

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. 9d ago First seen · 237 lines · 19 tokens per session scan A 68e06c90c2d6

Subscribe to this mod's changes

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.

Related

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.

bytesagain/ai-skills · 57 tokens

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.

agiprolabs/claude-trading-skills · 52 tokens

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…

target1m/traderspy-mcp · 100 tokens

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.

target1m/traderspy-mcp · 50 tokens

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.

target1m/traderspy-mcp · 37 tokens

crypto-market-intel

Real-time crypto market intelligence - trending tokens, price analysis, market overview, and token comparison for informed decision-making.

XSpoonAi/spoon-awesome-skill · 27 tokens