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.

v1.0.0
Version
3
Steps
1
Gates
3
Skills called
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, this step runs

  3. 3
    binanceExchangeauth

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

    No gate, this step runs

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