AgentStack
SKILL verified MIT Self-run

Spot

skill-draguris-dragonclaw-spot · by draguris

Place, cancel, and query spot orders on Binance. Requires user's API key and secret.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-draguris-dragonclaw-spot

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Spot? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Binance Spot Trading

Execute spot trades on Binance via authenticated REST API.

When to Use

User wants to buy/sell crypto, check balances, view open orders, or manage spot positions.

Authentication

Requires BINANCE_API_KEY and BINANCE_API_SECRET in config. If not configured, tell the user: "需要先配置币安 API 密钥。在 dragonclaw.yaml 的 binance 部分添加你的 apiKey 和 secretKey。"

Safety Rules

  • ALWAYS confirm with user before placing any order
  • Default to testnet unless user explicitly requests mainnet
  • Never place market orders without showing the current price first
  • Show order details (symbol, side, quantity, price) and ask for "CONFIRM" before executing

Endpoints

Get Price

GET /api/v3/ticker/price?symbol=BTCUSDT No auth required.

Get Account Balance

GET /api/v3/account (signed)

Place Order

POST /api/v3/order (signed) Required: symbol, side (BUY/SELL), type (LIMIT/MARKET), quantity For LIMIT: add timeInForce=GTC, price

Cancel Order

DELETE /api/v3/order (signed) Required: symbol, orderId

Open Orders

GET /api/v3/openOrders (signed) Optional: symbol

Tool Call Format

{"tool": "binance_spot", "action": "GET", "endpoint": "/api/v3/ticker/price", "params": {"symbol": "BTCUSDT"}}
{"tool": "binance_spot", "action": "POST", "endpoint": "/api/v3/order", "params": {"symbol": "BTCUSDT", "side": "BUY", "type": "LIMIT", "timeInForce": "GTC", "quantity": "0.001", "price": "50000"}}

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.