binance

binance is a skill for Claude Code, Codex from Demerzels-lab/elsamultiskillagent. It costs 23 tokens per session (1,733 once invoked), scanned A, original, MIT.

A Binance exchange integration for managing cryptocurrency accounts and trades through Binance's API.

In plain words
What is it for?
Use it to trade spot and futures markets, convert tokens, manage earning activities, and track assets. It requires a Binance API key and secret.
Why use it?
It provides one interface for spot trades, futures, token swaps, earning products, and portfolio tracking instead of handling each operation separately.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to trade spot and futures markets, convert tokens, manage earning activities, and track assets. It requires a Binance API key and secret.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/demerzels-lab/elsamultiskillagent/binance
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 Demerzels-lab/elsamultiskillagent --skill binance
Clone the repo
git clone --depth 1 https://github.com/Demerzels-lab/elsamultiskillagent

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 binance

README.md
[![agentmods](https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/binance/github.svg)](https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/binance)
Your own site
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/binance"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/binance/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 binance

Your own site · 80×15
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/binance"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/binance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,733 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.
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.00023 $0.01733
Opus 5 $0.00012 $0.00866
Sonnet 5 $0.00005 $0.00347
Haiku 4.5 $0.00002 $0.00173

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

Security

Grade A, and why

binance 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 12d 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.

metadata: {"clawdbot":{"emoji":"🟡","always":true,"requires":{"bins":["curl","jq"]}}}
public/skills/0xterrybit/binance/SKILL.md · 224 lines

How it starts

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

Binance 🟡

World's largest cryptocurrency exchange. Trade 600+ cryptocurrencies with deep liquidity.

Environment Variables

Variable Description Required
BINANCE_API_KEY API Key from Binance Yes
BINANCE_SECRET API Secret Yes

💎 Referral Configuration

This skill uses a referral ID to earn commission on trading fees.

Variable Value Description
REFERRAL_ID CYBERPAY Referral ID for fee sharing

Commission Structure:

  • Standard: Up to 20% of trading fees
  • With 500+ BNB: Up to 50% of trading fees
  • Lifetime commission on referred users

💡 Users who sign up through this skill automatically use the referral ID!

Features

  • 📈 Spot Trading - 600+ trading pairs
  • 📊 Futures Trading - Up to 125x leverage
  • 💰 Earn - Staking, savings, liquidity farming
  • 🔄 Convert - Simple token swaps
  • 📱 Portfolio - Track all assets

API Base URLs

  • Spot: https://api.binance.com
  • Futures: https://fapi.binance.com
  • Testnet: https://testnet.binance.vision

Authentication

API_KEY="${BINANCE_API_KEY}"
SECRET="${BINANCE_SECRET}"

# Generate signature
generate_signature() {
  local query_string="$1"
  echo -n "$query_string" | openssl dgst -sha256 -hmac "$SECRET" | cut -d' ' -f2
}

TIMESTAMP=$(date +%s%3N)

Get Account Info

QUERY="timestamp=${TIMESTAMP}"
SIGNATURE=$(generate_signature "$QUERY")

curl -s "https://api.binance.com/api/v3/account?${QUERY}&signature=${SIGNATURE}" \
  -H "X-MBX-APIKEY: ${API_KEY}" | jq '{
    balances: [.balances[] | select(.free != "0.00000000" or .locked != "0.00000000")]
  }'

Get Price

SYMBOL="BTCUSDT"

curl -s "https://api.binance.com/api/v3/ticker/price?symbol=${SYMBOL}" | jq '.'

Get Order Book

curl -s "https://api.binance.com/api/v3/depth?symbol=${SYMBOL}&limit=10" | jq '{
  bids: .bids[:5],
  asks: .asks[:5]
}'

Place Spot Order

Read the full file on GitHub · 224 lines

Files

What ships with it

2 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. 12d ago First seen · 224 lines · 23 tokens per session scan A e88ab73b2b08

Subscribe to this mod's changes

binance is a skill published in the GitHub repository Demerzels-lab/elsamultiskillagent (10 stars, last pushed 4mo ago), licensed MIT. It adds 23 tokens to every session and 1,733 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-31.