Resolving gate-cli (binary path)
Resolve gate-cli in order: (1) command -v gate-cli and gate-cli --version succeeds; (2) ${HOME}/.local/bin/gate-cli if executable; (3) ${HOME}/.openclaw/skills/bin/gate-cli if executable. Canonical rules: exchange-runtime-rules.md §4 (or gate-runtime-rules.md §4).
Gate Exchange Sub-Account Skill
General Rules
⚠️ STOP — You MUST read and strictly follow the shared runtime rules before proceeding.
Do NOT select or call any tool until all rules are read. These rules have the highest priority.
→ Read gate-runtime-rules.md
- Only use the
gate-cli commands explicitly listed in this skill. Commands not documented here must NOT be run for these workflows, even if other interfaces expose them.
Skill Dependencies
gate-cli commands used
Query Operations (Read-only)
gate-cli cex sub-account get
gate-cli cex sub-account list
gate-cli cex sub-account lock
gate-cli cex sub-account unlock
Execution Operations (Write)
gate-cli cex sub-account create
Authentication
- Interactive file setup: when
GATE_API_KEY and GATE_API_SECRET are not both set on the host, run gate-cli config init to complete the wizard for API key, secret, profiles, and defaults (see gate-cli).
- Env / flags:
gate-cli config init is not required when credentials are already supplied — e.g. both GATE_API_KEY and GATE_API_SECRET set on the host, or --api-key / --api-secret where supported — never ask the user to paste secrets into chat.
- Permissions: Sa:Write
- Portal: create or rotate keys outside the chat: https://www.gate.com/myaccount/profile/api-key/manage
Installation Check
- Required:
gate-cli (run sh ./setup.sh from this skill directory if missing; optional GATE_CLI_SETUP_MODE=release).
- Add
$HOME/.openclaw/skills/bin to PATH if you invoke gate-cli by name (or the directory where setup.sh installs it).
- Credentials: When
GATE_API_KEY and GATE_API_SECRET are both set (non-empty) for the host, do not require gate-cli config init — that is equivalent valid config for gate-cli. When both are unset or empty, remind the operator to run gate-cli config init or to configure GATE_API_KEY / GATE_API_SECRET in the matching skill from the skill library (never ask the user to paste secrets into chat).
- Sanity check: Do not proceed with authenticated calls until the CLI behaves as expected (e.g.
gate-cli --version or a read-only gate-cli cex ... command from this skill); confirm credentials resolve before mutating operations.
Execution mode
Read and strictly follow references/gate-cli.md, then execute this skill's sub-account workflow.
SKILL.md keeps intent routing and permission boundaries.
references/gate-cli.md is the authoritative gate-cli execution contract for create/lock/unlock confirmation gates and status verification.
Prerequisites
- MCP Dependency: Requires gate-mcp to be installed.
- Authentication: All sub-account operations require API key authentication with main-account privileges.
- Permission: The current user must be a main account holder to manage sub-accounts.
Available MCP Tools
| Tool |
Auth |
Description |
gate-cli cex sub-account get |
Yes |
Get details of a specific sub-account by user ID |
gate-cli cex sub-account list |
Yes |
List all sub-accounts under the main account |
gate-cli cex sub-account create |
Yes |
Create a new normal sub-account |
gate-cli cex sub-account lock |
Yes |
Lock a sub-account to disable login and trading |
gate-cli cex sub-account unlock |
Yes |
Unlock a previously locked sub-account |
Workflow
Step 1: Identify User Intent
Parse the user's message to determine which sub-account operation they need.
Key data to extract:
intent: One of query_status, list_all, create, lock, unlock
user_id: Sub-account UID (required for query_status, lock, unlock)
login_name: Desired username (for create, may need to ask user)
Intent detection rules:
| Signal Keywords |
Intent |
| "status of sub-account", "sub-account UID {id}", "check sub-account" |
query_status |
| "all sub-accounts", "list sub-accounts", "my sub-accounts", "which sub-accounts" |
list_all |
| "create sub-account", "new sub-account", "add sub-account" |
create |
| "lock sub-account", "disable sub-account", "freeze sub-account" |
lock |
| "unlock sub-account", "enable sub-account", "unfreeze sub-account" |
unlock |
Step 2: Execute by Intent
Case A: Query Sub-Account Status (query_status)
Call gate-cli cex sub-account get with:
user_id: The sub-account UID provided by the user
Key data to extract:
login_name: Sub-account username
remark: Sub-account remark/note
state: Account state (normal / locked)
type: Account type (normal / pool)
create_time: Account creation timestamp
Present the sub-account details in a structured format.
Case B: List All Sub-Accounts (list_all)
Call gate-cli cex sub-account list with:
type: "0" (normal sub-accounts only)
Key data to extract:
- For each sub-account:
user_id, login_name, remark, state, create_time
Present results as a table with username, UID, remark (if any), and current status.
Case C: Create Sub-Account (create)
Pre-check: Call gate-cli cex sub-account list with type: "0" to get the current list of normal sub-accounts. Check if the user can still create more sub-accounts based on the returned count.
If creation is available:
- Ask the user to provide a login name for the new sub-account
- Optionally collect: email, remark
- Confirm all details with the user before proceeding
- Call
gate-cli cex sub-account create with:
login_name: User-provided login name (required)
email: User-provided email (optional)
remark: User-provided remark (optional)
- Present the newly created sub-account details
Key data to extract:
user_id: Newly created sub-account UID
login_name: Confirmed username
state: Should be "normal"
Important: Only normal sub-accounts can be created through this skill.
Case D: Lock Sub-Account (lock)
- Validate that
user_id is provided; if not, ask the user
- Call
gate-cli cex sub-account get with user_id to verify the sub-account exists and belongs to the main account
- If the sub-account is already locked, inform the user and stop
- Confirm with the user: "Are you sure you want to lock sub-account {user_id} ({login_name})? This will disable login and trading for this sub-account."
- On confirmation, call
gate-cli cex sub-account lock with:
user_id: The sub-account UID
- Report the result
Key data to extract:
- Lock operation success/failure status
Case E: Unlock Sub-Account (unlock)
- Validate that
user_id is provided; if not, ask the user
- Call
gate-cli cex sub-account get with user_id to verify the sub-account exists and is currently locked
- If the sub-account is already unlocked/normal, inform the user and stop
- Confirm with the user: "Are you sure you want to unlock sub-account {user_id} ({login_name})?"
- On confirmation, call
gate-cli cex sub-account unlock with:
user_id: The sub-account UID
- Report the result
Key data to extract:
- Unlock operation success/failure status
Step 3: Format and Respond
Present results using the Report Template below. Always include relevant context and next-step suggestions.
Judgment Logic Summary
| Condition |
Action |
| User asks for a specific sub-account status with UID |
Route to Case A: query_status |
| User asks to see all sub-accounts |
Route to Case B: list_all |
| User wants to create a new sub-account |
Route to Case C: create |
| User wants to lock a sub-account with UID |
Route to Case D: lock |
| User wants to unlock a sub-account with UID |
Route to Case E: unlock |
| UID not provided for operations requiring it |
Ask user for the sub-account UID |
| Login name not provided for creation |
Ask user for a login name |
| Sub-account already in target state (lock/unlock) |
Inform user, no action needed |
| API returns authentication error |
Prompt user to log in |
| API returns permission error |
Inform user that main account privileges are required |
| Sub-account does not exist or does not belong to user |
Inform user the UID is invalid |
Report Template
Query Status Response
Sub-Account Details
---
Username: {login_name}
UID: {user_id}
Status: {state}
Type: {type}
Remark: {remark or "N/A"}
Created: {create_time}
List All Sub-Accounts Response
Your Sub-Accounts
---
| # | Username | UID | Status | Remark |
|---|----------|-----|--------|--------|
| 1 | {login_name} | {user_id} | {state} | {remark or "-"} |
| 2 |... |... |... |... |
Total: {count} sub-account(s)
Create Sub-Account Response
Sub-Account Created Successfully
---
Username: {login_name}
UID: {user_id}
Status: Normal
Remark: {remark or "N/A"}
Note: Only normal sub-accounts can be created through this interface.
Lock/Unlock Response
Sub-Account {Action} Successfully
---
Username: {login_name}
UID: {user_id}
Previous Status: {previous_state}
Current Status: {new_state}
Domain Knowledge
- A main account on Gate can create multiple sub-accounts for asset isolation, strategy separation, or team management.
- Sub-accounts share the main account's KYC verification but have independent trading and wallet capabilities.
- Locking a sub-account disables both login and trading; the assets remain safe but inaccessible until unlocked.
- There are two types of sub-accounts: normal (type=0) and pool (type=1). This skill only supports creating normal sub-accounts.
- Sub-account creation requires a unique login name. Email and remark are optional.
Safety Rules
- Write operations (
gate-cli cex sub-account create, gate-cli cex sub-account lock, gate-cli cex sub-account unlock): Always require explicit user confirmation before execution. Never auto-execute.
- UID validation: Before lock/unlock, always verify the sub-account exists and belongs to the current main account.
- State check: Before lock/unlock, check current state to avoid redundant operations.
- No sensitive data exposure: Never expose API keys, internal endpoint URLs, or raw error traces.
- Normal sub-accounts only: Creation is restricted to normal sub-accounts (type=0). Do not attempt to create pool sub-accounts.
Error Handling
| Condition |
Response |
| Auth endpoint returns "not login" |
"Please log in to your Gate account first." |
| User is not a main account |
"Sub-account management requires main account privileges. Please switch to your main account." |
| Sub-account UID not found |
"Sub-account with UID {user_id} was not found. Please verify the UID and try again." |
| Sub-account does not belong to user |
"This sub-account does not belong to your main account." |
| Sub-account already locked |
"Sub-account {user_id} is already locked. No action needed." |
| Sub-account already unlocked |
"Sub-account {user_id} is already in normal (unlocked) state. No action needed." |
| Create sub-account fails (limit reached) |
"You have reached the maximum number of sub-accounts. Please contact support if you need more." |
| Create sub-account fails (duplicate name) |
"The login name '{login_name}' is already taken. Please choose a different name." |
| Unknown error |
"An error occurred while processing your request. Please try again later." |
Prompt Examples & Scenarios
See scenarios.md for full prompt examples and expected behaviors.
1---2name: gate-exchange-subaccount3description: Gate Exchange sub-account management skill. Use when the user asks to manage, create, lock, unlock, or list their sub-accounts. Triggers on 'sub-account status', 'create sub-account', 'lock sub-account', 'my sub-accounts'.4---56### Resolving `gate-cli` (binary path)78Resolve **`gate-cli`** in order: **(1)** **`command -v gate-cli`** and **`gate-cli --version`** succeeds; **(2)** **`${HOME}/.local/bin/gate-cli`** if executable; **(3)** **`${HOME}/.openclaw/skills/bin/gate-cli`** if executable. Canonical rules: [`exchange-runtime-rules.md`](https://github.com/gate/gate-skills/blob/master/skills/exchange-runtime-rules.md) §4 (or [`gate-runtime-rules.md`](https://github.com/gate/gate-skills/blob/master/skills/gate-runtime-rules.md) §4).91011# Gate Exchange Sub-Account Skill1213## General Rules1415⚠️ STOP — You MUST read and strictly follow the shared runtime rules before proceeding.16Do NOT select or call any tool until all rules are read. These rules have the highest priority.17→ Read [gate-runtime-rules.md](https://github.com/gate/gate-skills/blob/master/skills/gate-runtime-rules.md)18- **Only use the `gate-cli` commands explicitly listed in this skill.** Commands not documented here must NOT be run for these workflows, even if other interfaces expose them.1920## Skill Dependencies212223### gate-cli commands used2425**Query Operations (Read-only)**2627- `gate-cli cex sub-account get`28- `gate-cli cex sub-account list`29- `gate-cli cex sub-account lock`30- `gate-cli cex sub-account unlock`3132**Execution Operations (Write)**3334- `gate-cli cex sub-account create`3536### Authentication37- **Interactive file setup:** when **`GATE_API_KEY`** and **`GATE_API_SECRET`** are **not** both set on the host, run **`gate-cli config init`** to complete the wizard for API key, secret, profiles, and defaults (see [gate-cli](https://github.com/gate/gate-cli)).38- **Env / flags:** **`gate-cli config init`** is **not** required when credentials are already supplied — e.g. **both** **`GATE_API_KEY`** and **`GATE_API_SECRET`** set on the host, or **`--api-key`** / **`--api-secret`** where supported — never ask the user to paste secrets into chat.39- **Permissions:** Sa:Write40- **Portal:** create or rotate keys outside the chat: https://www.gate.com/myaccount/profile/api-key/manage4142### Installation Check43- **Required:** `gate-cli` (run `sh ./setup.sh` from this skill directory if missing; optional `GATE_CLI_SETUP_MODE=release`).44- Add `$HOME/.openclaw/skills/bin` to **`PATH`** if you invoke `gate-cli` by name (or the directory where [`setup.sh`](./setup.sh) installs it).45- **Credentials:** When **`GATE_API_KEY`** and **`GATE_API_SECRET`** are both set (non-empty) for the host, **do not** require **`gate-cli config init`** — that is equivalent valid config for `gate-cli`. When **both** are unset or empty, **remind** the operator to run **`gate-cli config init`** **or** to configure **`GATE_API_KEY`** / **`GATE_API_SECRET`** in the **matching skill** from the skill library (never ask the user to paste secrets into chat).46- **Sanity check:** Do not proceed with authenticated calls until the CLI behaves as expected (e.g. **`gate-cli --version`** or a read-only **`gate-cli cex ...`** command from this skill); confirm credentials resolve before mutating operations.4748## Execution mode4950**Read and strictly follow** [`references/gate-cli.md`](./references/gate-cli.md), then execute this skill's sub-account workflow.5152- `SKILL.md` keeps intent routing and permission boundaries.53- `references/gate-cli.md` is the authoritative `gate-cli` execution contract for create/lock/unlock confirmation gates and status verification.5455## Prerequisites5657- **MCP Dependency**: Requires [gate-mcp](https://github.com/gate/gate-mcp) to be installed.58- **Authentication**: All sub-account operations require API key authentication with main-account privileges.59- **Permission**: The current user must be a main account holder to manage sub-accounts.6061## Available MCP Tools6263| Tool | Auth | Description |64|------|------|-------------|65| `gate-cli cex sub-account get` | Yes | Get details of a specific sub-account by user ID |66| `gate-cli cex sub-account list` | Yes | List all sub-accounts under the main account |67| `gate-cli cex sub-account create` | Yes | Create a new normal sub-account |68| `gate-cli cex sub-account lock` | Yes | Lock a sub-account to disable login and trading |69| `gate-cli cex sub-account unlock` | Yes | Unlock a previously locked sub-account |7071## Workflow7273### Step 1: Identify User Intent7475Parse the user's message to determine which sub-account operation they need.7677Key data to extract:78- `intent`: One of `query_status`, `list_all`, `create`, `lock`, `unlock`79- `user_id`: Sub-account UID (required for `query_status`, `lock`, `unlock`)80- `login_name`: Desired username (for `create`, may need to ask user)8182Intent detection rules:8384| Signal Keywords | Intent |85|----------------|--------|86| "status of sub-account", "sub-account UID {id}", "check sub-account" | `query_status` |87| "all sub-accounts", "list sub-accounts", "my sub-accounts", "which sub-accounts" | `list_all` |88| "create sub-account", "new sub-account", "add sub-account" | `create` |89| "lock sub-account", "disable sub-account", "freeze sub-account" | `lock` |90| "unlock sub-account", "enable sub-account", "unfreeze sub-account" | `unlock` |9192### Step 2: Execute by Intent9394#### Case A: Query Sub-Account Status (`query_status`)9596Call `gate-cli cex sub-account get` with:97- `user_id`: The sub-account UID provided by the user9899Key data to extract:100- `login_name`: Sub-account username101- `remark`: Sub-account remark/note102- `state`: Account state (normal / locked)103- `type`: Account type (normal / pool)104- `create_time`: Account creation timestamp105106Present the sub-account details in a structured format.107108#### Case B: List All Sub-Accounts (`list_all`)109110Call `gate-cli cex sub-account list` with:111- `type`: "0" (normal sub-accounts only)112113Key data to extract:114- For each sub-account: `user_id`, `login_name`, `remark`, `state`, `create_time`115116Present results as a table with username, UID, remark (if any), and current status.117118#### Case C: Create Sub-Account (`create`)119120**Pre-check**: Call `gate-cli cex sub-account list` with `type`: "0" to get the current list of normal sub-accounts. Check if the user can still create more sub-accounts based on the returned count.121122If creation is available:1231. Ask the user to provide a login name for the new sub-account1242. Optionally collect: email, remark1253. Confirm all details with the user before proceeding1264. Call `gate-cli cex sub-account create` with:127 - `login_name`: User-provided login name (required)128 - `email`: User-provided email (optional)129 - `remark`: User-provided remark (optional)1305. Present the newly created sub-account details131132Key data to extract:133- `user_id`: Newly created sub-account UID134- `login_name`: Confirmed username135- `state`: Should be "normal"136137**Important**: Only normal sub-accounts can be created through this skill.138139#### Case D: Lock Sub-Account (`lock`)1401411. Validate that `user_id` is provided; if not, ask the user1422. Call `gate-cli cex sub-account get` with `user_id` to verify the sub-account exists and belongs to the main account1433. If the sub-account is already locked, inform the user and stop1444. Confirm with the user: "Are you sure you want to lock sub-account {user_id} ({login_name})? This will disable login and trading for this sub-account."1455. On confirmation, call `gate-cli cex sub-account lock` with:146 - `user_id`: The sub-account UID1476. Report the result148149Key data to extract:150- Lock operation success/failure status151152#### Case E: Unlock Sub-Account (`unlock`)1531541. Validate that `user_id` is provided; if not, ask the user1552. Call `gate-cli cex sub-account get` with `user_id` to verify the sub-account exists and is currently locked1563. If the sub-account is already unlocked/normal, inform the user and stop1574. Confirm with the user: "Are you sure you want to unlock sub-account {user_id} ({login_name})?"1585. On confirmation, call `gate-cli cex sub-account unlock` with:159 - `user_id`: The sub-account UID1606. Report the result161162Key data to extract:163- Unlock operation success/failure status164165### Step 3: Format and Respond166167Present results using the Report Template below. Always include relevant context and next-step suggestions.168169## Judgment Logic Summary170171| Condition | Action |172|-----------|--------|173| User asks for a specific sub-account status with UID | Route to Case A: `query_status` |174| User asks to see all sub-accounts | Route to Case B: `list_all` |175| User wants to create a new sub-account | Route to Case C: `create` |176| User wants to lock a sub-account with UID | Route to Case D: `lock` |177| User wants to unlock a sub-account with UID | Route to Case E: `unlock` |178| UID not provided for operations requiring it | Ask user for the sub-account UID |179| Login name not provided for creation | Ask user for a login name |180| Sub-account already in target state (lock/unlock) | Inform user, no action needed |181| API returns authentication error | Prompt user to log in |182| API returns permission error | Inform user that main account privileges are required |183| Sub-account does not exist or does not belong to user | Inform user the UID is invalid |184185## Report Template186187### Query Status Response188189```190Sub-Account Details191---192Username: {login_name}193UID: {user_id}194Status: {state}195Type: {type}196Remark: {remark or "N/A"}197Created: {create_time}198```199200### List All Sub-Accounts Response201202```203Your Sub-Accounts204---205| # | Username | UID | Status | Remark |206|---|----------|-----|--------|--------|207| 1 | {login_name} | {user_id} | {state} | {remark or "-"} |208| 2 |... |... |... |... |209210Total: {count} sub-account(s)211```212213### Create Sub-Account Response214215```216Sub-Account Created Successfully217---218Username: {login_name}219UID: {user_id}220Status: Normal221Remark: {remark or "N/A"}222223Note: Only normal sub-accounts can be created through this interface.224```225226### Lock/Unlock Response227228```229Sub-Account {Action} Successfully230---231Username: {login_name}232UID: {user_id}233Previous Status: {previous_state}234Current Status: {new_state}235```236237## Domain Knowledge238239- A main account on Gate can create multiple sub-accounts for asset isolation, strategy separation, or team management.240- Sub-accounts share the main account's KYC verification but have independent trading and wallet capabilities.241- Locking a sub-account disables both login and trading; the assets remain safe but inaccessible until unlocked.242- There are two types of sub-accounts: normal (type=0) and pool (type=1). This skill only supports creating normal sub-accounts.243- Sub-account creation requires a unique login name. Email and remark are optional.244245## Safety Rules246247- **Write operations** (`gate-cli cex sub-account create`, `gate-cli cex sub-account lock`, `gate-cli cex sub-account unlock`): Always require explicit user confirmation before execution. Never auto-execute.248- **UID validation**: Before lock/unlock, always verify the sub-account exists and belongs to the current main account.249- **State check**: Before lock/unlock, check current state to avoid redundant operations.250- **No sensitive data exposure**: Never expose API keys, internal endpoint URLs, or raw error traces.251- **Normal sub-accounts only**: Creation is restricted to normal sub-accounts (type=0). Do not attempt to create pool sub-accounts.252253## Error Handling254255| Condition | Response |256|-----------|----------|257| Auth endpoint returns "not login" | "Please log in to your Gate account first." |258| User is not a main account | "Sub-account management requires main account privileges. Please switch to your main account." |259| Sub-account UID not found | "Sub-account with UID {user_id} was not found. Please verify the UID and try again." |260| Sub-account does not belong to user | "This sub-account does not belong to your main account." |261| Sub-account already locked | "Sub-account {user_id} is already locked. No action needed." |262| Sub-account already unlocked | "Sub-account {user_id} is already in normal (unlocked) state. No action needed." |263| Create sub-account fails (limit reached) | "You have reached the maximum number of sub-accounts. Please contact support if you need more." |264| Create sub-account fails (duplicate name) | "The login name '{login_name}' is already taken. Please choose a different name." |265| Unknown error | "An error occurred while processing your request. Please try again later." |266267## Prompt Examples & Scenarios268269See [scenarios.md](references/scenarios.md) for full prompt examples and expected behaviors.