Skip to content
Source index synced with Binance Skills Hub

RWA session guard

Checks whether a tokenized equity is actually tradable right now before an agent quotes it to anyone.

Author
helvig
Version
v1.0.1
Updated
2026-08-11
Steps
3
Gates
1
01Sequence3 steps / 1 gates
  1. 1
    binance-tokenized-securities-infoRWA

    Read market status and the corporate action code for the ticker.

    continue if status is tradable and no halt code is set

    otherwise Return the halt reason in plain language and stop.

  2. 2
    query-token-infoMarket data

    Read on-chain price, holders and liquidity for the token.

    no gate on this step

  3. 3
    binanceExchangeauth

    Read the Convert quote so the user sees both routes side by side.

    no gate on this step

02Rules
  • Corporate action codes are returned as they come from the source, not paraphrased.
03Triggerswhat makes the agent reach for this file
can I trade this stock tokenis the market openwhy is this halted
04The file46 lines
SKILL.md
---
name: rwa-session-guard
description: >-
  Checks whether a tokenized equity is actually tradable right now before an agent quotes it to anyone.
  Trigger on: can I trade this stock token, is the market open, why is this halted.
---

# RWA session guard

## PREREQUISITE

Install and authenticate these skills first:

- `binance-tokenized-securities-info`
- `query-token-info`
- `binance`

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

## SEQUENCE

### Step 1. `binance-tokenized-securities-info`

Read market status and the corporate action code for the ticker.

**Continue only if** status is tradable and no halt code is set.

**Otherwise:** Return the halt reason in plain language and stop.

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

Read on-chain price, holders and liquidity for the token.

### Step 3. `binance`

Read the Convert quote so the user sees both routes side by side.

## RULES

- Corporate action codes are returned as they come from the source, not paraphrased.

## 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.
NextBuilds in the same areaAll builds