examples/skills/binance/SKILL.md
Binance exchange integration for trading and market data
npx skillsauth add ticruz38/skills binanceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Trade cryptocurrencies via Binance API. Supports both real trading and paper trading (testnet).
balance [asset] - Get account balance for asset (e.g., BTC, USDT)
asset, free, lockedbinance.sh balance BTC → {"asset":"BTC","free":"0.5","locked":"0"}ticker [symbol] - Get current price for trading pair
symbol, pricebinance.sh ticker BTCUSDT → {"symbol":"BTCUSDT","price":"43250.00"}buy [symbol] [quantity] - Place market buy order (requires trading permission)
sell [symbol] [quantity] - Place market sell order (requires trading permission)
Requires Binance API keys:
| Variable | Required | Description |
|----------|----------|-------------|
| BINANCE_API_KEY | Yes | Your API key |
| BINANCE_API_SECRET | Yes | Your API secret |
| BINANCE_TESTNET | No | Set to "true" for paper trading (default: true) |
⚠️ Always use testnet for testing!
BINANCE_TESTNET=true, all calls go to testnet# Check BTC balance (testnet by default)
BINANCE_API_KEY=xxx BINANCE_API_SECRET=yyy ./binance.sh balance BTC
# Get BTC price
./binance.sh ticker BTCUSDT
# Buy 0.001 BTC (only works with trading permission)
./binance.sh buy BTCUSDT 0.001
Binance API limits:
testing
Suggest recipes based on dietary preferences, available ingredients, and cuisine preferences
development
Extract data from receipt photos using Google Vision API
business
QuickBooks Online integration for accounting sync - sync customers, invoices, and transactions with two-way sync and conflict resolution
testing
QuickBooks OAuth adapter for QuickBooks Online accounting integration. Built on top of auth-provider for secure token management with automatic refresh, multi-profile support, sandbox/production toggle, and health checks.