binance-agentic-wallet
Use when the user mentions wallet connect/sign in/sign out, check balance, send/transfer tokens, swap/buy/sell tokens, DEX trade, limit/market order, cancel…
Scaffold for assembling on-chain copy-trading strategies on Binance Agentic Wallet. Wires the existing capabilities — address monitoring, signal subscription, address scoring, token audit, order placement, on-chain take-profit/stop-loss — into one runnable pipeline, and exposes
$ npx -y skills add binance/binance-skills-hub --skill binance-onchain-copy-trader --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/binance-onchain-copy-traderContext preview
The summary Claude sees to decide when to auto-load this skill.
Scaffold for assembling on-chain copy-trading strategies on Binance Agentic Wallet. Wires the existing capabilities — address monitoring, signal subscription, address scoring, token audit, order placement, on-chain take-profit/stop-loss — into one runnable pipeline, and exposes
name: binance-onchain-copy-trader
description: |
Scaffold for assembling on-chain copy-trading strategies on Binance Agentic Wallet. Wires the
existing capabilities — address monitoring, signal subscription, address scoring, token audit,
order placement, on-chain take-profit/stop-loss — into one runnable pipeline, and exposes every
strategy decision as a hook. Ships no strategy of its own.
Trigger on: copy trade, copy trading, follow smart money, follow a wallet, mirror trades,
copy-trade bot, auto-buy on signal, monitor a wallet and trade, smart money copy trading,
signal-driven trading, pick addresses to copy, copy-trade strategy, copy-trade status,
copy-trade post-mortem.
NOT for: single manual trades (use binance-agentic-wallet), signal queries alone
(binance-trading-signal), address analysis alone (binance-wallet-tracker / binance-leaderboard).
metadata:
version: '0.6.0'
requiredCliVersion: '1.9.1'
requires:
skills:
- binance-agentic-wallet
- binance-wallet-tracker
- binance-leaderboard
- binance-trading-signal
- query-token-auditA scaffold for a copy-trading pipeline. **This skill provides no strategy.** What it provides is: a capability index, an event contract, an assembly structure, and three strategy hooks. The strategy itself is yours to build and refine.
> ## Read this first > > **Every risk control, position-management scheme, and parameter value in this skill is a > *suggestion* and an *example*. None of it is mandatory, and none of it constitutes a safety > guarantee or investment advice.** > > - The scaffold guarantees only that **it will run the checks you configure**. It does not > guarantee those checks are sufficient to protect your funds. Budget caps, stop-loss distance, > liquidity floors — you choose all of them. Set them wide, leave them out, or switch off the > honeypot block, and the scaffold will do exactly as told. > - The three bundled hooks are a **minimal reference implementation that proves the pipeline > runs**. They are not a recommended strategy and carry **no evidence of positive expectancy**. > Running them live as-is means funding an unvalidated strategy with real money. > - On-chain transactions are irreversible. Any automated strategy can lose money through market > conditions you did not anticipate, changes in platform behavior, or defects in this scaffold. > **The risk is yours.** > - Suggested path: run `dry-run` long enough to matter → read `events.jsonl` and build your own > baseline → switch to `live` with an amount you can afford to lose entirely → tune from there.
Confirm the following skills are available in your current environment. This skill only orchestrates; every underlying capability comes from them:
| Skill | Provides | Used here | |---|---|---| | `binance-agentic-wallet` | Wallet, market orders, limit orders, quota, chain info | `wallet` `market-order` `limit-order` | | `binance-wallet-tracker` | Address monitoring, real-time push, group management | `tracker ws` `tracker token/tx` `tracker group/address` | | ↳ | Must include the **Connection lifecycle** and **Signal field nullability** sections — this skill's connection-supervision split and its first-push field assumptions depend on them directly | — | | `binance-leaderboard` | Trader rankings, address scoring, holder lookup | `leaderboard query/analyze/alpha-radar` | | `binance-trading-signal` | Smart-money signals, custom strategies, backtests | `signal list` `signal strategy` `signal backtest` | | `query-token-audit` | Token security audit | Audit HTTP endpoint | | `query-token-info` | *(optional)* Live token price and market data | Only if a hook needs a live price when the event does not carry one |
Verify:
baw --version baw cli-check --required-version "$(grep -m1 requiredCliVersion SKILL.md | tr -dc '0-9.')" --json # ↑ the frontmatter `requiredCliVersion` is the single source of truth for the version floor. # Below it, `tracker ws --duration 0` has no keepalive and no reconnect, and the scaffold # refuses to start.
Missing any one of them disables the corresponding stage: without `binance-leaderboard` there is no systematic way to pick addresses; without `binance-trading-signal` you cannot create custom signal strategies; without `query-token-audit` there is no audit data and `hard_gate` falls back to `require_audit` to decide whether to pass or reject.
Install source: `https://github.com/binance/binance-skills-hub`
The order that takes you from nothing to a scored dry-run. Each step points at the section below.
**Note the ordering.** Writing the strategy comes *after* the first dry-run, not before. That is deliberate: the whole premise of this scaffold is that thresholds should come from your own data, and before the first run you have none. So the first pass runs the bundled reference hooks unchanged — not because they are any good, but because they produce the dataset you need in order to write something better.
**1 · Environment check** → see "Pre-flight checks" Confirm the wallet is CONNECTED, the target chain supports both `market-order` and `limit-order`, and that quote-token and gas balances are sufficient. On a chain where `limit-order` is unavailable you cannot place on-chain protective orders — accept that before continuing.
**2 · Pick your trigger sources** → see "Trigger sources" Address subscription, signal subscription, or both. This determines how you select sources next.
**3 · Select sources**
score on each (`follow_friendly` is the most relevant dimension here) → write addresses into `addrs.txt`, one per line, `#` for comments, **max 100**
build your own / `signal strategy fo
Binance Skills Hub is an open skills marketplace that gives AI agents native access to crypto: both centralized and decentralized. Search tokens, execute trades, track wallets, monitor signals, and interact with DeFi protocols, all through natural language.
Repo: binance/binance-skills-hub
Use when the user mentions wallet connect/sign in/sign out, check balance, send/transfer tokens, swap/buy/sell tokens, DEX trade, limit/market order, cancel…
On-chain wallet leaderboard and Gem Hunter analysis on Binance Web3. Query top trader rankings by PnL, win rate, volume, trade count, or token count across…
Use when users ask for World Cup or 世界杯 AI match predictions, WC assistant probabilities, World Cup news insights, master analysis, recomputing football match…
Query Ondo tokenized US stock data on Binance Web3. Covers: supported stock token list, RWA metadata (company info, attestation reports), market and per-asset…
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal sources: smart money (wallet buy/sell events), platform…
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups or public Smart Money/KOL data. Four domains: (A) Discovery —…