Skip to content
Source index synced with Binance Skills Hub
Skillsmith
v0.1$SKLSM on BNB Smart Chain

One SKILL.mdout of the skillsalready in the hub

Binance Skills Hub publishes 18 skills across two namespaces. A real job needs two or three of them, in a fixed order, with a condition between each step. Skillsmith writes that file.

18
source skills
2
namespaces
269
indexed operations
Free
first build
describe the job
$
first build is free
01The gap

The hub ships parts, not sequences

Every skill in Binance Skills Hub is written to stand alone. Trigger text, inputs, outputs, done. The moment your job needs two of them in a row, the wiring is yours.

0118 files to read

Read every candidate

18 skills, 269 operations, no cross references. Each SKILL.md describes when to trigger and what comes back, and says nothing about the skill you are going to call next.

020 declared dependencies

Decide the order yourself

The format has no dependency field. Order is not declared anywhere, so it lives in your head until you write it into a system prompt and hope it survives the next session.

03prose, read literally

Author the gates

The condition between two calls is prose. It has to be tight enough that an agent reading it literally stops when the audit fails instead of continuing to the swap.

> Skillsmith does all three and hands back the file.

02The compile

Describe it once, read the plan, take the file

Nothing is generated behind your back. You see which skills matched and how strongly, where each gate stops the run, and what the file says, before it is written.

01 read
02 resolve
03 order
04 emit
Input

watch smart money on BSC, audit the token before anything else, and only swap if the audit is clean and the pool is deep

signal: smart moneychain: BSCgate: auditaction: swapgate: pool is deep
Candidatesscanning
  • trading-signal--
  • query-token-audit--
  • query-token-info--
  • binance-agentic-wallet--
  • binance-wallet-tracker--
  • crypto-market-rank--
Sequencepending
  1. trading-signal
    if max gain since trigger is under 40% and exit rate is under 25%
  2. query-token-audit
    if no honeypot flag and token risk level is below 3
  3. query-token-info
    if liquidity is above the floor set in the user config
  4. binance-agentic-wallet
    no gate, runs last
SKILL.md60 lines
---
name: smart-money-entry-check
description: >-
  Reads a smart money buy event, refuses to act until the contract passes an audit and the pool is deep enough, then swaps inside your wallet limit.
  Trigger on: smart money just bought, should I follow this whale, copy trade this signal.
---

# Smart money entry check

## PREREQUISITE

Install and authenticate these skills first:

- `trading-signal`
- `query-token-audit`
- `query-token-info`
- `binance-agentic-wallet`

If any of them is missing, say which one and stop. Do not improvise a replacement.

## SEQUENCE

### Step 1. `trading-signal`

Pull buy events from tracked smart money wallets on BSC for the last 60 minutes.

**Continue only if** max gain since trigger is under 40% and exit rate is under 25%.

**Otherwise:** Report the signal as late and stop.

### Step 2. `query-token-audit`

Audit the contract address carried by the signal.

**Continue only if** no honeypot flag and token risk level is below 3.

**Otherwise:** Report the audit findings verbatim and stop. Do not swap.

### Step 3. `query-token-info`

Read liquidity, holder count and 24h volume for the same address.

**Continue only if** liquidity is above the floor set in the user config.

**Otherwise:** Report thin liquidity and stop.

### Step 4. `binance-agentic-wallet`

Quote the swap, then execute it at or below the configured slippage and daily limit.

## RULES

- Every gate is a stop, not a warning. The agent does not swap on a failed audit.
- Position size stays with the wallet skill. This build never overrides a daily limit.

## OUTPUT

Report each step that ran, the gate result, and the step that stopped the sequence if one did.
Never report a step as done when its skill returned an error.
Install
terminal
$ npx skills add smart-money-entry-check
...
Skills used
4
Gates
3
Stop conditions
3
Compile time
~9s
03Source index

Everything Skillsmith can reach

The index mirrors Binance Skills Hub. 18 skills, two namespaces, every one of them security reviewed before listing. Skillsmith never invents a skill and never edits one.

Open the hub
  • binance

    Spot, USD-S futures and Convert through binance-cli. The exchange surface an agent trades on.

    Exchange24 opsauth
  • binance-agentic-wallet

    Connect, sign, swap, transfer, approve, stake, bridge. Every on-chain wallet operation an agent can run, inside the limits you set.

    Wallet61 opsauth
  • binance-leaderboard

    Top trader rankings by PnL, win rate, volume. Scores a single address on six dimensions and finds wallets holding a given token.

    Analytics14 ops
  • binance-sports-ai-analyzer

    World Cup match probabilities and news insight, with correction signals you supply, ahead of a prediction market trade.

    Prediction8 ops
  • binance-tokenized-securities-info

    Ondo tokenized US equities: trading status, corporate actions, on-chain supply, fundamentals, candles.

    RWA12 ops
  • binance-trading-signal

    Smart money events, platform strategies and your own meme or fomo strategies, plus backtests and credit management.

    Signals31 opsauth
  • binance-wallet-tracker

    Watch groups of wallets. Consensus, accumulation and distribution, sector rotation, anomaly orders, live WebSocket push.

    Monitoring38 opsauth
  • crypto-market-rank

    Ranked feeds across the whole market: hype, trending, Alpha, smart money net inflow, Pulse breakout score, trader PnL.

    Analytics9 ops
  • fiat

    Fiat rails by country: payment methods, limits, rates, plus the caller's own order history.

    Payments7 opsauth
  • meme-rush

    Launchpad lifecycle feed for Pump.fun and Four.meme, filtered by dev behaviour, age and cap, with AI detected narratives.

    Discovery11 ops
  • onchain-pay-open-api

    Buy crypto with fiat or push from a Binance account straight to an external address, no manual withdrawal step.

    Payments7 opsauth
  • p2p

    P2P ads, order history, appeals and merchant profiles, plus publishing and managing your own advertisements.

    Payments15 opsauth
  • payment-assistant

    Binance Pay send and receive. QR payment from the funding wallet, PIX auto detection, receive links.

    Payments9 opsauth
  • query-address-info

    One address, one chain, every token held right now with price, 24h change and quantity.

    Wallet3 ops
  • query-token-audit

    Contract and trading risk on a token before you touch it. Honeypots, scams, malicious code.

    Security4 ops
  • query-token-info

    Search, metadata, live market data and OHLCV for one token by keyword, symbol or contract address.

    Market data6 ops
  • square-post

    Publish to Binance Square: short text, up to four images, long form with a cover, or video.

    Social5 opsauth
  • trading-signal

    Discrete smart money buy and sell events with trigger price, current price, max gain and exit rate.

    Signals5 ops
04Library

Builds other people already wrote

A published build shows its full sequence before you take it. Install it unchanged, or open it in the composer and move a gate.

All 8 builds

? marks a gate between two calls, > marks a hand off with no condition

05Economics

Pay per file, or hold the token

100,000,000 SKLSM, fixed, no mint function. The token enters through the market and leaves through payment. 30% of every stablecoin payment buys it back, weekly, on chain.

Read the economics
First build
Free

No wallet, no signup, no key

Start a build
Single build
$6$4 in SKLSM

Pay per file, nothing recurring

Start a build
Subscriptionrecommended
$29 / monthFree while holding 25,000 SKLSM

Unlimited builds and rebuilds

Check the threshold
06Limits

What this release does not do

Four things are out of scope on purpose. They are written here rather than discovered later.

01

It does not publish for you

Skillsmith returns a file. Installing it, committing it, or submitting it anywhere is your call. Nothing is pushed to a registry on your behalf.

02

It does not follow upstream edits

A source skill can change after your build is generated, and your file will keep calling it by name. Change tracking is the first post launch update, not part of this release.

03

It cannot outrank a vague source

Matching reads the published SKILL.md text as written. When a source skill describes itself loosely, the match is loose, and the review screen is where you catch it.

04

It reads one hub

Binance Skills Hub only. Other catalogues on the agentskills.io format come after the first release, once cross hub sequencing is worth the added surface.

07Questions

Asked before you ask

No. It reads what Binance Skills Hub publishes and writes an instruction on top of it. The skills stay where they are, owned by their authors and reviewed by Binance. Skillsmith adds a layer, it does not fork anything.

As text the agent reads at run time. The SKILL.md format has no formal branching field, and it does not need one: the hub's own skills already use PREREQUISITE lines and references to other skills the same way. Skillsmith writes that pattern precisely instead of loosely.

Your file keeps calling it by name, so behaviour can drift from what the build assumed. This release does not watch for that. Rebuild when a skill you depend on changes, and version tracking arrives in the first update after launch.

It is plain markdown. Change a gate, drop a step, rename it, commit it next to your agent config. Skillsmith has no runtime and never calls back to check on the file.

Anything that reads the agentskills.io format. The file installs with npx skills add, the same command you use for a single skill from the hub.

No. The first build is free and needs no wallet at all. A wallet matters only when you want the SKLSM discount or the hold based subscription.

No. Skillsmith reads a public catalogue and writes files against a public format. It has no affiliation with Binance and no special access to anything.

Start

Your first file costs nothing

No wallet, no key, no signup wall. Describe the job and read the plan before anything is written.

describe the job
$
first build is free