← Back to Skills Marketplace
gate-exchange

Gate Exchange Alpha

by Gate · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
125
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install gate-exchange-alpha
Description
Gate Alpha token market skill. Use when the user specifically asks to browse, trade, or check Alpha market tokens. Triggers on 'alpha tokens', 'alpha market'...
README (SKILL.md)

Gate Alpha Assistant

This skill is the single entry for Gate Alpha operations. It supports seven modules: Token Discovery, Market Viewing, Trading (Buy), Trading (Sell), Account & Holdings, Account Book, and Order Management. User intent is routed to the matching workflow.

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 call MCP tools explicitly listed in this skill. Tools not documented here must NOT be called, even if they exist in the MCP server.

MCP Dependencies

Required MCP Servers

MCP Server Status
Gate (main) ✅ Required

MCP Tools Used

Query Operations (Read-only)

  • cex_alpha_get_alpha_order
  • cex_alpha_list_alpha_account_book
  • cex_alpha_list_alpha_accounts
  • cex_alpha_list_alpha_currencies
  • cex_alpha_list_alpha_orders
  • cex_alpha_list_alpha_tickers
  • cex_alpha_list_alpha_tokens
  • cex_alpha_quote_alpha_order

Execution Operations (Write)

  • cex_alpha_place_alpha_order

Authentication

Installation Check

  • Required: Gate (main)
  • Install: Run installer skill for your IDE
    • Cursor: gate-mcp-cursor-installer
    • Codex: gate-mcp-codex-installer
    • Claude: gate-mcp-claude-installer
    • OpenClaw: gate-mcp-openclaw-installer

MCP Mode

Read and strictly follow references/mcp.md, then execute module routing in this skill.

  • SKILL.md keeps module dispatch and business boundaries.
  • references/mcp.md is the authoritative MCP execution layer for quote->confirm->place order flow and post-order verification.

Module Overview

Module Description Trigger Keywords
Token Discovery Browse tradable currencies, filter tokens by chain/platform/address, check token details alpha tokens, what coins, which chain, token address, token details
Market Viewing Check all or specific Alpha token tickers, prices, 24h changes alpha price, market, ticker, how much is, what price
Trading (Buy) Buy Alpha tokens with USDT, support default or custom slippage, optional order tracking buy, , 购买, 入手, 帮我买
Trading (Sell) Sell Alpha tokens (full or partial), optional order tracking sell, , 卖出, 清仓, 卖掉
Account & Holdings View Alpha account balances and calculate portfolio market value my holdings, my balance, portfolio value, how much do I have
Account Book View Alpha account transaction history by time range transaction history, 流水, 资产变动, account book, 变动记录
Order Management Check order status, view historical buy/sell orders, search orders by time order status, 订单, 买单, 卖单, order history

Routing Rules

Intent Example Phrases Route To
Token discovery "What coins can I trade on Alpha?", "Show me Solana tokens", "Look up this address" Read references/token-discovery.md
Market viewing "What's the price of trump?", "How's the Alpha market?" Read references/market-viewing.md
Trading (buy) "帮我买 5u ELON", "Buy 100u trump with 10% slippage" Read references/trading-buy.md
Trading (sell) "把 ELON 全部卖掉", "卖掉一半的 trump" Read references/trading-sell.md
Account & holdings "What coins do I hold?", "How much is my Alpha portfolio worth?" Read references/account-holdings.md
Account book "最近一周的资产变动记录", "看看昨天的资产变动" Read references/account-book.md
Order management "我刚才那笔买单成功了吗?", "看看我买 ELON 的订单" Read references/order-management.md
Unclear "Tell me about Alpha", "Help with Alpha" Clarify: ask which module the user needs

MCP Tools

# Tool Auth Purpose
1 cex_alpha_list_alpha_currencies No List all tradable Alpha currencies with chain, address, precision, status
2 cex_alpha_list_alpha_tokens No Filter tokens by chain, launch platform, or contract address
3 cex_alpha_list_alpha_tickers No Get latest price, 24h change, volume, market cap for Alpha tokens
4 cex_alpha_list_alpha_accounts Yes Query Alpha account balances (available + locked per currency)
5 cex_alpha_quote_alpha_order Yes Get a price quote for a buy/sell order (returns quote_id, valid 1 min)
6 cex_alpha_place_alpha_order Yes Place a buy/sell order using a quote_id
7 cex_alpha_get_alpha_order Yes Get details of a single order by order_id
8 cex_alpha_list_alpha_orders Yes List orders with filters (currency, side, status, time range)
9 cex_alpha_list_alpha_account_book Yes Query account transaction history by time range

Domain Knowledge

Alpha Platform Overview

  • Gate Alpha is a platform for early-stage token trading, supporting tokens across multiple blockchains.
  • Tokens are identified by currency symbol (e.g., memeboxtrump) rather than standard ticker symbols.
  • Trading status values: 1 = actively trading, 2 = suspended, 3 = delisted.

Supported Chains

solana, eth, bsc, base, world, sui, arbitrum, avalanche, polygon, linea, optimism, zksync, gatelayer

Note: Chain names may be returned in different cases depending on the endpoint (e.g., SOLANA vs solana). Normalize to lowercase when comparing.

Supported Launch Platforms

meteora_dbc, fourmeme, moonshot, pump, raydium_launchlab, letsbonk, gatefun, virtuals

Trading Mechanics

  • Buy amount: USDT quantity (e.g., amount="5" means spend 5 USDT).
  • Sell amount: Token quantity (e.g., amount="1000" means sell 1000 tokens).
  • Quote validity: quote_id from cex_alpha_quote_alpha_order expires after 1 minute. Re-quote if expired.
  • Gas modes: Input "speed" (default) or "custom" (with slippage). API returns gasMode as "1" (speed) or "2" (custom).
  • Order statuses: 1 = Processing, 2 = Success, 3 = Failed, 4 = Cancelled, 5 = Transferring, 6 = Cancelling transfer. Terminal statuses: 2, 3, 4.

API Field Naming Conventions

All API endpoints use snake_case naming. Key fields by endpoint:

  • /alpha/currencies: currency, name, chain, address, amount_precision, precision, status
  • /alpha/tickers: currency, last, change, volume, market_cap
  • /alpha/accounts: currency, available, locked, token_address, chain
  • /alpha/account_book: id, time, currency, change, balance
  • /alpha/orders (GET): order_id, tx_hash, side, usdt_amount, currency, currency_amount, status, gas_mode, chain, gas_fee, transaction_fee, create_time, failed_reason
  • Empty query results may return [{}, {}] (array with empty objects) instead of []. Check for valid fields before processing.

Key Constraints

  • All market data endpoints (currencies, tickers, tokens) are public and do not require authentication.
  • Account, trading, and order endpoints require API Key authentication.
  • Pagination: use page and limit parameters for large result sets.
  • Rate limits: quote 10r/s, place order 5r/s, other endpoints 200r/10s.

Execution

1. Intent Classification

Classify the user request into one of seven modules: Token Discovery, Market Viewing, Trading (Buy), Trading (Sell), Account & Holdings, Account Book, or Order Management.

2. Route and Load

Load the corresponding reference document and follow its workflow.

3. Return Result

Return the result using the report template defined in each sub-module.

Error Handling

Error Type Typical Cause Handling Strategy
Currency not found Invalid or misspelled currency symbol Suggest searching via cex_alpha_list_alpha_currencies or cex_alpha_list_alpha_tokens
Token suspended Trading status is 2 (suspended) Inform user that the token is currently suspended from trading
Token delisted Trading status is 3 (delisted) Inform user that the token has been delisted
Empty result No tokens match the filter criteria Clarify filter parameters (chain, platform, address) and suggest alternatives
Authentication required Calling authenticated endpoint without credentials Inform user that API Key authentication is needed; guide to setup
Pagination overflow Requested page beyond available data Return last available page and inform user of total count
Quote expired quote_id used after 1-minute validity window Re-call cex_alpha_quote_alpha_order to obtain a fresh quote_id
Insufficient balance Sell amount exceeds available balance Inform user of actual available balance and suggest adjusting the amount
Order failed On-chain transaction failed Report the failed_reason from the order detail and suggest retrying
Order timeout Polling exceeded 60 seconds without terminal status Inform user the order is still processing; provide order_id for manual follow-up
Rate limit exceeded Too many requests in short period Wait briefly and retry; inform user if persistent

Safety Rules

  • Order confirmation: NEVER place a buy or sell order without showing the quote details and receiving explicit user confirmation.
  • Token validation: Always verify status=1 before initiating a trade. Abort if suspended or delisted.
  • Balance verification: Before selling, always confirm available >= sell_amount. Report actual balance if insufficient.
  • Quote freshness: Always check quote_id validity (1-minute window). Re-quote if the user delays confirmation.
  • Never fabricate token data. If a query returns empty results, report it honestly.
  • When displaying token addresses, show the full address to avoid confusion between similarly named tokens.
  • Always verify trading status before suggesting a token is tradable.
Usage Guidance
Before installing, verify how the agent will supply your Gate API key: SKILL.md clearly requires an API key with Alpha:Write (to place orders), but the registry entry lists no required credentials. Ask the publisher (or the registry) where and how the API key is expected to be provided (agent vault, environment variable, or MCP config). Treat the skill as able to place and cancel real trades — test in read-only mode first (use market-viewing/token-discovery only) and confirm the skill cannot perform writes until you explicitly authorize it. Also confirm the skill's origin: the README points to a Gate.com repo but the published source is 'unknown' and no homepage is provided — prefer skills with verifiable repository or publisher. If you proceed, restrict the API key permissions (least privilege), monitor the first few actions, and ensure the agent prompts you for explicit confirmation before any quote is executed into a place_order call.
Capability Analysis
Type: OpenClaw Skill Name: gate-exchange-alpha Version: 1.0.1 The gate-exchange-alpha skill bundle is a legitimate and well-structured tool for interacting with the Gate Alpha cryptocurrency market. It provides comprehensive instructions for token discovery, market data retrieval, and trade execution across multiple modules (e.g., trading-buy.md, trading-sell.md). Critically, the skill implements robust safety protocols, including mandatory user confirmation for all financial transactions, balance verification, and token status validation, with no evidence of malicious intent, data exfiltration, or unauthorized command execution.
Capability Assessment
Purpose & Capability
SKILL.md describes both read and write trading flows (quote -> place order -> poll order) and explicitly states an API key with Alpha:Write permission is required. However, the registry metadata declares no required env vars or primary credential. That discrepancy means the skill's declared requirements do not match what it actually needs to operate.
Instruction Scope
The runtime instructions are narrowly scoped to MCP tools for Gate Alpha (listing exactly which read and write tools to call) and include safety rules (explicit confirmation before placing orders, quote expiry handling). The SKILL.md references an external runtime rules doc on GitHub, but there are no instructions to read unrelated local files or transmit data to unknown endpoints.
Install Mechanism
This is an instruction-only skill (no install spec, no code files). No downloads or archive extraction are involved, which reduces installation risk.
Credentials
The skill requires access to account-level operations (placing orders, viewing balances, transaction history) per its MCP auth section, but the registry metadata does not declare any credential or primaryEnv. Requiring Alpha:Write is proportionate to trading functionality, but it should be declared where the agent expects credentials — the omission is a misalignment that could lead to unexpected permission prompts or silent failures.
Persistence & Privilege
always:false and normal autonomous invocation settings. The skill does not request persistent system-wide privileges or modify other skills' configurations. It does describe polling behavior for order tracking, which is expected for trading workflows.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gate-exchange-alpha
  3. After installation, invoke the skill by name or use /gate-exchange-alpha
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Added a new MCP execution reference: users must now read and follow `references/mcp.md` for quote/order flows. - Clarified that `SKILL.md` handles module dispatch/business boundaries; moved execution details to `references/mcp.md`. - Simplified and shortened the skill description for clarity and focus. - No changes to endpoints, modules, or supported workflows. - Minor adjustments to guidance on module routing and execution to reference the new MCP flow document.
v1.0.0
Initial release: Gate Alpha operations skill for token discovery, trading, account, and order management. - Supports seven modules: Token Discovery, Market Viewing, Trading (Buy/Sell), Account & Holdings, Account Book, and Order Management. - Provides routing rules and trigger phrases for each user intent. - Integrates with Gate (main) MCP server using documented tools only. - Requires API Key authentication for trading, account, and order operations. - Includes details on supported chains, launch platforms, trading mechanics, and API constraints. - Designed to handle Alpha token operations end-to-end from discovery to execution and history tracking.
Metadata
Slug gate-exchange-alpha
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Gate Exchange Alpha?

Gate Alpha token market skill. Use when the user specifically asks to browse, trade, or check Alpha market tokens. Triggers on 'alpha tokens', 'alpha market'... It is an AI Agent Skill for Claude Code / OpenClaw, with 125 downloads so far.

How do I install Gate Exchange Alpha?

Run "/install gate-exchange-alpha" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Gate Exchange Alpha free?

Yes, Gate Exchange Alpha is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Gate Exchange Alpha support?

Gate Exchange Alpha is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gate Exchange Alpha?

It is built and maintained by Gate (@gate-exchange); the current version is v1.0.1.

💬 Comments